mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 05:56:36 +08:00
Change-Id: Ib22ef934492b702990ca549bab576993b0684e98 Related-To: NEO-3020 Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
18 lines
314 B
C++
18 lines
314 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
|
|
constexpr uint32_t numGpgpuEngineInstances = 3u;
|
|
constexpr uint32_t maxOsContextCount = numGpgpuEngineInstances;
|
|
constexpr uint32_t maxHandleCount = 1u;
|
|
|
|
} // namespace NEO
|