From 208ad45b4b0d9ec16f3c59444b06a840986f9c94 Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 10 Sep 2020 08:12:08 -0700 Subject: [PATCH] fix scripts (#44464) Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/44464 Reviewed By: agolynski Differential Revision: D23624921 Pulled By: colesbury fbshipit-source-id: 72bed69edcf467a99eda9a3b97e894015c992dce --- scripts/build_pytorch_android.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/build_pytorch_android.sh b/scripts/build_pytorch_android.sh index 3ebc6ba82dad25..7b80965e34b5c7 100755 --- a/scripts/build_pytorch_android.sh +++ b/scripts/build_pytorch_android.sh @@ -6,17 +6,17 @@ set -eux ############################################################################## # Example usage: # - Build default AARs: -# scipts/build_pytorch_androis.sh +# scripts/build_pytorch_android.sh # # - Build for specific ABI(s): -# scipts/build_pytorch_androis.sh armeabi-v7a -# scipts/build_pytorch_androis.sh arm64-v8a,x86,x86_64 +# scripts/build_pytorch_android.sh armeabi-v7a +# scripts/build_pytorch_android.sh arm64-v8a,x86,x86_64 # # Script's workflow: # 1. Builds libtorch for android for specified android abisi (by default for all 4). # Custom list of android abis can be specified as a bash argument as comma separated list. # For example just for testing on android x86 emulator we need only x86 build. -# ./scipts/build_pytorch_androis.sh x86 +# ./scripts/build_pytorch_android.sh x86 # 2. Creates symbolic links to android/pytorch_android/src/main/jniLibs/${abi} for libtorch build output, # android/pytorch_android/src/main/cpp/libtorch_include/${abi} for headers. # 3. Runs pyotrch_android gradle build: