Files
rocm-systems/catch/unit/complex/CMakeLists.txt
T
Rahul Manocha 839b3b21d1 [SWDEV-438556][SWDEV-451686] - Enable Negative Param hip tests
Change-Id: I7c602ca0109864aac9d18feb31ae90f2a0ef4d36
2024-04-22 13:00:22 -04:00

85 строки
3.4 KiB
CMake

# Copyright (c) 2023 Advanced Micro Devices, Inc. All Rights Reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
# Common Tests - Test independent of all platforms
set(TEST_SRC
complex.cc
)
if(HIP_PLATFORM MATCHES "nvidia")
set(LINKER_LIBS nvrtc)
elseif(HIP_PLATFORM MATCHES "amd")
set(LINKER_LIBS hiprtc)
endif()
hip_add_exe_to_target(NAME ComplexTest
TEST_SRC ${TEST_SRC}
TEST_TARGET_NAME build_tests
LINKER_LIBS ${LINKER_LIBS})
if(UNIX)
file(GLOB NEGATIVE_TEST_SRC
"complex_make_negative_kernels.cc"
"complex_cast_negative_kernels.cc"
"complex_negative_kernels_1Arg_float.cc"
"complex_negative_kernels_1Arg_double.cc"
"complex_negative_kernels_2Arg_float.cc"
"complex_negative_kernels_2Arg_double.cc"
"complex_negative_kernels_3Arg.cc"
)
file(COPY ${NEGATIVE_TEST_SRC} DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/src)
#add_test(NAME Unit_Device_Complex_make_Negative
# COMMAND ${Python3_EXECUTABLE} ../compileAndCaptureOutput.py
# ./src ${HIP_PLATFORM} ${HIP_PATH}
# complex_make_negative_kernels.cc 54)
#
#add_test(NAME Unit_Device_Complex_Cast_Negative
# COMMAND ${Python3_EXECUTABLE} ../compileAndCaptureOutput.py
# ./src ${HIP_PLATFORM} ${HIP_PATH}
# complex_cast_negative_kernels.cc 28)
#
#add_test(NAME Unit_Device_Complex_Unary_float_Negative
# COMMAND ${Python3_EXECUTABLE} ../compileAndCaptureOutput.py
# ./src ${HIP_PLATFORM} ${HIP_PATH}
# complex_negative_kernels_1Arg_float.cc 62)
#
#add_test(NAME Unit_Device_Complex_Unary_double_Negative
# COMMAND ${Python3_EXECUTABLE} ../compileAndCaptureOutput.py
# ./src ${HIP_PLATFORM} ${HIP_PATH}
# complex_negative_kernels_1Arg_double.cc 62)
#
#add_test(NAME Unit_Device_Complex_Binary_float_Negative
# COMMAND ${Python3_EXECUTABLE} ../compileAndCaptureOutput.py
# ./src ${HIP_PLATFORM} ${HIP_PATH}
# complex_negative_kernels_2Arg_float.cc 88)
#
#add_test(NAME Unit_Device_Complex_Binary_double_Negative
# COMMAND ${Python3_EXECUTABLE} ../compileAndCaptureOutput.py
# ./src ${HIP_PLATFORM} ${HIP_PATH}
# complex_negative_kernels_2Arg_double.cc 88)
#
#add_test(NAME Unit_Device_Complex_hipCfma_Negative
# COMMAND ${Python3_EXECUTABLE} ../compileAndCaptureOutput.py
# ./src ${HIP_PLATFORM} ${HIP_PATH}
# complex_negative_kernels_3Arg.cc 60)
endif()