compute-runtime/runtime/os_interface/linux/os_context_linux.cpp

18 lines
402 B
C++

/*
* Copyright (C) 2018 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "runtime/os_interface/os_context.h"
namespace OCLRT {
class OsContext::OsContextImpl {};
OsContext::OsContext(OSInterface *osInterface, uint32_t contextId) : contextId(contextId) {
osContextImpl = std::make_unique<OsContext::OsContextImpl>();
}
OsContext::~OsContext() = default;
} // namespace OCLRT