2020-09-23 20:07:07 +08:00
|
|
|
/*
|
2021-05-17 02:51:16 +08:00
|
|
|
* Copyright (C) 2021 Intel Corporation
|
2020-09-23 20:07:07 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2021-01-21 20:10:13 +08:00
|
|
|
#include "shared/test/common/mocks/mock_compiler_interface.h"
|
2020-09-23 20:07:07 +08:00
|
|
|
|
|
|
|
#include "cif/common/cif_main.h"
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
class MockCompilerInterfaceSpirv : public MockCompilerInterface {
|
|
|
|
TranslationOutput::ErrorCode compile(const NEO::Device &device, const TranslationInput &input, TranslationOutput &output) override;
|
|
|
|
TranslationOutput::ErrorCode build(const NEO::Device &device, const TranslationInput &input, TranslationOutput &out) override;
|
|
|
|
};
|
|
|
|
} // namespace NEO
|