mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 06:24:51 +08:00
Adding new interface to cooperate with hw context state Simplify programming removing unnecessary functions Code optimization that stop using expensive call and instead stores configuration parameter Related-To: NEO-5019 Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
18 lines
342 B
C++
18 lines
342 B
C++
/*
|
|
* Copyright (C) 2019-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
struct PipelineSelectArgs {
|
|
bool systolicPipelineSelectMode = false;
|
|
bool mediaSamplerRequired = false;
|
|
bool is3DPipelineRequired = false;
|
|
bool systolicPipelineSelectSupport = false;
|
|
};
|
|
} // namespace NEO
|