mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-04 13:41:24 +00:00
Implemented device random number generators for ck tensors. Includes tests and integration to ck builder testing interface.
8 lines
301 B
CMake
8 lines
301 B
CMake
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
add_custom_target(device_mem_tests)
|
|
add_gtest_executable(test_device_prng test_device_prng.cpp)
|
|
target_link_libraries(test_device_prng PRIVATE utility)
|
|
add_dependencies(test_device_prng device_mem_tests)
|