2020-03-17 19:37:38 +08:00
|
|
|
/*
|
2021-08-30 16:44:44 +08:00
|
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
2020-03-17 19:37:38 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-08-30 16:44:44 +08:00
|
|
|
#pragma once
|
2020-03-17 19:37:38 +08:00
|
|
|
#include "opencl/source/execution_environment/cl_execution_environment.h"
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
class MockClExecutionEnvironment : public ClExecutionEnvironment {
|
|
|
|
public:
|
|
|
|
using ClExecutionEnvironment::asyncEventsHandler;
|
|
|
|
using ClExecutionEnvironment::ClExecutionEnvironment;
|
|
|
|
};
|
2021-08-30 16:44:44 +08:00
|
|
|
} // namespace NEO
|