You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Antonio De Lucreziis a1937f7edd | 9 months ago | |
---|---|---|
.vscode | 11 months ago | |
matrices/laplacian | 9 months ago | |
.clang-format | 10 months ago | |
.gitignore | 9 months ago | |
CMakeLists.txt | 10 months ago | |
README.md | 10 months ago | |
main.c | 9 months ago |
README.md
Progetto di Calcolo Scientifico
# Create a build directory
$ mkdir build
$ cd build
# Build, Compile, Run
$ cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON ..
$ make
$ mpirun ./main
# Or inline for development
$ cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON .. && make && mpirun ./main
VSCode
Install the clangd
extension and put the following in .vscode/settings.json
{
"clangd.arguments": [
"-background-index",
"-compile-commands-dir=build"
]
}