Update GPUampcor prereqs, but disable it for now
parent
98efa18f15
commit
53cceb221b
|
@ -1,3 +1,9 @@
|
||||||
|
if(NOT TARGET CUDA::cublas)
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
return() # TODO get cublas_device working or remove usage of it
|
||||||
|
|
||||||
cython_add_module(GPUampcor
|
cython_add_module(GPUampcor
|
||||||
GPUampcor.pyx
|
GPUampcor.pyx
|
||||||
cuda/GPUamp.cu
|
cuda/GPUamp.cu
|
||||||
|
@ -9,8 +15,9 @@ target_include_directories(GPUampcor PUBLIC
|
||||||
include
|
include
|
||||||
)
|
)
|
||||||
target_link_libraries(GPUampcor PRIVATE
|
target_link_libraries(GPUampcor PRIVATE
|
||||||
cublas
|
CUDA::cublas
|
||||||
DataAccessor_static
|
DataAccessor_static
|
||||||
|
FFTW::Float
|
||||||
)
|
)
|
||||||
InstallSameDir(
|
InstallSameDir(
|
||||||
GPUampcor
|
GPUampcor
|
||||||
|
|
Loading…
Reference in New Issue