Skip to content

Commit 6522204

Browse files
committed
Remove tuning level from GPU options
1 parent 7937cf7 commit 6522204

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,9 @@ optimization { execution_accelerators {
142142
parameters { key: "reduce_fp32_to_fp16" value: "<on/off>" }
143143
parameters { key: "reduce_fp32_to_bf16" value: "<on/off>" }
144144
parameters { key: "fast_math_enabled" value: "<on/off>" }
145-
parameters { key: "tuning_level" value: "<0-3>" }
146145
}]
147146
}}
148147
```
149-
Note that for MALI GPU tuning level the value corresponds to the following: `(0=UseOnly(default) | 1=RapidTuning | 2=NormalTuning | 3=ExhaustiveTuning)`
150148

151149
### XNNPACK Delegate Optimization Options
152150
Users also have the ability to specify XNNPACK specific optimizations.

src/tflite.cc

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -352,14 +352,6 @@ ModelState::LoadModel(
352352
"Please pass on/off for fast_math_enabled. '") +
353353
value_string + "' is requested");
354354
}
355-
} else if (param_key == "tuning_level") {
356-
RETURN_IF_ERROR(params.MemberAsString(
357-
param_key.c_str(), &value_string));
358-
RETURN_IF_ERROR(ParseIntValue(value_string, &tuning_level));
359-
armnn::BackendOptions option(
360-
"GpuAcc", {{"TuningLevel", tuning_level}});
361-
armnn_optimizer_options_gpu_.m_ModelOptions.push_back(
362-
option);
363355
} else {
364356
return TRITONSERVER_ErrorNew(
365357
TRITONSERVER_ERROR_INVALID_ARG,

0 commit comments

Comments
 (0)