2021-09-24 16:27:39 +05:30
|
|
|
/*
|
|
|
|
|
Copyright (c) 2021 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 <hip_test_common.hh>
|
|
|
|
|
|
2023-08-14 17:15:35 +02:00
|
|
|
/**
|
|
|
|
|
* @addtogroup hipCreateTextureObject hipCreateTextureObject
|
|
|
|
|
* @{
|
|
|
|
|
* @ingroup TextureTest
|
|
|
|
|
*/
|
|
|
|
|
|
2021-09-24 16:27:39 +05:30
|
|
|
#define UNALIGN_OFFSET 1
|
|
|
|
|
#define SIZE_H 20
|
|
|
|
|
#define SIZE_W 30
|
|
|
|
|
#define N 512
|
|
|
|
|
|
2023-08-14 17:15:35 +02:00
|
|
|
/**
|
|
|
|
|
* Test Description
|
|
|
|
|
* ------------------------
|
|
|
|
|
* - Validates handling of invalid 2D pitch resource:
|
|
|
|
|
* -# When device pointer is `nullptr`
|
|
|
|
|
* - Expected output: do not return `hipSuccess`
|
|
|
|
|
* -# When device pointer is not aligned appropriately
|
|
|
|
|
* - Expected output: do not return `hipSuccess`
|
|
|
|
|
* -# When pitch is not aligned appropriately
|
|
|
|
|
* - Expected output: do not return `hipSuccess`
|
|
|
|
|
* -# When height is 0
|
|
|
|
|
* - Expected output: do not return `hipSuccess`
|
|
|
|
|
* -# When height is 0 and device pointer is `nullptr`
|
|
|
|
|
* - Expected output: do not return `hipSuccess`
|
|
|
|
|
* -# When height is `size_t` maximum
|
|
|
|
|
* - Expected output: do not return `hipSuccess`
|
|
|
|
|
* -# When width is 0
|
|
|
|
|
* - Expected output: do not return `hipSuccess`
|
|
|
|
|
* -# When width is 0 and device pointer is `nullptr`
|
|
|
|
|
* - Expected output: do not return `hipSuccess`
|
|
|
|
|
* -# When width is `size_t` maximum
|
|
|
|
|
* - Expected output: do not return `hipSuccess`
|
|
|
|
|
* -# When pitch is `size_t` maximum
|
|
|
|
|
* - Expected output: do not return `hipSuccess`
|
|
|
|
|
* Test source
|
|
|
|
|
* ------------------------
|
|
|
|
|
* - unit/texture/hipCreateTextureObject_Pitch2D.cc
|
|
|
|
|
* Test requirements
|
|
|
|
|
* ------------------------
|
|
|
|
|
* - Textures supported on device
|
|
|
|
|
* - HIP_VERSION >= 5.2
|
2021-09-24 16:27:39 +05:30
|
|
|
*/
|
|
|
|
|
TEST_CASE("Unit_hipCreateTextureObject_Pitch2DResource") {
|
2022-07-19 19:26:56 +05:30
|
|
|
CHECK_IMAGE_SUPPORT
|
2022-05-09 21:16:20 +05:30
|
|
|
|
2021-09-24 16:27:39 +05:30
|
|
|
hipError_t ret;
|
|
|
|
|
hipResourceDesc resDesc;
|
|
|
|
|
hipTextureDesc texDesc;
|
|
|
|
|
hipTextureObject_t texObj;
|
|
|
|
|
hipDeviceProp_t devProp;
|
|
|
|
|
size_t devPitchA;
|
|
|
|
|
float* devPtrA;
|
|
|
|
|
|
2023-08-14 17:15:35 +02:00
|
|
|
// Initialization
|
2021-09-24 16:27:39 +05:30
|
|
|
HIP_CHECK(hipMallocPitch(reinterpret_cast<void**>(&devPtrA), &devPitchA, SIZE_W * sizeof(float),
|
|
|
|
|
SIZE_H));
|
|
|
|
|
HIP_CHECK(hipGetDeviceProperties(&devProp, 0));
|
|
|
|
|
memset(&resDesc, 0, sizeof(resDesc));
|
|
|
|
|
memset(&texDesc, 0, sizeof(texDesc));
|
|
|
|
|
resDesc.resType = hipResourceTypePitch2D;
|
|
|
|
|
|
2023-08-14 17:15:35 +02:00
|
|
|
// Sections
|
2021-09-24 16:27:39 +05:30
|
|
|
SECTION("hipResourceTypePitch2D and devPtr(nullptr)") {
|
|
|
|
|
// Populate resource descriptor
|
|
|
|
|
resDesc.res.pitch2D.devPtr = nullptr;
|
|
|
|
|
resDesc.res.pitch2D.height = SIZE_H;
|
|
|
|
|
resDesc.res.pitch2D.width = SIZE_W;
|
|
|
|
|
resDesc.res.pitch2D.pitchInBytes = devPitchA;
|
|
|
|
|
resDesc.res.pitch2D.desc = hipCreateChannelDesc<float>();
|
|
|
|
|
|
|
|
|
|
// Populate texture descriptor
|
|
|
|
|
texDesc.readMode = hipReadModeElementType;
|
|
|
|
|
|
|
|
|
|
ret = hipCreateTextureObject(&texObj, &resDesc, &texDesc, nullptr);
|
|
|
|
|
REQUIRE(ret != hipSuccess);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SECTION("hipResourceTypePitch2D and devicePtr un-aligned") {
|
|
|
|
|
if (devProp.textureAlignment > UNALIGN_OFFSET) {
|
|
|
|
|
// Populate resource descriptor
|
|
|
|
|
resDesc.res.pitch2D.devPtr = reinterpret_cast<char*>(devPtrA) + UNALIGN_OFFSET;
|
|
|
|
|
resDesc.res.pitch2D.height = SIZE_H;
|
|
|
|
|
resDesc.res.pitch2D.width = SIZE_W;
|
|
|
|
|
resDesc.res.pitch2D.pitchInBytes = devPitchA;
|
|
|
|
|
resDesc.res.pitch2D.desc = hipCreateChannelDesc<float>();
|
|
|
|
|
|
|
|
|
|
// Populate texture descriptor
|
|
|
|
|
memset(&texDesc, 0, sizeof(texDesc));
|
|
|
|
|
texDesc.readMode = hipReadModeElementType;
|
|
|
|
|
ret = hipCreateTextureObject(&texObj, &resDesc, &texDesc, nullptr);
|
|
|
|
|
REQUIRE(ret != hipSuccess);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SECTION("hipResourceTypePitch2D and pitch(un-aligned)") {
|
|
|
|
|
// Populate resource descriptor
|
|
|
|
|
resDesc.res.pitch2D.devPtr = devPtrA;
|
|
|
|
|
resDesc.res.pitch2D.height = SIZE_H;
|
|
|
|
|
resDesc.res.pitch2D.width = SIZE_W;
|
|
|
|
|
resDesc.res.pitch2D.pitchInBytes = UNALIGN_OFFSET;
|
|
|
|
|
resDesc.res.pitch2D.desc = hipCreateChannelDesc<float>();
|
|
|
|
|
|
|
|
|
|
// Populate texture descriptor
|
|
|
|
|
texDesc.readMode = hipReadModeElementType;
|
|
|
|
|
|
|
|
|
|
ret = hipCreateTextureObject(&texObj, &resDesc, &texDesc, nullptr);
|
|
|
|
|
REQUIRE(ret != hipSuccess);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SECTION("hipResourceTypePitch2D and height(0)") {
|
2025-09-02 16:03:07 +02:00
|
|
|
// Populate resource descriptor
|
|
|
|
|
resDesc.res.pitch2D.devPtr = devPtrA;
|
|
|
|
|
resDesc.res.pitch2D.height = 0;
|
|
|
|
|
resDesc.res.pitch2D.width = SIZE_W;
|
|
|
|
|
resDesc.res.pitch2D.pitchInBytes = devPitchA;
|
|
|
|
|
resDesc.res.pitch2D.desc = hipCreateChannelDesc<float>();
|
2021-09-24 16:27:39 +05:30
|
|
|
|
2025-09-02 16:03:07 +02:00
|
|
|
// Populate texture descriptor
|
|
|
|
|
texDesc.readMode = hipReadModeElementType;
|
2021-09-24 16:27:39 +05:30
|
|
|
|
2025-09-02 16:03:07 +02:00
|
|
|
HIP_CHECK(hipCreateTextureObject(&texObj, &resDesc, &texDesc, nullptr));
|
|
|
|
|
HIP_CHECK(hipDestroyTextureObject(texObj));
|
2021-09-24 16:27:39 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SECTION("hipResourceTypePitch2D and height(0)/devptr(nullptr)") {
|
|
|
|
|
// Populate resource descriptor
|
|
|
|
|
resDesc.res.pitch2D.devPtr = nullptr;
|
|
|
|
|
resDesc.res.pitch2D.height = 0;
|
|
|
|
|
resDesc.res.pitch2D.width = SIZE_W;
|
|
|
|
|
resDesc.res.pitch2D.pitchInBytes = devPitchA;
|
|
|
|
|
resDesc.res.pitch2D.desc = hipCreateChannelDesc<float>();
|
|
|
|
|
|
|
|
|
|
// Populate texture descriptor
|
|
|
|
|
texDesc.readMode = hipReadModeElementType;
|
|
|
|
|
|
|
|
|
|
ret = hipCreateTextureObject(&texObj, &resDesc, &texDesc, nullptr);
|
|
|
|
|
REQUIRE(ret != hipSuccess);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SECTION("hipResourceTypePitch2D and height(max(size_t))") {
|
|
|
|
|
// Populate resource descriptor
|
|
|
|
|
resDesc.res.pitch2D.devPtr = devPtrA;
|
|
|
|
|
resDesc.res.pitch2D.height = std::numeric_limits<std::size_t>::max();
|
|
|
|
|
resDesc.res.pitch2D.width = SIZE_W;
|
|
|
|
|
resDesc.res.pitch2D.pitchInBytes = devPitchA;
|
|
|
|
|
resDesc.res.pitch2D.desc = hipCreateChannelDesc<float>();
|
|
|
|
|
|
|
|
|
|
// Populate texture descriptor
|
|
|
|
|
texDesc.readMode = hipReadModeElementType;
|
|
|
|
|
|
|
|
|
|
ret = hipCreateTextureObject(&texObj, &resDesc, &texDesc, nullptr);
|
|
|
|
|
REQUIRE(ret != hipSuccess);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SECTION("hipResourceTypePitch2D and width(0)") {
|
2025-09-02 16:03:07 +02:00
|
|
|
// Populate resource descriptor
|
|
|
|
|
resDesc.resType = hipResourceTypePitch2D;
|
|
|
|
|
resDesc.res.pitch2D.devPtr = devPtrA;
|
|
|
|
|
resDesc.res.pitch2D.height = SIZE_H;
|
|
|
|
|
resDesc.res.pitch2D.width = 0;
|
|
|
|
|
resDesc.res.pitch2D.pitchInBytes = devPitchA;
|
|
|
|
|
resDesc.res.pitch2D.desc = hipCreateChannelDesc<float>();
|
2021-09-24 16:27:39 +05:30
|
|
|
|
2025-09-02 16:03:07 +02:00
|
|
|
// Populate texture descriptor
|
|
|
|
|
texDesc.readMode = hipReadModeElementType;
|
2021-09-24 16:27:39 +05:30
|
|
|
|
2025-09-02 16:03:07 +02:00
|
|
|
HIP_CHECK(hipCreateTextureObject(&texObj, &resDesc, &texDesc, nullptr));
|
|
|
|
|
HIP_CHECK(hipDestroyTextureObject(texObj));
|
2021-09-24 16:27:39 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SECTION("hipResourceTypePitch2D and width(0)/devPtr(nullptr)") {
|
|
|
|
|
// Populate resource descriptor
|
|
|
|
|
resDesc.res.pitch2D.devPtr = nullptr;
|
|
|
|
|
resDesc.res.pitch2D.height = SIZE_H;
|
|
|
|
|
resDesc.res.pitch2D.width = 0;
|
|
|
|
|
resDesc.res.pitch2D.pitchInBytes = devPitchA;
|
|
|
|
|
resDesc.res.pitch2D.desc = hipCreateChannelDesc<float>();
|
|
|
|
|
|
|
|
|
|
// Populate texture descriptor
|
|
|
|
|
texDesc.readMode = hipReadModeElementType;
|
|
|
|
|
|
|
|
|
|
ret = hipCreateTextureObject(&texObj, &resDesc, &texDesc, nullptr);
|
|
|
|
|
REQUIRE(ret != hipSuccess);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SECTION("hipResourceTypePitch2D and width(max(size_t))") {
|
|
|
|
|
// Populate resource descriptor
|
|
|
|
|
resDesc.res.pitch2D.devPtr = devPtrA;
|
|
|
|
|
resDesc.res.pitch2D.height = SIZE_H;
|
|
|
|
|
resDesc.res.pitch2D.width = std::numeric_limits<std::size_t>::max();
|
|
|
|
|
resDesc.res.pitch2D.pitchInBytes = devPitchA;
|
|
|
|
|
resDesc.res.pitch2D.desc = hipCreateChannelDesc<float>();
|
|
|
|
|
|
|
|
|
|
// Populate texture descriptor
|
|
|
|
|
texDesc.readMode = hipReadModeElementType;
|
|
|
|
|
|
|
|
|
|
ret = hipCreateTextureObject(&texObj, &resDesc, &texDesc, nullptr);
|
|
|
|
|
REQUIRE(ret != hipSuccess);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SECTION("hipResourceTypePitch2D and pitch(max(size_t))") {
|
|
|
|
|
// Populate resource descriptor
|
|
|
|
|
resDesc.res.pitch2D.devPtr = devPtrA;
|
|
|
|
|
resDesc.res.pitch2D.height = SIZE_H;
|
|
|
|
|
resDesc.res.pitch2D.width = SIZE_W;
|
|
|
|
|
resDesc.res.pitch2D.pitchInBytes = std::numeric_limits<std::size_t>::max();
|
|
|
|
|
resDesc.res.pitch2D.desc = hipCreateChannelDesc<float>();
|
|
|
|
|
|
|
|
|
|
// Populate texture descriptor
|
|
|
|
|
texDesc.readMode = hipReadModeElementType;
|
|
|
|
|
|
|
|
|
|
ret = hipCreateTextureObject(&texObj, &resDesc, &texDesc, nullptr);
|
|
|
|
|
REQUIRE(ret != hipSuccess);
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-14 17:15:35 +02:00
|
|
|
// De-Initialization
|
2021-09-24 16:27:39 +05:30
|
|
|
HIP_CHECK(hipFree(devPtrA));
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-22 11:17:00 +01:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* End doxygen group TextureTest.
|
|
|
|
|
* @}
|
|
|
|
|
*/
|