Files
compute-runtime/unit_tests/mocks/mock_gmm_memory_base.cpp
Mateusz Jablonski f030f6c67a Dont access global platform in GmmMemory
Related-To: NEO-3007
Change-Id: I5c8ed5cd9a3f78b3b67a63e9281f6cc6af4ffd1b
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2020-01-27 10:21:51 +01:00

15 lines
273 B
C++

/*
* Copyright (C) 2018-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "mock_gmm_memory.h"
namespace NEO {
GmmMemory *GmmMemory::create(GmmClientContext *gmmClientContext) {
return new MockGmmMemory(gmmClientContext);
}
} // namespace NEO