| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #!/bin/bash
- set -e
- pushd $(cd $(dirname ${0})/..; pwd) > /dev/null
- bold() {
- echo "$(tty -s && tput bold)$1$(tty -s && tput sgr0)"
- }
- clean() {
- bold "caffe clean"
- rm -rf ./third_party/caffe
- }
- sync() {
- bold "caffe sync"
- mkdir -p "./third_party"
- if [ -d "./third_party/caffe" ]; then
- git -C "./third_party/caffe" pull --quiet --prune
- else
- git -C "./third_party" clone --quiet --recursive https://github.com/BVLC/caffe.git
- fi
- }
- schema() {
- bold "caffe schema"
- [[ $(file ./src/caffe-proto.js) =~ CRLF ]] && crlf=1
- sed 's/required float min = 1;/optional float min = 1;/g;s/required float max = 2;/optional float max = 2;/g' < ./third_party/caffe/src/caffe/proto/caffe.proto >./tools/caffe.proto
- npx pbjs -t static-module -w closure --no-encode --no-delimited --no-comments --no-convert --no-verify --no-create --keep-case --decode-text -r caffe -o ./src/caffe-proto.js ./tools/caffe.proto
- rm ./tools/caffe.proto
- node ./tools/update_pbjs.js array ./src/caffe-proto.js data float 1
- if [[ -n ${crlf} ]]; then
- unix2dos --quiet --newfile ./src/caffe-proto.js ./src/caffe-proto.js
- fi
- }
- while [ "$#" != 0 ]; do
- command="$1" && shift
- case "${command}" in
- "clean") clean;;
- "sync") sync;;
- "schema") schema;;
- esac
- done
|