Skip to content
Snippets Groups Projects
Commit 47389401 authored by Frederik Hennig's avatar Frederik Hennig
Browse files

update requirements and dependencies

parent affbafbc
No related merge requests found
Pipeline #77184 failed with stages
in 2 minutes and 22 seconds
...@@ -5,4 +5,4 @@ git+https://i10git.cs.fau.de/pycodegen/pystencils.git@v2.0-dev ...@@ -5,4 +5,4 @@ git+https://i10git.cs.fau.de/pycodegen/pystencils.git@v2.0-dev
git+https://i10git.cs.fau.de/pycodegen/lbmpy.git@fhennig/pystencils2.0-compat git+https://i10git.cs.fau.de/pycodegen/lbmpy.git@fhennig/pystencils2.0-compat
# pystencils-sfg: master # pystencils-sfg: master
git+https://i10git.cs.fau.de/pycodegen/pystencils-sfg.git@fhennig/devel git+https://i10git.cs.fau.de/pycodegen/pystencils-sfg.git@fhennig/postprocessing-fixes
...@@ -16,7 +16,7 @@ endforeach() ...@@ -16,7 +16,7 @@ endforeach()
if( $CACHE{WALBERLA_BUILD_WITH_CUDA} ) if( $CACHE{WALBERLA_BUILD_WITH_CUDA} )
find_package( CUDAToolkit ) find_package( CUDAToolkit REQUIRED )
# Workaround: CUDA headers are included in core/timing # Workaround: CUDA headers are included in core/timing
target_link_libraries( TestBasicLbmScenariosCPU PRIVATE CUDA::cudart ) target_link_libraries( TestBasicLbmScenariosCPU PRIVATE CUDA::cudart )
......
cmake_minimum_required( VERSION 3.24 ) cmake_minimum_required( VERSION 3.24 )
project( sfg-walberla-testsuite LANGUAGES CXX CUDA ) project( sfg-walberla-testsuite LANGUAGES CXX )
if( $CACHE{WALBERLA_BUILD_WITH_CUDA} )
enable_language( CUDA )
endif()
if( $CACHE{WALBERLA_BUILD_WITH_HIP} )
enable_language( HIP )
endif()
set(WALBERLA_BUILD_TESTS OFF CACHE BOOL "") set(WALBERLA_BUILD_TESTS OFF CACHE BOOL "")
set(WALBERLA_BUILD_BENCHMARKS OFF CACHE BOOL "") set(WALBERLA_BUILD_BENCHMARKS OFF CACHE BOOL "")
......
...@@ -25,6 +25,20 @@ ...@@ -25,6 +25,20 @@
"WALBERLA_BUILD_WITH_CUDA": true, "WALBERLA_BUILD_WITH_CUDA": true,
"CMAKE_CUDA_ARCHITECTURES": "native" "CMAKE_CUDA_ARCHITECTURES": "native"
} }
},
{
"name": "testsuite-dbg-hip",
"binaryDir": "${sourceDir}/build/${presetName}",
"generator": "Ninja",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"WALBERLA_BUILD_TESTS": false,
"WALBERLA_BUILD_WITH_HIP": true
},
"environment": {
"CC": "hipcc",
"CXX": "hipcc"
}
} }
] ]
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment