mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
Change-Id: I18692a444663c11103f8991415b38000c633f24a Signed-off-by: Piotr Fusik <piotr.fusik@intel.com>
18 lines
318 B
C++
18 lines
318 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace OCLRT {
|
|
|
|
constexpr uint32_t numGpgpuEngineInstances = 2u;
|
|
constexpr uint32_t maxOsContextCount = numGpgpuEngineInstances;
|
|
constexpr uint32_t maxHandleCount = 1u;
|
|
|
|
} // namespace OCLRT
|