Files
compute-runtime/shared/source/helpers/pipeline_select_args.h
Zbigniew Zdanowicz 218a98f7f7 Refactor of pipeline select programming
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>
2022-09-15 15:38:10 +02:00

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