49 lines
1.6 KiB
Bash
Executable File
49 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
pushd $(cd $(dirname ${0})/..; pwd) > /dev/null
|
|
|
|
src_dir=./third_party/source/executorch
|
|
|
|
case "${OSTYPE}" in
|
|
msys*|cygwin*|mingw*) python="winpty python";;
|
|
*) python="python";;
|
|
esac
|
|
|
|
clean() {
|
|
echo "executorch clean"
|
|
rm -rf "${src_dir}"
|
|
}
|
|
|
|
sync() {
|
|
echo "executorch sync"
|
|
if [ ! -d "${src_dir}" ]; then
|
|
git clone --quiet --depth=1 --branch main --single-branch https://github.com/pytorch/executorch.git "${src_dir}"
|
|
else
|
|
git -C "${src_dir}" fetch --quiet --depth=1 origin main
|
|
git -C "${src_dir}" reset --quiet --hard FETCH_HEAD
|
|
git -C "${src_dir}" gc --quiet --prune=all
|
|
fi
|
|
# mkdir -p "${src_dir}/schema"
|
|
# curl --silent --show-error --location --output "${src_dir}/schema/scalar_type.fbs" "https://github.com/pytorch/executorch/raw/main/schema/scalar_type.fbs"
|
|
# curl --silent --show-error --location --output "${src_dir}/schema/program.fbs" "https://github.com/pytorch/executorch/raw/main/schema/program.fbs"
|
|
}
|
|
|
|
schema() {
|
|
echo "executorch schema"
|
|
[[ $(grep -U $'\x0D' ./source/executorch-schema.js) ]] && crlf=1
|
|
node ./tools/flatc.js --out ./source/executorch-schema.js ${src_dir}/schema/program.fbs ${src_dir}/backends/xnnpack/serialization/schema.fbs ${src_dir}/backends/vulkan/serialization/schema.fbs
|
|
if [[ -n ${crlf} ]]; then
|
|
unix2dos --quiet --newfile ./source/executorch-schema.js ./source/executorch-schema.js
|
|
fi
|
|
}
|
|
|
|
while [ "$#" != 0 ]; do
|
|
command="$1" && shift
|
|
case "${command}" in
|
|
"clean") clean;;
|
|
"sync") sync;;
|
|
"schema") schema;;
|
|
esac
|
|
done
|