Files
compute-runtime/shared/test/common/fixtures/mock_execution_environment_gmm_fixture.h
Piotr Obst acf3e58a64 Move wddm_fixture.h and releted files from opencl to shared
Related-To: NEO-5894
Signed-off-by: Piotr Obst <piotr.obst@intel.com>
2021-07-07 12:30:12 +02:00

29 lines
488 B
C++

/*
* Copyright (C) 2020-2021 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