Summary: **Summary** This commit adds `tools/clang_format_new.py`, which downloads a platform-appropriate clang-format binary to a `.gitignored` location, verifies the binary by comparing its SHA1 hash to a reference hash (also included in this commit), and runs it on all files matched a specific regex in a list of whitelisted subdirectories of pytorch. This script will eventually replace `tools/clang_format.py`. **Testing** Ran the script. *No Args* ``` pytorch > ./tools/clang_format.py Downloading clang-format to /Users/<user>/Desktop/pytorch/.clang-format-bin 0% |################################################################| 100% Using clang-format located at /Users/<user>/Desktop/pytorch/.clang-format-bin/clang-format > echo $? 0 > git status <bunch of files> ``` `--diff` *mode* ``` > ./tools/clang_format.py --diff Using clang-format located at /Users/<user>/Desktop/pytorch/.clang-format-bin/clang-format Some files are not formatted correctly > echo $? 1 <format files using the script> > ./tools/clang_format.py --diff Using clang-format located at /Users/<user>/Desktop/pytorch/.clang-format-bin/clang-format All files are formatted correctly > echo $? 0 ``` Pull Request resolved: https://github.com/pytorch/pytorch/pull/34566 Differential Revision: D20431290 Pulled By: SplitInfinity fbshipit-source-id: 3966f769cfb923e58ead9376d85e97127415bdc6 |
||
|---|---|---|
| .. | ||
| appveyor | ||
| fbcode-dev-setup | ||
| model_zoo | ||
| onnx | ||
| release/promote | ||
| add_apache_header.sh | ||
| apache_header.txt | ||
| apache_python.txt | ||
| build_android.sh | ||
| build_host_protoc.sh | ||
| build_ios.sh | ||
| build_local.sh | ||
| build_mobile.sh | ||
| build_pytorch_android.sh | ||
| build_raspbian.sh | ||
| build_tegra_x1.sh | ||
| build_tizen.sh | ||
| build_windows.bat | ||
| diagnose_protobuf.py | ||
| get_python_cmake_flags.py | ||
| proto.ps1 | ||
| read_conda_versions.sh | ||
| README.md | ||
| remove_apache_header.sh | ||
| run_mobilelab.py | ||
| temp.sh | ||
| xcode_build.rb | ||
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.