mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-28 16:48:45 +08:00
store them in one struct expect that global state is restored on test end Related-To: NEO-4207 Change-Id: Icd1db59598f464a34608290d6023405cf7f246f0 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
19 lines
453 B
C++
19 lines
453 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
class CommandStreamReceiver;
|
|
class ExecutionEnvironment;
|
|
|
|
extern CommandStreamReceiver *createCommandStream(ExecutionEnvironment &executionEnvironment, uint32_t rootDeviceIndex);
|
|
extern bool getDevices(size_t &numDevicesReturned, ExecutionEnvironment &executionEnvironment);
|
|
} // namespace NEO
|