diff --git a/catch/unit/texture/CMakeLists.txt b/catch/unit/texture/CMakeLists.txt index 8c14e1d62b..4696158f36 100644 --- a/catch/unit/texture/CMakeLists.txt +++ b/catch/unit/texture/CMakeLists.txt @@ -36,6 +36,7 @@ set(TEST_SRC hipTex1DFetchCheckModes.cc hipGetChanDesc.cc hipGetTextureAlignmentOffset.cc + hipGetTextureReference.cc hipTexObjPitch.cc hipTexRefSetArray.cc hipTexRefGetArray.cc diff --git a/catch/unit/texture/hipGetTextureReference.cc b/catch/unit/texture/hipGetTextureReference.cc new file mode 100644 index 0000000000..54a33fe522 --- /dev/null +++ b/catch/unit/texture/hipGetTextureReference.cc @@ -0,0 +1,58 @@ +/* +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. +*/ + +#include + +#if defined(__HIP_PLATFORM_AMD__) || CUDA_VERSION < CUDA_12000 + +texture tex; + +TEST_CASE("Unit_hipGetTextureReference_Positive") { + CHECK_IMAGE_SUPPORT + + const textureReference *tex_ref = nullptr; + HIP_CHECK(hipGetTextureReference(&tex_ref, &tex)); + REQUIRE(tex_ref != nullptr); +} + +TEST_CASE("Unit_hipGetTextureReference_Negative") { + CHECK_IMAGE_SUPPORT + + const textureReference *tex_ref = nullptr; + + // Cuda crashes with SIGSEGV +#if HT_AMD + SECTION("texture reference is null") { + HIP_CHECK_ERROR(hipGetTextureReference(nullptr, &tex), hipErrorInvalidValue); + } +#endif + + SECTION("texture is null") { +#if HT_AMD + HIP_CHECK(hipGetTextureReference(&tex_ref, nullptr)); +#else + HIP_CHECK_ERROR(hipGetTextureReference(&tex_ref, nullptr), hipErrorInvalidTexture); +#endif + } +} + +#endif