533db3b042
Change-Id: Ifa4c62d926dd15ce8379b9899ca81d3a39595c8e
152 řádky
5.1 KiB
CMake
152 řádky
5.1 KiB
CMake
# Copyright (c) 2024 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
|
|
hipCreateTextureObject_ArgValidation.cc
|
|
hipCreateTextureObject_Linear.cc
|
|
hipCreateTextureObject_Pitch2D.cc
|
|
hipCreateTextureObject_Array.cc
|
|
hipTextureObjFetchVector.cc
|
|
hipNormalizedFloatValueTex.cc
|
|
hipTextureObj2D.cc
|
|
hipSimpleTexture3D.cc
|
|
hipTextureRef2D.cc
|
|
hipSimpleTexture1DLayered.cc
|
|
hipSimpleTexture2DLayered.cc
|
|
hipBindTexture.cc
|
|
hipBindTex2DPitch.cc
|
|
hipTex1DFetchCheckModes.cc
|
|
hipGetChanDesc.cc
|
|
hipTexObjPitch.cc
|
|
hipTexRefSetArray.cc
|
|
hipTexRefGetArray.cc
|
|
hipTextureObj1DFetch.cc
|
|
hipTextureObj1DCheckModes.cc
|
|
hipTextureObj2DCheckModes.cc
|
|
hipTextureObj3DCheckModes.cc
|
|
hipTextureObj1DCheckSRGBModes.cc
|
|
hipTextureObj2DCheckSRGBModes.cc
|
|
hipTexObjectTests.cc
|
|
hipTextureObjectTests.cc
|
|
hipTexRefSetAddress2D.cc
|
|
hipTexRefSetMaxAnisotropy.cc
|
|
)
|
|
|
|
# Mipmap APIs are not supported on Linux
|
|
if(WIN32)
|
|
# tests not for gfx90a+
|
|
set(NOT_FOR_gfx90a_AND_ABOVE_TEST
|
|
tex1D.cc
|
|
tex1DGrad.cc
|
|
tex1DLod.cc
|
|
tex1DLayeredLod.cc
|
|
tex1DLayeredGrad.cc
|
|
tex1Dfetch.cc
|
|
tex1DLayered.cc
|
|
tex2D.cc
|
|
tex2DLod.cc
|
|
tex2DGrad.cc
|
|
tex2DLayeredLod.cc
|
|
tex2DLayeredGrad.cc
|
|
tex2Dgather.cc
|
|
tex2DLayered.cc
|
|
tex3D.cc
|
|
tex3DGrad.cc
|
|
tex3DLod.cc
|
|
texCubemap.cc
|
|
texCubemapGrad.cc
|
|
texCubemapLod.cc
|
|
texCubemapLayered.cc
|
|
texCubemapLayeredGrad.cc
|
|
texCubemapLayeredLod.cc
|
|
)
|
|
endif()
|
|
|
|
set(gfx90a_AND_ABOVE_TARGETS gfx90a gfx940 gfx941 gfx942)
|
|
function(CheckRejectedArchs OFFLOAD_ARCH_STR_LOCAL)
|
|
set(ARCH_CHECK -1 PARENT_SCOPE)
|
|
set(NOT_GFX90a -1)
|
|
set(GFX90a -1)
|
|
string(REGEX MATCHALL "--offload-arch=gfx[0-9a-z]+" OFFLOAD_ARCH_LIST ${OFFLOAD_ARCH_STR_LOCAL})
|
|
foreach(OFFLOAD_ARCH IN LISTS OFFLOAD_ARCH_LIST)
|
|
string(REGEX MATCHALL "--offload-arch=(gfx[0-9a-z]+)" matches ${OFFLOAD_ARCH})
|
|
if (CMAKE_MATCH_COUNT EQUAL 1)
|
|
if (CMAKE_MATCH_1 IN_LIST gfx90a_AND_ABOVE_TARGETS)
|
|
set(GFX90a 1)
|
|
else()
|
|
set(NOT_GFX90a 1)
|
|
endif() # CMAKE_MATCH_1
|
|
endif() # CMAKE_MATCH_COUNT
|
|
endforeach() # OFFLOAD_ARCH_LIST
|
|
if (${NOT_GFX90a} EQUAL -1 AND ${GFX90a} EQUAL 1)
|
|
set(ARCH_CHECK 1 PARENT_SCOPE)
|
|
endif()
|
|
endfunction() # CheckAcceptedArchs
|
|
|
|
add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/tex_ref_get_module.code
|
|
COMMAND ${CMAKE_CXX_COMPILER} --genco ${OFFLOAD_ARCH_STR} --std=c++17 ${CMAKE_CURRENT_SOURCE_DIR}/tex_ref_get_module.cc
|
|
-o tex_ref_get_module.code
|
|
-I${HIP_PATH}/include/ --rocm-path=${ROCM_PATH}
|
|
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/tex_ref_get_module.cc)
|
|
add_custom_target(tex_ref_get_module ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/tex_ref_get_module.code)
|
|
set_property(GLOBAL APPEND PROPERTY G_INSTALL_CUSTOM_TARGETS ${CMAKE_CURRENT_BINARY_DIR}/tex_ref_get_module.code)
|
|
|
|
if(HIP_PLATFORM MATCHES "amd")
|
|
if (DEFINED OFFLOAD_ARCH_STR)
|
|
CheckRejectedArchs(${OFFLOAD_ARCH_STR})
|
|
elseif(DEFINED $ENV{HCC_AMDGPU_TARGET})
|
|
CheckRejectedArchs($ENV{HCC_AMDGPU_TARGET})
|
|
else()
|
|
set(ARCH_CHECK -1)
|
|
endif()
|
|
if(${ARCH_CHECK} EQUAL -1)
|
|
message(STATUS "Adding test: ${NOT_FOR_gfx90a_AND_ABOVE_TEST}")
|
|
set(TEST_SRC ${TEST_SRC} ${NOT_FOR_gfx90a_AND_ABOVE_TEST})
|
|
else()
|
|
message(STATUS "Removing test: ${NOT_FOR_gfx90a_AND_ABOVE_TEST}")
|
|
endif()
|
|
else()
|
|
set(TEST_SRC ${TEST_SRC} ${NOT_FOR_gfx90a_AND_ABOVE_TEST})
|
|
endif()
|
|
|
|
# Mipmap APIs are not supported on Linux
|
|
if(WIN32)
|
|
set(TEST_SRC
|
|
${TEST_SRC}
|
|
hipBindTextureToMipmappedArray.cc
|
|
hipMallocMipmappedArray.cc
|
|
hipFreeMipmappedArray.cc
|
|
hipGetMipmappedArrayLevel.cc
|
|
hipMipmappedArrayCreate.cc
|
|
hipMipmappedArrayDestroy.cc
|
|
hipMipmappedArrayGetLevel.cc
|
|
hipTextureMipmapObj1D.cc
|
|
hipTextureMipmapObj2D.cc
|
|
hipTextureMipmapObj3D.cc
|
|
)
|
|
endif()
|
|
|
|
hip_add_exe_to_target(NAME TextureTest
|
|
TEST_SRC ${TEST_SRC}
|
|
TEST_TARGET_NAME build_tests)
|
|
|
|
add_dependencies(TextureTest tex_ref_get_module)
|