We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b09cd8 commit 63a47b3Copy full SHA for 63a47b3
extension/benchmark/android/benchmark/android-llm-device-farm-test-spec.yml.j2
@@ -12,9 +12,10 @@ phases:
12
- curl -s --fail '{{ model_path }}' -o model.zip
13
- unzip model.zip && ls -la
14
15
- # Copy the model to sdcard
16
- - adb -s $DEVICEFARM_DEVICE_UDID push -q *.bin /sdcard
17
- - adb -s $DEVICEFARM_DEVICE_UDID push -q *.pte /sdcard
+ # Copy the model to sdcard. This prints too much progress info when the files
+ # are large, so it's better to just silent them
+ - adb -s $DEVICEFARM_DEVICE_UDID push *.bin /sdcard > /dev/null && echo OK
18
+ - adb -s $DEVICEFARM_DEVICE_UDID push *.pte /sdcard > /dev/null && echo OK
19
20
# Prepare the model and the tokenizer
21
- adb -s $DEVICEFARM_DEVICE_UDID shell "ls -la /sdcard/"
0 commit comments