Commit f994c9b8 authored by Jerry Ma's avatar Jerry Ma Committed by Facebook Github Bot
Browse files

Add autogenerated cython files to gitignore (#860)

Summary:
`python setup.py build_ext --inplace` generates C++ source files directly in the Python source tree. They should most likely be ignored by git.
Pull Request resolved: https://github.com/fairinternal/fairseq-py/pull/860

Differential Revision: D17460597

Pulled By: jma127

fbshipit-source-id: 72a29d438ebb57627b68ec7e9a2a77c8a36f1c21
parent 8dbee4ab
...@@ -110,12 +110,16 @@ ENV/ ...@@ -110,12 +110,16 @@ ENV/
.mypy_cache/ .mypy_cache/
# Generated files # Generated files
fairseq/temporal_convolution_tbc /fairseq/temporal_convolution_tbc
fairseq/modules/*_layer/*_forward.cu /fairseq/modules/*_layer/*_forward.cu
fairseq/modules/*_layer/*_backward.cu /fairseq/modules/*_layer/*_backward.cu
# data # data
data-bin/ data-bin/
# reranking # reranking
examples/reranking/rerank_data /examples/reranking/rerank_data
# Cython-generated C++ source files
/fairseq/data/data_utils_fast.cpp
/fairseq/data/token_block_utils_fast.cpp
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment