diff options
author | peterjc123 <peter_jiachen@163.com> | 2018-04-03 01:53:25 +0800 |
---|---|---|
committer | Edward Z. Yang <ezyang@mit.edu> | 2018-04-02 13:53:25 -0400 |
commit | 63af898d46586d9bf0356c9ea326b3fffdac98e3 (patch) | |
tree | 910ca74790112cd864029ddf40ed0234be434417 /.gitignore | |
parent | 605307f8f3c249d9279030502d2aac98d4170b83 (diff) | |
download | pytorch-63af898d46586d9bf0356c9ea326b3fffdac98e3.tar.gz pytorch-63af898d46586d9bf0356c9ea326b3fffdac98e3.tar.bz2 pytorch-63af898d46586d9bf0356c9ea326b3fffdac98e3.zip |
Fix extension test on Windows (#5548)
* Change cpp_extensions.py to make it work on Windows
* Fix linting
* Show python paths
* Debug
* Debug 1
* set PYTHONPATH
* Add ATen into library
* expose essential libs and functions, and copy _C.lib
* Specify dir in header
* Update check_abi for MSVC
* Activate cl environment to compile cpp extensions
* change version string
* Redirect stderr to stdout
* Add monkey patch for windows
* Remove unnecessary self
* Fix various issues
* Append necessary flags
* add /MD flag to cuda
* Install ninja
* Use THP_API instead of THP_CLASS
* Beautify the paths
* Revert "Use THP_API instead of THP_CLASS"
This reverts commit dd7e74c44db48e4c5f85bb8e3c698ff9de71ba2d.
* Use THP_API instead of THP_CLASS(new)
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index a58f68a2ac..fd01d262df 100644 --- a/.gitignore +++ b/.gitignore @@ -40,6 +40,7 @@ test/.coverage */*.so* */**/*.so* */**/*.dylib* +*/**/*.pyd test/data/legacy_serialized.pt test/data/linear.pt .mypy_cache |