mirror of
https://github.com/intel/compute-runtime.git
synced 2025-11-15 10:14:56 +08:00
30 lines
489 B
C++
30 lines
489 B
C++
/*
|
|
* Copyright (C) 2020-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
namespace NEO {
|
|
|
|
struct MockExecutionEnvironment;
|
|
class GmmHelper;
|
|
class GmmClientContext;
|
|
|
|
class MockExecutionEnvironmentGmmFixture {
|
|
protected:
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
std::unique_ptr<MockExecutionEnvironment> executionEnvironment;
|
|
|
|
public:
|
|
GmmHelper *getGmmHelper();
|
|
GmmClientContext *getGmmClientContext();
|
|
};
|
|
} // namespace NEO
|