From de605c0407fc8f0cb305474f4d241cd8b68f6796 Mon Sep 17 00:00:00 2001 From: Lakhan Singh Date: Tue, 12 Jun 2018 15:22:05 +0530 Subject: [PATCH] [GETandALGN]: Get channel and alignment details --- tests/src/texture/hipGetAlgntoffset2D.cpp | 98 +++++++++++++++ tests/src/texture/hipGetChanDesc.cpp | 139 ++++++++++++++++++++++ 2 files changed, 237 insertions(+) create mode 100644 tests/src/texture/hipGetAlgntoffset2D.cpp create mode 100644 tests/src/texture/hipGetChanDesc.cpp diff --git a/tests/src/texture/hipGetAlgntoffset2D.cpp b/tests/src/texture/hipGetAlgntoffset2D.cpp new file mode 100644 index 0000000000..66f60a4eec --- /dev/null +++ b/tests/src/texture/hipGetAlgntoffset2D.cpp @@ -0,0 +1,98 @@ +/* +Copyright (c) 2015-2017 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. +*/ + +/* HIT_START + * BUILD: %t %s ../test_common.cpp + * RUN: %t + * HIT_END + */ +#include +#include +#include +#include + +#include +#include "test_common.h" + +using namespace std; +#define HIP_ENABLE_PRINTF +#define R 8 //rows, height +#define C 8 //columns, width + + +texture tex; + +bool testResult = true; + +void runTest(void); + +int main(int argc, char** argv) { + runTest(); + + if (testResult) { + passed(); + } else { + exit(EXIT_FAILURE); + } +} + + +void runTest() +{ + +string out; +int val[R][C],i,j; +size_t offset; + +for(i=0;i +#include +#include + +#include +#include "test_common.h" + +using namespace std; +#define R 8 //rows, height +#define C 8 //columns, width + + +texture tex; + +bool testResult = true; + +void runTest(void); + +int main(int argc, char** argv) { + runTest(); + + if (testResult) { + passed(); + } else { + exit(EXIT_FAILURE); + } +} + + +void runTest() +{ + +string out; +int val[R][C],i,j; + +for(i=0;i