Generate spirv builtins without specifying a device

Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
This commit is contained in:
Filip Hazubski
2020-12-11 13:01:39 +00:00
committed by Compute-Runtime-Automation
parent 4f54ea5c87
commit b0ed0dcc9b
2 changed files with 6 additions and 2 deletions

View File

@@ -26,6 +26,11 @@ bool supportsSvm(const Device *pDevice);
} // namespace NEO
#define REQUIRE_32BIT_OR_SKIP() \
if (NEO::TestChecks::is64Bit() == true) { \
GTEST_SKIP(); \
}
#define REQUIRE_64BIT_OR_SKIP() \
if (NEO::TestChecks::is64Bit() == false) { \
GTEST_SKIP(); \