File tree Expand file tree Collapse file tree 4 files changed +3
-3
lines changed Expand file tree Collapse file tree 4 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ project(cubool LANGUAGES CXX)
7
7
# Exposed to the user build options
8
8
option (CUBOOL_WITH_CUDA "Build library with cuda backend (default)" ON )
9
9
option (CUBOOL_WITH_SEQUENTIAL "Build library with cpu sequential backend (fallback)" ON )
10
- option (CUBOOL_WITH_NAIVE "Build library with naive and naive-shared dense matrix multiplication" ON )
10
+ option (CUBOOL_WITH_NAIVE "Build library with naive and naive-shared dense matrix multiplication" OFF )
11
11
option (CUBOOL_BUILD_TESTS "Build project unit-tests with gtest" ON )
12
12
13
13
set (CUBOOL_VERSION_MAJOR 1 )
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ namespace cubool {
61
61
template <typename U>
62
62
__host__ explicit DeviceAllocator (const DeviceAllocator<U> &other) : mInstanceRef(other.mInstance ) { }
63
63
64
- __host__ ~DeviceAllocator () = default ;
64
+ ~DeviceAllocator () = default ;
65
65
66
66
__host__ bool operator !=(const DeviceAllocator<T> &other) const {
67
67
return &mInstanceRef != &other.mInstanceRef ;
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ target_link_libraries(test_matrix_kronecker PUBLIC testing)
32
32
add_executable (test_matrix_ewiseadd test_matrix_ewiseadd.cpp )
33
33
target_link_libraries (test_matrix_ewiseadd PUBLIC testing )
34
34
35
- if (CUBOOL_WITH_NAIVE )
35
+ if (CUBOOL_WITH_TESTS_NAIVE )
36
36
add_executable (test_matrix_dense_vs_naive test_matrix_dense_vs_naive.cpp )
37
37
target_link_libraries (test_matrix_dense_vs_naive PUBLIC testing )
38
38
target_link_libraries (test_matrix_dense_vs_naive PUBLIC naive_gpu )
File renamed without changes.
You can’t perform that action at this time.
0 commit comments