| 88 | } |
| 89 | |
| 90 | void CLDeviceBackend::initialize_backend() |
| 91 | { |
| 92 | // Setup Scheduler |
| 93 | CLScheduler::get().default_init(&_tuner, &_gemm_heuristics, _backend_type); |
| 94 | // Create allocator with new context |
| 95 | _allocator = std::make_unique<CLBufferAllocator>(); |
| 96 | } |
| 97 | |
| 98 | void CLDeviceBackend::release_backend_context(GraphContext &ctx) |
| 99 | { |
nothing calls this directly
no test coverage detected