2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2018-09-18 15:11:08 +08:00
|
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
#pragma once
|
2018-01-24 04:42:40 +08:00
|
|
|
#include "runtime/gmm_helper/gmm_memory_base.h"
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
namespace OCLRT {
|
2018-01-24 04:42:40 +08:00
|
|
|
class GmmMemory : public GmmMemoryBase {
|
2017-12-21 07:45:38 +08:00
|
|
|
public:
|
|
|
|
static GmmMemory *create();
|
|
|
|
virtual ~GmmMemory() = default;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
GmmMemory() = default;
|
|
|
|
};
|
|
|
|
} // namespace OCLRT
|