mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 17:39:51 +08:00
Change-Id: I07fbde14a0d3be801087561b8460b15b857c3f2e Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
17 lines
325 B
C++
17 lines
325 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/test/unit_test/test_macros/test_checks.h"
|
|
|
|
#include "opencl/source/cl_device/cl_device.h"
|
|
|
|
using namespace NEO;
|
|
|
|
bool TestChecks::supportsSvm(const ClDevice *pClDevice) {
|
|
return supportsSvm(&pClDevice->getDevice());
|
|
}
|