mirror of
https://github.com/mozilla/DeepSpeech.git
synced 2025-10-26 11:19:39 +00:00
53 lines
1.3 KiB
Bash
Executable File
53 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
cuda=$1
|
|
runtime=$1
|
|
|
|
source $(dirname "$0")/tc-tests-utils.sh
|
|
|
|
source ${DS_ROOT_TASK}/DeepSpeech/tf/tc-vars.sh
|
|
|
|
BAZEL_TARGETS="
|
|
//native_client:libdeepspeech.so
|
|
//native_client:generate_trie
|
|
"
|
|
|
|
if [ "${cuda}" = "--cuda" ]; then
|
|
BAZEL_ENV_FLAGS="TF_NEED_CUDA=1 ${TF_CUDA_FLAGS}"
|
|
BAZEL_BUILD_FLAGS="${BAZEL_CUDA_FLAGS} ${BAZEL_EXTRA_FLAGS} ${BAZEL_OPT_FLAGS}"
|
|
PROJECT_NAME="DeepSpeech-GPU"
|
|
else
|
|
PROJECT_NAME="DeepSpeech"
|
|
if [ "${runtime}" = "tflite" ]; then
|
|
BAZEL_BUILD_TFLITE="--define=runtime=tflite"
|
|
fi;
|
|
BAZEL_BUILD_FLAGS="${BAZEL_BUILD_TFLITE} ${BAZEL_OPT_FLAGS} ${BAZEL_EXTRA_FLAGS}"
|
|
BAZEL_ENV_FLAGS="TF_NEED_CUDA=0"
|
|
fi
|
|
|
|
SYSTEM_TARGET=host-win
|
|
|
|
do_bazel_build
|
|
|
|
if [ "${cuda}" = "--cuda" ]; then
|
|
cp ${DS_ROOT_TASK}/DeepSpeech/tf/bazel-bin/native_client/liblibdeepspeech.so.ifso ${DS_ROOT_TASK}/DeepSpeech/tf/bazel-bin/native_client/libdeepspeech.so.if.lib
|
|
fi
|
|
|
|
export PATH=$PATH:$(cygpath ${ChocolateyInstall})/bin:'/c/Program Files/nodejs/'
|
|
|
|
do_deepspeech_binary_build
|
|
|
|
# Those are the versions available on NuGet.org
|
|
export SUPPORTED_PYTHON_VERSIONS="3.5.4 3.6.7 3.7.1"
|
|
do_deepspeech_python_build "${cuda}"
|
|
|
|
do_deepspeech_nodejs_build "${cuda}"
|
|
|
|
do_deepspeech_netframework_build
|
|
|
|
do_nuget_build "${PROJECT_NAME}"
|
|
|
|
shutdown_bazel
|