mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 09:58:55 +08:00
Related-To: NEO-4404 Change-Id: Ie6de202dc8e818a540983b8e5fa6c789b7c15b98 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
17 lines
350 B
C++
17 lines
350 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/test/unit_test/mocks/mock_compiler_interface.h"
|
|
|
|
#include "opencl/test/unit_test/mocks/mock_sip.h"
|
|
|
|
namespace NEO {
|
|
std::vector<char> MockCompilerInterface::getDummyGenBinary() {
|
|
return MockSipKernel::getDummyGenBinary();
|
|
}
|
|
} // namespace NEO
|