#include #include #include "common.hpp" #include "isaac/array.h" #include "isaac/wrap/clBLAS.h" #include "isaac/driver/common.h" namespace sc = isaac; typedef isaac::int_t int_t; template void test_impl(T epsilon, simple_vector_base & cx, simple_vector_base& cy, simple_vector_base& cz, sc::array& x, sc::array& y, sc::array& z, interface_t interf) { using namespace std; int failure_count = 0; sc::numeric_type dtype = x.dtype(); sc::driver::Context const & context = x.context(); sc::driver::CommandQueue queue = sc::driver::backend::queues::get(context,0); int_t N = cz.size(); T aa = static_cast(-4.3); T bb = static_cast(3.5); isaac::value_scalar a(aa), b(bb); isaac::scalar da(a, context), db(b, context); simple_vector buffer(N); #define CONVERT #define RUN_TEST(NAME, CPU_LOOP, GPU_EXPR) \ {\ std::cout << NAME "..." << std::flush;\ for(int_t i = 0 ; i < N ; ++i)\ CPU_LOOP;\ GPU_EXPR;\ queue.synchronize();\ isaac::copy(z, buffer.data());\ CONVERT;\ if(diff(cz, buffer, epsilon))\ {\ failure_count++;\ std::cout << " [Failure!]" << std::endl;\ }\ else\ std::cout << std::endl;\ } if(queue.device().backend()==sc::driver::OPENCL && interf==clBLAS) { cl_command_queue clqueue = queue.handle().cl(); RUN_TEST("AXPY", cz[i] = a*cx[i] + cz[i], BLAS::F(clblasSaxpy, clblasDaxpy)(N, a, CHANDLE(x), x.start()[0], x.stride()[0], CHANDLE(z), z.start()[0], z.stride()[0], 1, &clqueue, 0, NULL, NULL)); RUN_TEST("COPY", cz[i] = cx[i], BLAS::F(clblasScopy, clblasDcopy)(N, CHANDLE(x), x.start()[0], x.stride()[0], CHANDLE(z), z.start()[0], z.stride()[0], 1, &clqueue, 0, NULL, NULL)); RUN_TEST("SCAL", cz[i] = a*cz[i], BLAS::F(clblasSscal, clblasDscal)(N, a, CHANDLE(z), z.start()[0], z.stride()[0], 1, &clqueue, 0, NULL, NULL)); } RUN_TEST("z = 0", cz[i] = 0, z = zeros(N, 1, dtype, context)) RUN_TEST("z = x", cz[i] = cx[i], z = x) RUN_TEST("z = -x", cz[i] = -cx[i], z = -x) RUN_TEST("z = x + y", cz[i] = cx[i] + cy[i], z = x + y) RUN_TEST("z = x - y", cz[i] = cx[i] - cy[i], z = x - y) RUN_TEST("z = x + y + z", cz[i] = cx[i] + cy[i] + cz[i], z = x + y + z) RUN_TEST("z = a*x", cz[i] = aa*cx[i], z = a*x) RUN_TEST("z = da*x", cz[i] = aa*cx[i], z = da*x) RUN_TEST("z = a*x + b*y", cz[i] = aa*cx[i] + bb*cy[i], z= a*x + b*y) RUN_TEST("z = da*x + b*y", cz[i] = aa*cx[i] + bb*cy[i], z= da*x + b*y) RUN_TEST("z = a*x + db*y", cz[i] = aa*cx[i] + bb*cy[i], z= a*x + db*y) RUN_TEST("z = da*x + db*y", cz[i] = aa*cx[i] + bb*cy[i], z= da*x + db*y) RUN_TEST("z = exp(x)", cz[i] = exp(cx[i]), z= exp(x)) RUN_TEST("z = abs(x)", cz[i] = abs(cx[i]), z= abs(x)) RUN_TEST("z = acos(x)", cz[i] = acos(cx[i]), z= acos(x)) RUN_TEST("z = asin(x)", cz[i] = asin(cx[i]), z= asin(x)) RUN_TEST("z = atan(x)", cz[i] = atan(cx[i]), z= atan(x)) RUN_TEST("z = ceil(x)", cz[i] = ceil(cx[i]), z= ceil(x)) RUN_TEST("z = cos(x)", cz[i] = cos(cx[i]), z= cos(x)) RUN_TEST("z = cosh(x)", cz[i] = cosh(cx[i]), z= cosh(x)) RUN_TEST("z = floor(x)", cz[i] = floor(cx[i]), z= floor(x)) RUN_TEST("z = log(x)", cz[i] = log(cx[i]), z= log(x)) RUN_TEST("z = log10(x)", cz[i] = log10(cx[i]), z= log10(x)) RUN_TEST("z = sin(x)", cz[i] = sin(cx[i]), z= sin(x)) RUN_TEST("z = sinh(x)", cz[i] = sinh(cx[i]), z= sinh(x)) RUN_TEST("z = sqrt(x)", cz[i] = sqrt(cx[i]), z= sqrt(x)) RUN_TEST("z = tan(x)", cz[i] = tan(cx[i]), z= tan(x)) RUN_TEST("z = tanh(x)", cz[i] = tanh(cx[i]), z= tanh(x)) RUN_TEST("z = x.*y", cz[i] = cx[i]*cy[i], z= x*y) RUN_TEST("z = x./y", cz[i] = cx[i]/cy[i], z= x/y) RUN_TEST("z = pow(x,y)", cz[i] = pow(cx[i], cy[i]), z= pow(x,y)) #undef CONVERT #define CONVERT for(int_t i = 0 ; i < N ; ++i) {cz[i] = !!cz[i] ; buffer[i] = !!buffer[i];} RUN_TEST("z = x==y", cz[i] = cx[i]==cy[i], z= cast(x==y, dtype)) RUN_TEST("z = x>=y", cz[i] = cx[i]>=cy[i], z= cast(x>=y, dtype)) RUN_TEST("z = x>y", cz[i] = cx[i]>cy[i], z= cast(x>y, dtype)) RUN_TEST("z = x<=y", cz[i] = cx[i]<=cy[i], z= cast(x<=y, dtype)) RUN_TEST("z = x 0) exit(EXIT_FAILURE); } template void test(T epsilon, sc::driver::Context const & ctx) { using isaac::_; int_t N = 10007; int_t SUBN = 7; INIT_VECTOR(N, SUBN, 5, 3, cx, x, ctx); INIT_VECTOR(N, SUBN, 7, 8, cy, y, ctx); INIT_VECTOR(N, SUBN, 3, 2, cz, z, ctx); #define TEST_OPERATIONS(TYPE, INTERF)\ test_impl(epsilon, cx_ ## TYPE, cy_ ## TYPE, cz_ ## TYPE,\ x_ ## TYPE, y_ ## TYPE, z_ ## TYPE, INTERF);\ std::cout << "> standard..." << std::endl; TEST_OPERATIONS(full, clBLAS); TEST_OPERATIONS(full, CPP); std::cout << "> slice..." << std::endl; TEST_OPERATIONS(slice, clBLAS); TEST_OPERATIONS(slice, CPP); } int main() { clblasSetup(); std::list data; sc::driver::backend::contexts::get(data); for(isaac::driver::Context const * context : data) { sc::driver::Device device = sc::driver::backend::queues::get(*context,0).device(); if(device.type() != sc::driver::Device::Type::GPU) continue; std::cout << "Device: " << device.name() << " on " << device.platform().name() << " " << device.platform().version() << std::endl; std::cout << "---" << std::endl; std::cout << ">> float" << std::endl; test(eps_float, *context); if(device.fp64_support()) { std::cout << ">> double" << std::endl; test(eps_double, *context); } std::cout << "---" << std::endl; } clblasTeardown(); return EXIT_SUCCESS; }