Skip to content

Files

This branch is 11437 commits behind maajidkhann/pytorch:main.

scripts

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Apr 21, 2024
Apr 23, 2024
May 27, 2024
Jul 28, 2022
Jul 27, 2023
Dec 2, 2023
Mar 12, 2024
May 27, 2024
Mar 6, 2021
Sep 28, 2017
Mar 30, 2021
Mar 30, 2021
Nov 18, 2022
May 29, 2024
Jan 19, 2024
Sep 5, 2018
May 29, 2024
Nov 2, 2019
May 29, 2024
Sep 10, 2020
Mar 6, 2021
May 4, 2024
May 4, 2024
Aug 30, 2019
Apr 21, 2024
May 29, 2024
Jun 7, 2024
Dec 18, 2023
Mar 18, 2018
Mar 27, 2018
Mar 27, 2018
Oct 6, 2023

This directory contains the useful tools.

build_android.sh

This script is to build PyTorch/Caffe2 library for Android. Take the following steps to start the build:

  • set ANDROID_NDK to the location of ndk
export ANDROID_NDK=YOUR_NDK_PATH
  • run build_android.sh
#in your PyTorch root directory
bash scripts/build_android.sh

If succeeded, the libraries and headers would be generated to build_android/install directory. You can then copy these files from build_android/install to your Android project for further usage.

You can also override the cmake flags via command line, e.g., following command will also compile the executable binary files:

bash scripts/build_android.sh -DBUILD_BINARY=ON

build_ios.sh

This script is to build PyTorch/Caffe2 library for iOS, and can only be performed on macOS. Take the following steps to start the build:

  • Install Xcode from App Store, and configure "Command Line Tools" properly on Xcode.
  • Install the dependencies:
brew install cmake automake libtool
  • run build_ios.sh
#in your PyTorch root directory
bash scripts/build_ios.sh

If succeeded, the libraries and headers would be generated to build_ios/install directory. You can then copy these files to your Xcode project for further usage.