summaryrefslogtreecommitdiff
path: root/external/clBLAS/src/tests/performance/perf-ger.cpp
blob: 0a60954f3291ba6240d64ae7f9821857ddd968a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
/* ************************************************************************
 * 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.
 * ************************************************************************/


/*
 * GER performance test cases
 */

#include <stdlib.h>             // srand()
#include <string.h>             // memcpy()
#include <gtest/gtest.h>
#include <clBLAS.h>

#include <common.h>
#include <clBLAS-wrapper.h>
#include <BlasBase.h>
#include <ger.h>
#include <blas-random.h>

#ifdef PERF_TEST_WITH_ACML
#include <blas-internal.h>
#include <blas-wrapper.h>
#endif

#include "PerformanceTest.h"

/*
 * NOTE: operation factor means overall number
 *       of multiply and add per each operation involving
 *       2 matrix elements
 */

using namespace std;
using namespace clMath;

#define CHECK_RESULT(ret)                                                   \
do {                                                                        \
    ASSERT_GE(ret, 0) << "Fatal error: can not allocate resources or "      \
                         "perform an OpenCL request!" << endl;              \
    EXPECT_EQ(0, ret) << "The OpenCL version is slower in the case" <<      \
                         endl;                                              \
} while (0)

namespace clMath {

template <typename ElemType> class GerPerformanceTest : public PerformanceTest
{
public:
    virtual ~GerPerformanceTest();

    virtual int prepare(void);
    virtual nano_time_t etalonPerfSingle(void);
    virtual nano_time_t clblasPerfSingle(void);

    static void runInstance(BlasFunction fn, TestParams *params)
    {
        GerPerformanceTest<ElemType> perfCase(fn, params);
        int ret = 0;
        int opFactor;
        BlasBase *base;

        base = clMath::BlasBase::getInstance();

        opFactor =1;

        if ((fn == FN_DGER || fn == FN_ZGERU) &&
            !base->isDevSupportDoublePrecision()) {

            std::cerr << ">> WARNING: The target device doesn't support native "
                         "double precision floating point arithmetic" <<
                         std::endl << ">> Test skipped" << std::endl;
            return;
        }

        if (!perfCase.areResourcesSufficient(params)) {
            std::cerr << ">> RESOURCE CHECK: Skip due to unsufficient resources" <<
                        std::endl;
			return;
        }
        else {
            ret = perfCase.run(opFactor);
        }

        ASSERT_GE(ret, 0) << "Fatal error: can not allocate resources or "
                             "perform an OpenCL request!" << endl;
        EXPECT_EQ(0, ret) << "The OpenCL version is slower in the case" << endl;
    }

private:
    GerPerformanceTest(BlasFunction fn, TestParams *params);

    bool areResourcesSufficient(TestParams *params);

    TestParams params_;
    ElemType alpha_;
    ElemType *A_;
    ElemType *backA_;
    ElemType *x_;
    ElemType *y_;
    cl_mem mobjA_;
    cl_mem mobjx_;
    size_t  lengthA;
    cl_mem mobjy_;
    ::clMath::BlasBase *base_;
};

template <typename ElemType>
GerPerformanceTest<ElemType>::GerPerformanceTest(
    BlasFunction fn,
    TestParams *params) : PerformanceTest(fn,(problem_size_t) ( ( (3 * params->M * params->N) + params->M )  * sizeof(ElemType) ) ), params_(*params), mobjA_(NULL), mobjx_(NULL), mobjy_(NULL)
{

	if( params_.order == clblasColumnMajor )
			lengthA = params_.N * params_.lda;
		else
                        lengthA = params_.M * params_.lda;

    A_ = new ElemType[lengthA + params_.offa];
    backA_ = new ElemType[lengthA + params_.offa];
    x_ = new ElemType[(1 + (params->M - 1) * abs(params_.incx))+ params_.offBX];
    y_ = new ElemType[(1 + (params->N - 1) * abs(params_.incy)) + params_.offCY] ;

    base_ = ::clMath::BlasBase::getInstance();
}

template <typename ElemType>
GerPerformanceTest<ElemType>::~GerPerformanceTest()
{
    if(A_ != NULL)
    {
    delete[] A_;
    }
	if(x_ != NULL)
	{
    delete[] x_;
	}
	if(y_ != NULL)
	{
    delete[] y_;
	}
	if(backA_ != NULL)
	{
    delete[] backA_;
	}

	if( mobjy_ != NULL )
	    clReleaseMemObject(mobjy_);
    if( mobjx_ != NULL )
		clReleaseMemObject(mobjx_);
	if( mobjA_ != NULL )
	    clReleaseMemObject(mobjA_);
}

/*
 * Check if available OpenCL resources are sufficient to
 * run the test case
 */
template <typename ElemType> bool
GerPerformanceTest<ElemType>::areResourcesSufficient(TestParams *params)
{
    clMath::BlasBase *base;
    size_t gmemSize, allocSize;
    bool ret;
    size_t m = params->M, n = params->N;

	if((A_ == NULL) || (backA_ == NULL) || (x_ == NULL) || (y_ == NULL))
	{
		return 0;
	}

    base = clMath::BlasBase::getInstance();
    gmemSize = (size_t)base->availGlobalMemSize( 0 );
    allocSize = (size_t)base->maxMemAllocSize();

    ret = std::max(m, n) * params_.lda * sizeof(ElemType) < allocSize;
    ret = ret && ( ((1 + (params_.M-1)*abs(params_.incx)))* sizeof(ElemType) < allocSize);
    ret = ret && ( ((1 + (params_.N-1)*abs(params_.incy))) * sizeof(ElemType) < allocSize);

    ret = ret && (((std::max(m, n) * params_.lda) + ((1 + (params_.M-1)*abs(params_.incx))) +  ((1 + (params_.N-1)*abs(params_.incy)))) < gmemSize);

    return ret;
}

template <typename ElemType> int
GerPerformanceTest<ElemType>::prepare(void)
{
    bool useAlpha = base_->useAlpha();

    if (useAlpha) {
        alpha_ = convertMultiplier<ElemType>(params_.alpha);
    }


    int creationFlags = 0;
    creationFlags =  creationFlags | RANDOM_INIT;

    creationFlags = ( (params_.order) == clblasRowMajor)? (creationFlags | ROW_MAJOR_ORDER) : (creationFlags);
	BlasRoutineID BlasFn = CLBLAS_GER;

	populate( A_+ params_.offa, params_.M, params_.N, params_.lda, BlasFn, creationFlags);
	populate( x_, (1 + (params_.M-1) * abs(params_.incx) + params_.offBX), 1, (1 + (params_.M-1) * abs(params_.incx) + params_.offBX), BlasFn, creationFlags );
	populate( y_, (1 + (params_.N-1) * abs(params_.incy) + params_.offCY), 1, (1 + (params_.N-1) * abs(params_.incy) + params_.offCY), BlasFn, creationFlags );


    memcpy(backA_, A_, (lengthA + params_.offa)* sizeof(ElemType));

	mobjA_ = base_->createEnqueueBuffer(A_, (lengthA + params_.offa) * sizeof(*A_), 0, CL_MEM_READ_WRITE);
	mobjx_ = base_->createEnqueueBuffer(x_, ( (1 + (params_.M-1) * abs(params_.incx) + params_.offBX)) * sizeof(*x_), 0, CL_MEM_READ_WRITE);
	mobjy_ = base_->createEnqueueBuffer(y_,( (1 + (params_.N-1) * abs(params_.incy) + params_.offCY)) * sizeof(*y_) , 0, CL_MEM_READ_WRITE);

     return ( (mobjA_ != NULL) &&  (mobjx_ != NULL) && (mobjy_ != NULL) ) ? 0 : -1;
}

template <typename ElemType> nano_time_t
GerPerformanceTest<ElemType>::etalonPerfSingle(void)
{
    nano_time_t time = 0;
    clblasOrder order;
    size_t lda, fN, fM;


#ifndef PERF_TEST_WITH_ROW_MAJOR
    if (params_.order == clblasRowMajor) {
        cerr << "Row major order is not allowed" << endl;
        return NANOTIME_ERR;
    }
#endif

    order = params_.order;
    lda = params_.lda;
     fM = params_.M;
    fN = params_.N;

#ifdef PERF_TEST_WITH_ACML

    clblasOrder fOrder;
    size_t fOffx, fOffy;
    int fIncx, fIncy;
    ElemType *fX, *fY;
    fOrder = params_.order;
    fM = params_.M;
    fN = params_.N;
    fIncx = params_.incx;
    fIncy = params_.incy;
    fX = x_;
    fY = y_;
    fOffx = params_.offBX;
    fOffy = params_.offCY;

    if (fOrder != clblasColumnMajor) {
           fOrder = clblasColumnMajor;
           fM = params_.N;
           fN = params_.M;
           fX = y_;
           fY = x_;
           fIncx = params_.incy;
           fIncy = params_.incx;
           fOffx = params_.offCY;
           fOffy = params_.offBX;
		}
		time = getCurrentTime();
		clMath::blas::ger(order, fM, fN, alpha_, fX, fOffx, fIncx, fY, fOffy, fIncy,  A_, params_.offa, lda);
		time = getCurrentTime() - time;

#endif  // PERF_TEST_WITH_ACML

    return time;
}


template <typename ElemType> nano_time_t
GerPerformanceTest<ElemType>::clblasPerfSingle(void)
{
    nano_time_t time;
    cl_event event;
    cl_int status;
    cl_command_queue queue = base_->commandQueues()[0];

    status = clEnqueueWriteBuffer(queue, mobjA_, CL_TRUE, 0,
                                  (lengthA + params_.offa) * sizeof(ElemType), backA_, 0, NULL, &event);
    if (status != CL_SUCCESS) {
        cerr << "Matrix A buffer object enqueuing error, status = " <<
                 status << endl;

        return NANOTIME_ERR;
    }

    status = clWaitForEvents(1, &event);
    if (status != CL_SUCCESS) {
        cout << "Wait on event failed, status = " <<
                status << endl;

        return NANOTIME_ERR;
    }

    event = NULL;
     time = getCurrentTime();

#define TIMING
#ifdef TIMING
        clFinish( queue);

        int iter = 20;
        for ( int i = 1; i <= iter; i++)
        {
#endif

    status = (cl_int)clMath::clblas::ger(params_.order, params_.M, params_.N, alpha_,
         mobjx_, params_.offBX, params_.incx, mobjy_, params_.offCY, params_.incy, mobjA_, params_.offa, params_.lda, 1,
        &queue, 0, NULL, &event);
    if (status != CL_SUCCESS) {
        cerr << "The CLBLAS GER function failed, status = " <<
                status << endl;

        return NANOTIME_ERR;
    }
#ifdef TIMING
        } // iter loop
        clFinish( queue);
    time = getCurrentTime() - time;
        time /= iter;
#else

    status = flushAll(1, &queue);
    if (status != CL_SUCCESS) {
        cerr << "clFlush() failed, status = " << status << endl;
        return NANOTIME_ERR;
    }

    time = getCurrentTime();
    status = waitForSuccessfulFinish(1, &queue, &event);
    if (status == CL_SUCCESS) {
        time = getCurrentTime() - time;
    }
    else {
        cerr << "Waiting for completion of commands to the queue failed, "
                "status = " << status << endl;
        time = NANOTIME_ERR;
    }
#endif
    return time;
}

} // namespace clMath

// ger performance test

TEST_P(GER, sger)
{
    TestParams params;

    getParams(&params);
    GerPerformanceTest<float>::runInstance(FN_SGER, &params);
}


TEST_P(GER, dger)
{
    TestParams params;

    getParams(&params);
    GerPerformanceTest<double>::runInstance(FN_DGER, &params);
}

TEST_P(GER, cgeru)
{
    TestParams params;

    getParams(&params);
    GerPerformanceTest<FloatComplex>::runInstance(FN_CGERU, &params);
}


TEST_P(GER, zgeru)
{
    TestParams params;

    getParams(&params);
    GerPerformanceTest<DoubleComplex>::runInstance(FN_ZGERU, &params);
}