summaryrefslogtreecommitdiff
path: root/external/clBLAS/src/tests/include/herk.h
diff options
context:
space:
mode:
Diffstat (limited to 'external/clBLAS/src/tests/include/herk.h')
-rw-r--r--external/clBLAS/src/tests/include/herk.h160
1 files changed, 0 insertions, 160 deletions
diff --git a/external/clBLAS/src/tests/include/herk.h b/external/clBLAS/src/tests/include/herk.h
deleted file mode 100644
index 7a5d5b50..00000000
--- a/external/clBLAS/src/tests/include/herk.h
+++ /dev/null
@@ -1,160 +0,0 @@
-/* ************************************************************************
- * Copyright 2013 Advanced Micro Devices, Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ************************************************************************/
-
-
-#ifndef HERK_H_
-#define HERK_H_
-
-#include <gtest/gtest.h>
-#include <clBLAS.h>
-#include <common.h>
-#include <BlasBase.h>
-#include <ExtraTestSizes.h>
-#include <common.h>
-
-using namespace clMath;
-using ::testing::TestWithParam;
-
-class HERK : public TestWithParam<
- ::std::tr1::tuple<
- clblasOrder, // order
- clblasUplo, // uplo
- clblasTranspose, // transA
- int, // N
- int, // K
- ComplexLong, // alpha
- ComplexLong, // beta
- ExtraTestSizes, // offa, offc, lda, ldc.
- int // numCommandQueues
- > > {
-public:
- void getParams(TestParams *params)
- {
- params->order = order;
- params->uplo = uplo;
- params->transA = transA;
- params->seed = seed;
- params->N = N;
- params->K = K;
- params->offA = offA;
- params->offCY = offC;
- params->lda = lda;
- params->ldc = ldc;
- params->rowsA = rowsA;
- params->columnsA = columnsA;
- params->rowsC = rowsC;
- params->columnsC = columnsC;
- params->numCommandQueues = numCommandQueues;
- params->alpha = paramAlpha;
- params->beta = paramBeta;
- }
-
-protected:
- virtual void SetUp()
- {
- ExtraTestSizes extra;
-
- order = ::std::tr1::get<0>(GetParam());
- uplo = ::std::tr1::get<1>(GetParam());
- transA = ::std::tr1::get<2>(GetParam());
- N = ::std::tr1::get<3>(GetParam());
- K = ::std::tr1::get<4>(GetParam());
- paramAlpha = ::std::tr1::get<5>(GetParam());
- paramBeta = ::std::tr1::get<6>(GetParam());
-
- extra = ::std::tr1::get<7>(GetParam());
- offA = extra.offA;
- offC = extra.offCY;
- lda = extra.strideA.ld;
- ldc = extra.strideCY.ld;
- numCommandQueues = ::std::tr1::get<8>(GetParam());
-
- base = ::clMath::BlasBase::getInstance();
- seed = base->seed();
-
- useNumCommandQueues = base->useNumCommandQueues();
- if (useNumCommandQueues) {
- numCommandQueues = base->numCommandQueues();
- }
-
- useAlpha = base->useAlpha();
- if (useAlpha != 0) {
- paramAlpha = base->alpha();
- }
- useBeta = base->useBeta();
- if (useBeta != 0) {
- paramBeta = base->beta();
- }
- if (base->useN()) {
- N = base->N();
- }
- if (base->useK()) {
- K = base->K();
- }
-
- if (transA == clblasNoTrans) {
- rowsA = N;
- columnsA = K;
- }
- else {
- rowsA = K;
- columnsA = N;
- }
- rowsC = N;
- columnsC = N;
-
- switch (order) {
- case clblasRowMajor:
- lda = ::std::max(lda, columnsA);
- columnsA = lda;
- ldc = ::std::max(ldc, columnsC);
- columnsC = ldc;
- break;
- case clblasColumnMajor:
- lda = ::std::max(lda, rowsA);
- rowsA = lda;
- ldc = ::std::max(ldc, rowsC);
- rowsC = ldc;
- break;
- }
-
- printTestParams(order, uplo, transA, N, K, true, paramAlpha,
- offA, lda, true, paramBeta, offC, ldc);
- ::std::cerr << "seed = " << seed << ::std::endl;
- ::std::cerr << "queues = " << numCommandQueues << ::std::endl;
- }
-
- clblasOrder order;
- clblasUplo uplo;
- clblasTranspose transA;
- size_t N, K;
- size_t offA, offC;
- size_t lda, ldc;
- unsigned int seed;
-
- bool useAlpha, useBeta;
- ComplexLong paramAlpha, paramBeta;
-
- size_t rowsA, columnsA;
- size_t rowsC, columnsC;
-
- ::clMath::BlasBase *base;
-
- bool useNumCommandQueues;
- cl_uint numCommandQueues;
-};
-
-#endif // HERK_H_