2021-12-07 23:32:00 +08:00
|
|
|
/*
|
2022-02-21 21:33:41 +08:00
|
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
2021-12-07 23:32:00 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "shared/source/gmm_helper/gmm_helper.h"
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
struct MockGmmHelper : GmmHelper {
|
|
|
|
using GmmHelper::addressWidth;
|
2022-02-21 21:33:41 +08:00
|
|
|
using GmmHelper::allResourcesUncached;
|
2021-12-07 23:32:00 +08:00
|
|
|
};
|
|
|
|
} // namespace NEO
|