Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploys.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Build master docs (Sphinx)
run: |
pip install numpy scipy
pip install numpy scipy matplotlib numba h5py
sphinx-build -b html misc/source docs

- name: Deploy to GitHub Pages
Expand Down
27 changes: 12 additions & 15 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "(lldb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/bin/surfrayl",
"args": ["model.txt","0.01","1","1"],
"cwd": "${workspaceFolder}/example/rayleigh",
"stopAtEntry": false,
// "program": "${workspaceFolder}/a.out",
// "cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb"
}
{
"name": "Python + LLDB",
"type":"debugpy",
"request": "launch",
"program": "${workspaceFolder}/example/love1/step0_database.py",
"args": ["model.txt",
"1", "1", "1", "0"],

"cwd": "${workspaceFolder}/example/love1",
"stopOnEntry": false
}
]
}
}

20 changes: 20 additions & 0 deletions .vscode/launch1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "(lldb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/bin/surfrayl",
"args": ["model.txt","0.01","1","1"],
"cwd": "${workspaceFolder}/example/rayleigh",
"stopAtEntry": false,
// "program": "${workspaceFolder}/a.out",
// "cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb"
}

]
}
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@
"format": "cpp",
"stdfloat": "cpp",
"__nullptr": "cpp",
"eigenvalues": "cpp"
"eigenvalues": "cpp",
"*.bak": "cpp"
},
//"C_Cpp.errorSquiggles": "disabled"
"fortran.linter.includePaths": ["/opt/homebrew/Cellar/open-mpi/5.0.7/include"]
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ elseif (CMAKE_CXX_COMPILER_ID MATCHES "Intel")
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -xHost -extend-source")
else ()
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -march=native -ffixed-line-length-none")
#set(CMAKE_CXX_FLAGS_RELEASE "-O0 -D_GLIBCXX_DEBUG")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -march=native")
#set(CMAKE_CXX_FLAGS_RELEASE "-O0 -D_GLIBCXX_DEBUG")
endif()

set(CMAKE_VERBOSE_MAKEFILE on)
Expand Down
Binary file removed __pycache__/setup.cpython-311.pyc
Binary file not shown.
8 changes: 0 additions & 8 deletions bak/src.bak/multiphysics/CMakeLists.txt

This file was deleted.

Loading