19 lines
382 B
Bash
Executable File
19 lines
382 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
source $(dirname "$0")/all-vars.sh
|
|
source $(dirname "$0")/all-utils.sh
|
|
source $(dirname "$0")/asserts.sh
|
|
|
|
bitrate=$1
|
|
set_ldc_sample_filename "${bitrate}"
|
|
|
|
download_material "${CI_TMP_DIR}/ds"
|
|
|
|
export PATH=${CI_TMP_DIR}/ds/:$PATH
|
|
|
|
# Bytes output mode with LDC93S1 takes too long to converge so we simply test
|
|
# that loading the model won't crash
|
|
check_versions
|