embb_mtapi_opencl_test_task.cc 3.93 KB
Newer Older
1
/*
2
 * Copyright (c) 2014-2016, Siemens AG. All rights reserved.
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
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 * this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include <embb_mtapi_opencl_test_task.h>

#include <embb/mtapi/c/mtapi_opencl.h>

#define MTAPI_CHECK_STATUS(status) \
PT_ASSERT(MTAPI_SUCCESS == status)

34 35 36 37
#define OPENCL_DOMAIN 1
#define OPENCL_NODE 2
#define OPENCL_JOB 2

38 39 40 41 42 43 44 45 46 47 48 49 50
// OpenCL Kernel Function for element by element vector addition
const char * kernel =
"__kernel void test(\n"
"  __global void* arguments,\n"
"  int arguments_size,\n"
"  __global void* result_buffer,\n"
"  int result_buffer_size,\n"
"  __global void* node_local_data,\n"
"  int node_local_data_size) {\n"
"  int ii = get_global_id(0);\n"
"  int elements = arguments_size / sizeof(float) / 2;\n"
"  if (ii >= elements)"
"    return;"
51 52 53 54
"  __global float* a = (__global float*)arguments;\n"
"  __global float* b = ((__global float*)arguments) + elements;\n"
"  __global float* c = (__global float*)result_buffer;\n"
"  __global float* d = (__global float*)node_local_data;\n"
55 56 57 58 59 60 61 62 63 64 65 66 67
"  c[ii] = a[ii] + b[ii] + d[0];\n"
"}\n";

TaskTest::TaskTest() {
  CreateUnit("mtapi opencl task test").Add(&TaskTest::TestBasic, this);
}

void TaskTest::TestBasic() {
  mtapi_status_t status;
  mtapi_job_hndl_t job;
  mtapi_task_hndl_t task;
  mtapi_action_hndl_t action;

68 69 70
  const int kElements = 64;
  float arguments[kElements * 2];
  float results[kElements];
71

72 73 74
  for (int ii = 0; ii < kElements; ii++) {
    arguments[ii] = static_cast<float>(ii);
    arguments[ii + kElements] = static_cast<float>(ii);
75 76 77
  }

  mtapi_opencl_plugin_initialize(&status);
78 79 80 81
  if (status == MTAPI_ERR_FUNC_NOT_IMPLEMENTED) {
    // OpenCL unavailable
    return;
  }
82 83 84
  MTAPI_CHECK_STATUS(status);

  mtapi_initialize(
85 86
    OPENCL_DOMAIN,
    OPENCL_NODE,
87 88 89 90 91 92 93
    MTAPI_NULL,
    MTAPI_NULL,
    &status);
  MTAPI_CHECK_STATUS(status);

  float node_local = 1.0f;
  action = mtapi_opencl_action_create(
94
    OPENCL_JOB,
95 96 97 98 99 100
    kernel, "test", 32, 4,
    &node_local, sizeof(float),
    &status);
  MTAPI_CHECK_STATUS(status);

  status = MTAPI_ERR_UNKNOWN;
101
  job = mtapi_job_get(OPENCL_JOB, OPENCL_DOMAIN, &status);
102 103 104 105 106
  MTAPI_CHECK_STATUS(status);

  task = mtapi_task_start(
    MTAPI_TASK_ID_NONE,
    job,
107 108
    arguments, kElements * 2 * sizeof(float),
    results, kElements*sizeof(float),
109 110 111 112 113 114 115 116
    MTAPI_DEFAULT_TASK_ATTRIBUTES,
    MTAPI_GROUP_NONE,
    &status);
  MTAPI_CHECK_STATUS(status);

  mtapi_task_wait(task, MTAPI_INFINITE, &status);
  MTAPI_CHECK_STATUS(status);

117
  for (int ii = 0; ii < kElements; ii++) {
118 119 120
    PT_EXPECT_EQ(results[ii], ii * 2 + 1);
  }

121 122 123 124 125
  mtapi_action_delete(action, MTAPI_INFINITE, &status);
  MTAPI_CHECK_STATUS(status);

  mtapi_finalize(&status);
  MTAPI_CHECK_STATUS(status);
126 127 128

  mtapi_opencl_plugin_finalize(&status);
  MTAPI_CHECK_STATUS(status);
129
}