2021-05-28 01:44:47 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "shared/source/os_interface/linux/os_context_linux.h"
|
|
|
|
#include "shared/source/os_interface/os_context.h"
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
2021-08-12 01:36:00 +08:00
|
|
|
OsContext *OsContext::create(OSInterface *osInterface, uint32_t contextId, const EngineDescriptor &engineDescriptor) {
|
|
|
|
return OsContextLinux::create(osInterface, contextId, engineDescriptor);
|
2021-05-28 01:44:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace NEO
|