mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

This commit decouples the logic for AUX resolves from set kernel arg handlers. Related-To: NEO-5107 Change-Id: I4c2912dc18633bcaefddb03cc6966e859d95262c Signed-off-by: Slawomir Milczarek <slawomir.milczarek@intel.com>
58 lines
1.9 KiB
C++
58 lines
1.9 KiB
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
namespace NEO {
|
|
class ClDevice;
|
|
class Context;
|
|
struct HardwareInfo;
|
|
|
|
namespace TestChecks {
|
|
bool supportsSvm(const ClDevice *pClDevice);
|
|
bool supportsImages(const Context *pContext);
|
|
bool supportsOcl21(const Context *pContext);
|
|
bool supportsOcl21(const std::unique_ptr<HardwareInfo> &pHardwareInfo);
|
|
bool supportsDeviceEnqueue(const ClDevice *pClDevice);
|
|
bool supportsDeviceEnqueue(const Context *pContext);
|
|
bool supportsDeviceEnqueue(const std::unique_ptr<HardwareInfo> &pHardwareInfo);
|
|
bool supportsPipes(const ClDevice *pClDevice);
|
|
bool supportsAuxResolves();
|
|
} // namespace TestChecks
|
|
|
|
} // namespace NEO
|
|
|
|
#include "shared/test/unit_test/test_macros/test_checks_shared.h"
|
|
|
|
#define REQUIRE_IMAGES_OR_SKIP(param) \
|
|
if (NEO::TestChecks::supportsImages(param) == false) { \
|
|
GTEST_SKIP(); \
|
|
}
|
|
|
|
#define REQUIRE_IMAGE_SUPPORT_OR_SKIP(param) \
|
|
auto hwInfo = castToObject<Context>(param)->getDevice(0)->getHardwareInfo(); \
|
|
if (!hwInfo.capabilityTable.supportsImages) { \
|
|
GTEST_SKIP(); \
|
|
}
|
|
|
|
#define REQUIRE_OCL_21_OR_SKIP(param) \
|
|
if (NEO::TestChecks::supportsOcl21(param) == false) { \
|
|
GTEST_SKIP(); \
|
|
}
|
|
|
|
#define REQUIRE_DEVICE_ENQUEUE_OR_SKIP(param) \
|
|
if (NEO::TestChecks::supportsDeviceEnqueue(param) == false) { \
|
|
GTEST_SKIP(); \
|
|
}
|
|
|
|
#define REQUIRE_AUX_RESOLVES() \
|
|
if (NEO::TestChecks::supportsAuxResolves() == false) { \
|
|
GTEST_SKIP(); \
|
|
}
|