mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-23 03:01:20 +08:00
Change-Id: Idba8e00de19be70d08b82903090a3d3ee62743c5 Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
16 lines
437 B
C++
16 lines
437 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/gmm_helper/page_table_mngr.h"
|
|
|
|
namespace OCLRT {
|
|
GmmPageTableMngr *GmmPageTableMngr::create(GMM_DEVICE_CALLBACKS_INT *deviceCb, unsigned int translationTableFlags, GMM_TRANSLATIONTABLE_CALLBACKS *translationTableCb) {
|
|
return new GmmPageTableMngr(deviceCb, translationTableFlags, translationTableCb);
|
|
}
|
|
|
|
} // namespace OCLRT
|