Migrate Activation layer

This commit is contained in:
2024-09-08 12:49:13 +02:00
parent 591507ed21
commit 0dca8348bd
4 changed files with 46 additions and 8 deletions

View File

@@ -11,7 +11,6 @@ if(CUDAToolkit_FOUND)
option(USE_CUDA "Use CUDA implementation" ON)
else()
option(USE_CUDA "Use CUDA implementation" OFF)
message(STATUS "CUDA not found. Defaulting to CPU implementation.")
endif()
if(USE_CUDA)
@@ -19,7 +18,7 @@ if(USE_CUDA)
add_definitions(-DUSE_CUDA)
message(STATUS "Building library with CUDA support")
else()
message(STATUS "Building library without CUDA support")
message(STATUS "CUDA not found or disabled. Defaulting to CPU implementation.")
endif()