Code quality: cleaned backend terminology

This commit is contained in:
Philippe Tillet
2015-08-03 16:05:57 -07:00
parent a8b8c684e3
commit 92d8afc888
16 changed files with 100 additions and 70 deletions

View File

@@ -18,7 +18,7 @@ namespace isaac
namespace driver
{
CommandQueue::CommandQueue(cl_command_queue const & queue, bool take_ownership) : backend_(OPENCL), context_(&backend::import(ocl::info<CL_QUEUE_CONTEXT>(queue))), device_(ocl::info<CL_QUEUE_DEVICE>(queue), false), h_(backend_, take_ownership)
CommandQueue::CommandQueue(cl_command_queue const & queue, bool take_ownership) : backend_(OPENCL), context_(&backend::contexts::import(ocl::info<CL_QUEUE_CONTEXT>(queue))), device_(ocl::info<CL_QUEUE_DEVICE>(queue), false), h_(backend_, take_ownership)
{
h_.cl() = queue;
}