mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
This reverts commit 94d7f0c1ef9a4cb4db0eb5d6b1ffc55941cbeab1. Reverted https://github.com/pytorch/pytorch/pull/158475 on behalf of https://github.com/facebook-github-bot due to Diff reverted internally ([comment](https://github.com/pytorch/pytorch/pull/158475#issuecomment-3085447409))
8 lines
461 B
Bash
Executable File
8 lines
461 B
Bash
Executable File
find ../caffe2 -name "*.py" -exec ./remove_apache_header.sh {} \;
|
|
find ../caffe2 -name "*.h" -exec ./remove_apache_header.sh {} \;
|
|
find ../caffe2 -name "*.cc" -exec ./remove_apache_header.sh {} \;
|
|
find ../caffe2 -name "*.cpp" -exec ./remove_apache_header.sh {} \;
|
|
find ../caffe2 -name "*.cu" -exec ./remove_apache_header.sh {} \;
|
|
find ../caffe2 -name "*.mm" -exec ./remove_apache_header.sh {} \;
|
|
find ../caffe2 -name "*.m" -exec ./remove_apache_header.sh {} \;
|