mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
refactor: change parameter names into more meaningful
- change additional size into local region size - change walk order into dispatch walk order to distinguish for local id walk Related-To: NEO-13350 Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
b56d4324c5
commit
6b7235cd6c
@@ -43,11 +43,11 @@ enum class RequiredDispatchWalkOrder : uint32_t {
|
||||
additional
|
||||
};
|
||||
|
||||
static constexpr uint32_t additionalKernelLaunchSizeParamNotSet = 0;
|
||||
static constexpr uint32_t localRegionSizeParamNotSet = 0;
|
||||
|
||||
namespace EncodeParamsApiMappings {
|
||||
static constexpr std::array<NEO::RequiredPartitionDim, 3> partitionDim = {{RequiredPartitionDim::x, NEO::RequiredPartitionDim::y, NEO::RequiredPartitionDim::z}};
|
||||
static constexpr std::array<NEO::RequiredDispatchWalkOrder, 3> walkOrder = {{NEO::RequiredDispatchWalkOrder::x, NEO::RequiredDispatchWalkOrder::y, NEO::RequiredDispatchWalkOrder::additional}};
|
||||
static constexpr std::array<NEO::RequiredDispatchWalkOrder, 3> dispatchWalkOrder = {{NEO::RequiredDispatchWalkOrder::x, NEO::RequiredDispatchWalkOrder::y, NEO::RequiredDispatchWalkOrder::additional}};
|
||||
} // namespace EncodeParamsApiMappings
|
||||
|
||||
} // namespace NEO
|
||||
|
||||
Reference in New Issue
Block a user