Skip to content

Commit

Permalink
Merge pull request #2 from jcamachado/feat/cudafy-particles
Browse files Browse the repository at this point in the history
Feat/cudafy particles
  • Loading branch information
jcamachado authored Oct 29, 2023
2 parents ad22c17 + b49dc7c commit 5f1967f
Show file tree
Hide file tree
Showing 113 changed files with 25,770 additions and 4 deletions.
Empty file added .gitignore
Empty file.
4 changes: 3 additions & 1 deletion .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"includePath": [
"${workspaceFolder}/**",
"/usr/include/**",
"/usr/local/include/**"
"/usr/local/include/**",
"${workspaceFolder}/lib/**",
"${workspaceFolder}/src/**",
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
Expand Down
57 changes: 55 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,59 @@
"vector": "cpp",
"chrono": "cpp",
"iosfwd": "cpp",
"__config": "cpp"
}
"__config": "cpp",
"iostream": "cpp",
"glad.h": "c",
"stdlib.h": "c",
"atomic": "cpp",
"bit": "cpp",
"*.tcc": "cpp",
"cctype": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"codecvt": "cpp",
"compare": "cpp",
"concepts": "cpp",
"condition_variable": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"exception": "cpp",
"algorithm": "cpp",
"functional": "cpp",
"memory": "cpp",
"memory_resource": "cpp",
"numeric": "cpp",
"optional": "cpp",
"ratio": "cpp",
"system_error": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"fstream": "cpp",
"iomanip": "cpp",
"istream": "cpp",
"limits": "cpp",
"mutex": "cpp",
"new": "cpp",
"numbers": "cpp",
"semaphore": "cpp",
"shared_mutex": "cpp",
"sstream": "cpp",
"stdexcept": "cpp",
"stop_token": "cpp",
"streambuf": "cpp",
"thread": "cpp",
"cfenv": "cpp",
"cinttypes": "cpp",
"typeinfo": "cpp",
"__nullptr": "cpp"
},
"cmake.configureOnOpen": true,
// "cmake.sourceDirectory": "/home/jaxe/Repositories/gpu_study/gpu_practice"
}
Loading

0 comments on commit 5f1967f

Please sign in to comment.