* Added CUDA support * Performance improvements * API improvements * Added "depth" parameter to GEMM * Android cross-compilation
50 lines
917 B
C++
50 lines
917 B
C++
#include "isaac/driver/context.h"
|
|
#include <iostream>
|
|
|
|
namespace isaac
|
|
{
|
|
|
|
namespace driver
|
|
{
|
|
|
|
|
|
Context::Context(Device const & device) : backend_(device.backend_), device_(device), h_(backend_)
|
|
{
|
|
#ifndef ANDROID
|
|
if (std::getenv("ISAAC_CACHE_PATH"))
|
|
cache_path_ = std::getenv("ISAAC_CACHE_PATH");
|
|
else
|
|
#endif
|
|
cache_path_ = "";
|
|
|
|
switch(backend_)
|
|
{
|
|
#ifdef ISAAC_WITH_CUDA
|
|
case CUDA:
|
|
cuda::check(cuCtxCreate(h_.cu.get(), CU_CTX_SCHED_AUTO, *device.h_.cu));
|
|
break;
|
|
#endif
|
|
case OPENCL:
|
|
*h_.cl = cl::Context(std::vector<cl::Device>(1, *device_.h_.cl));
|
|
break;
|
|
default:
|
|
throw;
|
|
}
|
|
}
|
|
|
|
bool Context::operator==(Context const & other) const
|
|
{ return h_==other.h_; }
|
|
|
|
bool Context::operator<(Context const & other) const
|
|
{ return h_<other.h_; }
|
|
|
|
Device const & Context::device() const
|
|
{ return device_; }
|
|
|
|
backend_type Context::backend() const
|
|
{ return backend_; }
|
|
|
|
|
|
}
|
|
}
|