mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 23:33:20 +08:00
Split programVfeState function. Related-To: NEO-4940, NEO-4574 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
19 lines
256 B
C++
19 lines
256 B
C++
/*
|
|
* Copyright (C) 2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
|
|
struct StreamProperties {
|
|
bool setCooperativeKernelProperties(bool isCooperative) {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
} // namespace NEO
|