2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2018-09-18 15:11:08 +08:00
|
|
|
* Copyright (C) 2018 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2018-01-24 04:42:40 +08:00
|
|
|
#include "mock_gmm_memory.h"
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
namespace OCLRT {
|
|
|
|
GmmMemory *GmmMemory::create() {
|
2018-05-09 03:57:36 +08:00
|
|
|
return new MockGmmMemory();
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
|
|
|
} // namespace OCLRT
|