Swapping from abseil flags to IREE flags.
This allows us to remove the nasty --function_inputs in favor of
a repeated --function_input field.
diff --git a/docs/developing_iree/benchmarking.md b/docs/developing_iree/benchmarking.md
index b203c62..6956b67 100644
--- a/docs/developing_iree/benchmarking.md
+++ b/docs/developing_iree/benchmarking.md
@@ -33,7 +33,7 @@
--module_file=/tmp/module.fb \
--driver=vmla \
--entry_function=abs \
- --function_inputs="i32=-2"
+ --function_input=i32=-2
```
You'll see output like
@@ -80,7 +80,7 @@
--module_file=/tmp/module.fb \
--driver=vmla \
--entry_function=abs \
- --function_inputs="i32=-2"
+ --function_input=i32=-2
```
```shell
diff --git a/docs/developing_iree/developer_overview.md b/docs/developing_iree/developer_overview.md
index 13a3b69..e0caae5 100644
--- a/docs/developing_iree/developer_overview.md
+++ b/docs/developing_iree/developer_overview.md
@@ -141,7 +141,7 @@
--module_file=/tmp/simple.vmfb \
--driver=vmla \
--entry_function=abs \
- --function_inputs="i32=-2"
+ --function_input=i32=-2
```
### iree-check-module
diff --git a/docs/developing_iree/profiling_vulkan_gpu.md b/docs/developing_iree/profiling_vulkan_gpu.md
index b9421f0..8fb76b5 100644
--- a/docs/developing_iree/profiling_vulkan_gpu.md
+++ b/docs/developing_iree/profiling_vulkan_gpu.md
@@ -45,10 +45,10 @@
# Then package the Android app
$ /path/to/iree/source/iree/tools/android/run_module_app/build_apk.sh \
./build-apk \
+ --driver vulkan \
--module_file /tmp/mhlo-dot.vmfb \
--entry_function dot \
- --function_inputs_file /path/to/inputs/file \
- --driver vulkan
+ --function_input=...
```
Where `/path/to/input/file` is a file containing inputs to `dot`, for example:
diff --git a/docs/developing_iree/profiling_with_tracy.md b/docs/developing_iree/profiling_with_tracy.md
index 4d5c58f..528d731 100644
--- a/docs/developing_iree/profiling_with_tracy.md
+++ b/docs/developing_iree/profiling_with_tracy.md
@@ -137,9 +137,11 @@
```shell
TRACY_NO_EXIT=1 /data/local/tmp/iree-benchmark-module \
--driver=dylib \
- --function_inputs='1x384xi32,1x384xi32,1x384xi32' \
--module_file=/data/local/tmp/android_module.fbvm \
- --entry_function=serving_default
+ --entry_function=serving_default \
+ --function_input=1x384xi32 \
+ --function_input=1x384xi32 \
+ --function_input=1x384xi32
```
## Running the Tracy profiler UI, connecting and visualizing