Skip to content

Commit

Permalink
turn wave_common into standalon library
Browse files Browse the repository at this point in the history
  • Loading branch information
assignUser committed Oct 23, 2024
1 parent 774929d commit ace3f74
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions velox/experimental/wave/common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

velox_add_library(
velox_wave_common
add_library(
wave_common
GpuArena.cpp
Buffer.cpp
Compile.cu
Expand All @@ -23,8 +23,8 @@ velox_add_library(
Type.cpp
ResultStaging.cpp)

velox_link_libraries(
velox_wave_common
target_link_libraries(
wave_common
velox_exception
velox_common_base
velox_type
Expand Down
2 changes: 1 addition & 1 deletion velox/experimental/wave/common/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ set_tests_properties(velox_wave_common_test PROPERTIES LABELS cuda_driver)

target_link_libraries(
velox_wave_common_test
velox_wave_common
wave_common
GTest::gtest
GTest::gtest_main
CUDA::cudart)
2 changes: 1 addition & 1 deletion velox/experimental/wave/dwio/decode/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ add_subdirectory(tests)

velox_add_library(velox_wave_decode GpuDecoder.cu)

velox_link_libraries(velox_wave_decode velox_wave_common)
velox_link_libraries(velox_wave_decode wave_common)
2 changes: 1 addition & 1 deletion velox/experimental/wave/dwio/decode/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ set_tests_properties(velox_wave_decode_test PROPERTIES LABELS cuda_driver)
target_link_libraries(
velox_wave_decode_test
velox_wave_decode
velox_wave_common
wave_common
velox_memory
GTest::gtest
GTest::gtest_main
Expand Down
2 changes: 1 addition & 1 deletion velox/experimental/wave/exec/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ velox_add_library(
velox_link_libraries(
velox_wave_exec
velox_wave_vector
velox_wave_common
wave_common
velox_wave_stream
velox_exception
velox_common_base
Expand Down

0 comments on commit ace3f74

Please sign in to comment.