diff options
author | Parichay Kapoor <pk.kapoor@samsung.com> | 2019-05-17 16:30:31 +0900 |
---|---|---|
committer | Parichay Kapoor <pk.kapoor@samsung.com> | 2019-05-17 16:30:31 +0900 |
commit | 94e8f8030ac0be75fb6206c0bf860e5eb873b4e9 (patch) | |
tree | 5c04e9f1447247c4c48e2bf2697d04dcb2b67601 | |
parent | 955ff1cbb9a9a2eabd020360d88ee9f0203dcd93 (diff) | |
download | pytorch-94e8f8030ac0be75fb6206c0bf860e5eb873b4e9.tar.gz pytorch-94e8f8030ac0be75fb6206c0bf860e5eb873b4e9.tar.bz2 pytorch-94e8f8030ac0be75fb6206c0bf860e5eb873b4e9.zip |
Adding a copy of .gitignore, which will be present with launchpad built
Signed-off-by: Parichay Kapoor <pk.kapoor@samsung.com>
-rw-r--r-- | CleanList.txt | 241 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 242 insertions, 1 deletions
diff --git a/CleanList.txt b/CleanList.txt new file mode 100644 index 0000000000..0328dfec07 --- /dev/null +++ b/CleanList.txt @@ -0,0 +1,241 @@ +# READ THIS BEFORE YOU REFACTOR ME +# +# setup.py uses the list of patterns in this file to decide +# what to delete, but it's not 100% sound. So, for example, +# if you delete aten/build/ because it's redundant with build/, +# aten/build/ will stop being cleaned. So be careful when +# refactoring this file! + +## PyTorch + +.mypy_cache +*/*.pyc +*/*.so* +*/**/__pycache__ +*/**/*.dylib* +*/**/*.pyc +*/**/*.pyd +*/**/*.so* +*/**/**/*.pyc +*/**/**/**/*.pyc +*/**/**/**/**/*.pyc +aten/build/ +aten/src/ATen/Config.h +aten/src/ATen/cuda/CUDAConfig.h +caffe2/cpp_test/ +dist/ +docs/src/**/* +docs/cpp/build +docs/cpp/source/api +test/.coverage +test/.hypothesis/ +test/cpp/api/mnist +test/custom_operator/model.pt +test/data/gpu_tensors.pt +test/data/legacy_modules.t7 +test/data/legacy_serialized.pt +test/data/linear.pt +dropout_model.pt +test/generated_type_hints_smoketest.py +test/htmlcov +test/cpp_extensions/install/ +third_party/build/ +tools/shared/_utils_internal.py +torch.egg-info/ +torch/__init__.pyi +torch/csrc/autograd/generated/* +torch/csrc/cudnn/cuDNN.cpp +torch/csrc/generated +torch/csrc/generic/TensorMethods.cpp +torch/csrc/jit/generated/* +torch/csrc/jit/fuser/config.h +torch/csrc/nn/THCUNN.cpp +torch/csrc/nn/THCUNN.cwrap +torch/csrc/nn/THNN_generic.cpp +torch/csrc/nn/THNN_generic.cwrap +torch/csrc/nn/THNN_generic.h +torch/csrc/nn/THNN.cpp +torch/csrc/nn/THNN.cwrap +torch/bin/ +torch/cmake/ +torch/lib/*.a* +torch/lib/*.dll* +torch/lib/*.exe* +torch/lib/*.dylib* +torch/lib/*.h +torch/lib/*.lib +torch/lib/*.so* +torch/lib/protobuf*.pc +torch/lib/build +torch/lib/caffe2/ +torch/lib/cmake +torch/lib/include +torch/lib/pkgconfig +torch/lib/protoc +torch/lib/protobuf/ +torch/lib/tmp_install +torch/lib/torch_shm_manager +torch/lib/site-packages/ +torch/lib/python* +torch/lib64 +torch/include/ +torch/share/ +torch/test/ +torch/version.py +# Root level file used in CI to specify certain env configs. +# E.g., see .circleci/config.yaml +env + +# IPython notebook checkpoints +.ipynb_checkpoints + +# Editor temporaries +*.swn +*.swo +*.swp +*.swm +*~ + +# macOS dir files +.DS_Store + +# Symbolic files +tools/shared/cwrap_common.py + +# Ninja files +.ninja_deps +.ninja_log +compile_commands.json +*.egg-info/ +docs/source/scripts/activation_images/ + +## General + +# Compiled Object files +*.slo +*.lo +*.o +*.cuo +*.obj + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Compiled protocol buffers +*.pb.h +*.pb.cc +*_pb2.py + +# Compiled python +*.pyc +*.pyd + +# Compiled MATLAB +*.mex* + +# IPython notebook checkpoints +.ipynb_checkpoints + +# Editor temporaries +*.swn +*.swo +*.swp +*~ + +# Sublime Text settings +*.sublime-workspace +*.sublime-project + +# Eclipse Project settings +*.*project +.settings + +# QtCreator files +*.user + +# PyCharm files +.idea + +# OSX dir files +.DS_Store + +# GDB history +.gdb_history + +## Caffe2 + +# build, distribute, and bins (+ python proto bindings) +build +build_host_protoc +build_android +build_ios +/build_* +.build_debug/* +.build_release/* +distribute/* +*.testbin +*.bin +cmake_build +.cmake_build +gen +.setuptools-cmake-build +.pytest_cache +aten/build/* + +# Bram +plsdontbreak + +# Generated documentation +docs/_site +docs/gathered +_site +doxygen +docs/dev + +# LevelDB files +*.sst +*.ldb +LOCK +CURRENT +MANIFEST-* + +# generated version file +caffe2/version.py + +# setup.py intermediates +.eggs +caffe2.egg-info + +# Atom/Watchman required file +.watchmanconfig + +# Files generated by CLion +cmake-build-debug + +# Files generated by ctags +CTAGS +tags +TAGS + +# BEGIN NOT-CLEAN-FILES (setup.py handles this marker. Do not change.) +# +# Below files are not deleted by "setup.py clean". + +# Visual Studio Code files +.vscode +.vs + +# YouCompleteMe config file +.ycm_extra_conf.py + +# Files generated when a patch is rejected +*.orig +*.rej @@ -463,7 +463,7 @@ class clean(distutils.command.clean.clean): def run(self): import glob import re - with open('.gitignore', 'r') as f: + with open('CleanList.txt', 'r') as f: ignores = f.read() pat = re.compile(r'^#( BEGIN NOT-CLEAN-FILES )?') for wildcard in filter(None, ignores.split('\n')): |