mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

- address_patch.h - options.h - registered_method_dispatcher.h - grf_config.h Rename OCL_RUNTIME_PROFILING -> KMD_PROFILING Related-To: NEO-3982 Change-Id: I06cf72729e9d7d7d2ff0bd169fcbada00c4b509a Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
31 lines
630 B
C++
31 lines
630 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "core/helpers/hw_info.h"
|
|
#include "core/helpers/options.h"
|
|
#include "runtime/os_interface/device_factory.h"
|
|
#include "runtime/os_interface/windows/os_interface.h"
|
|
#include "runtime/os_interface/windows/wddm/wddm.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace NEO;
|
|
|
|
class OsInterfaceTest : public ::testing::Test {
|
|
public:
|
|
void SetUp() override {
|
|
osInterface = std::unique_ptr<OSInterface>(new OSInterface());
|
|
}
|
|
|
|
void TearDown() override {
|
|
}
|
|
|
|
std::unique_ptr<OSInterface> osInterface;
|
|
};
|