2023-06-14 16:52:36 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
2022-06-29 12:58:04 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "util/string.h"
|
|
|
|
|
#include "util/vector.h"
|
|
|
|
|
|
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
|
|
class Device;
|
|
|
|
|
class DeviceInfo;
|
|
|
|
|
class Profiler;
|
|
|
|
|
class Stats;
|
|
|
|
|
|
|
|
|
|
bool device_oneapi_init();
|
|
|
|
|
|
|
|
|
|
Device *device_oneapi_create(const DeviceInfo &info, Stats &stats, Profiler &profiler);
|
|
|
|
|
|
|
|
|
|
void device_oneapi_info(vector<DeviceInfo> &devices);
|
|
|
|
|
|
|
|
|
|
string device_oneapi_capabilities();
|
|
|
|
|
|
|
|
|
|
CCL_NAMESPACE_END
|