mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Related-To: NEO-4207 Change-Id: If859f995aae57ac03de13d57cc5a38c97303bbb4 Signed-off-by: Andrzej Swierczynski <andrzej.swierczynski@intel.com>
16 lines
387 B
C++
16 lines
387 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/source/execution_environment/cl_execution_environment.h"
|
|
|
|
namespace NEO {
|
|
class MockClExecutionEnvironment : public ClExecutionEnvironment {
|
|
public:
|
|
using ClExecutionEnvironment::asyncEventsHandler;
|
|
using ClExecutionEnvironment::ClExecutionEnvironment;
|
|
};
|
|
} // namespace NEO
|