Skip to content
Snippets Groups Projects
Commit e0446ea9 authored by Thomas Müller's avatar Thomas Müller
Browse files

Attempt to appease CI

parent 1a72c585
No related branches found
No related tags found
No related merge requests found
......@@ -18,9 +18,9 @@ jobs:
- os: ubuntu-20.04
cuda: "11.3"
arch: 86
- os: ubuntu-18.04
cuda: "10.2"
arch: 75
# - os: ubuntu-18.04
# cuda: "10.2"
# arch: 75
env:
build_dir: "build"
config: "Release"
......
......@@ -285,9 +285,11 @@ if (Python_FOUND)
if (MSVC)
# Copy dlls needed at runtime
file(GLOB CUBLAS_DLLS "${CUDA_COMPILER_BIN}/cublas*.dll")
add_custom_command(TARGET pyngp POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy ${CUBLAS_DLLS} $<TARGET_FILE_DIR:pyngp>
COMMAND_EXPAND_LISTS
)
if (CUBLAS_DLLS)
add_custom_command(TARGET pyngp POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy ${CUBLAS_DLLS} $<TARGET_FILE_DIR:pyngp>
COMMAND_EXPAND_LISTS
)
endif()
endif()
endif()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment