mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Change-Id: I864f0dc756a7fe17a08d1bcca2d91e9b78fb730a Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
26 lines
503 B
C++
26 lines
503 B
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace OCLRT {
|
|
|
|
class Kernel;
|
|
struct HardwareInfo;
|
|
|
|
template <typename GfxFamily>
|
|
struct UnitTestHelper {
|
|
static bool isL3ConfigProgrammable();
|
|
|
|
static bool evaluateDshUsage(size_t sizeBeforeEnqueue, size_t sizeAfterEnqueue, Kernel *kernel);
|
|
|
|
static bool isPageTableManagerSupported(const HardwareInfo &hwInfo);
|
|
|
|
static bool isTimestmapPacketWriteSupported();
|
|
};
|
|
} // namespace OCLRT
|