Files
compute-runtime/shared/test/unit_test/mocks/mock_compiler_interface.cpp
Mateusz Hoppe e5072225a5 Pass optimization disable option based on debugger query
Related-To: NEO-4404

Change-Id: Ie6de202dc8e818a540983b8e5fa6c789b7c15b98
Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
2020-04-09 19:02:02 +02:00

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