-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 39e5e56
Showing
4,528 changed files
with
822,447 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
docker: | ||
- image: circleci/python:3.7-node-browsers | ||
steps: | ||
- run: echo "hello world" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
--- | ||
AccessModifierOffset: -1 | ||
AlignAfterOpenBracket: AlwaysBreak | ||
AlignConsecutiveAssignments: false | ||
AlignConsecutiveDeclarations: false | ||
AlignEscapedNewlinesLeft: true | ||
AlignOperands: false | ||
AlignTrailingComments: false | ||
AllowAllParametersOfDeclarationOnNextLine: false | ||
AllowShortBlocksOnASingleLine: false | ||
AllowShortCaseLabelsOnASingleLine: false | ||
AllowShortFunctionsOnASingleLine: Empty | ||
AllowShortIfStatementsOnASingleLine: false | ||
AllowShortLoopsOnASingleLine: false | ||
AlwaysBreakAfterReturnType: None | ||
AlwaysBreakBeforeMultilineStrings: true | ||
AlwaysBreakTemplateDeclarations: true | ||
BinPackArguments: false | ||
BinPackParameters: false | ||
BraceWrapping: | ||
AfterClass: false | ||
AfterControlStatement: false | ||
AfterEnum: false | ||
AfterFunction: false | ||
AfterNamespace: false | ||
AfterObjCDeclaration: false | ||
AfterStruct: false | ||
AfterUnion: false | ||
BeforeCatch: false | ||
BeforeElse: false | ||
IndentBraces: false | ||
BreakBeforeBinaryOperators: None | ||
BreakBeforeBraces: Attach | ||
BreakBeforeTernaryOperators: true | ||
BreakConstructorInitializersBeforeComma: false | ||
BreakAfterJavaFieldAnnotations: false | ||
BreakStringLiterals: false | ||
ColumnLimit: 80 | ||
CommentPragmas: '^ IWYU pragma:' | ||
CompactNamespaces: false | ||
ConstructorInitializerAllOnOneLineOrOnePerLine: true | ||
ConstructorInitializerIndentWidth: 4 | ||
ContinuationIndentWidth: 4 | ||
Cpp11BracedListStyle: true | ||
DerivePointerAlignment: false | ||
DisableFormat: false | ||
ForEachMacros: [ FOR_EACH_RANGE, FOR_EACH, ] | ||
IncludeCategories: | ||
- Regex: '^<.*\.h(pp)?>' | ||
Priority: 1 | ||
- Regex: '^<.*' | ||
Priority: 2 | ||
- Regex: '.*' | ||
Priority: 3 | ||
IndentCaseLabels: true | ||
IndentWidth: 2 | ||
IndentWrappedFunctionNames: false | ||
KeepEmptyLinesAtTheStartOfBlocks: false | ||
MacroBlockBegin: '' | ||
MacroBlockEnd: '' | ||
MaxEmptyLinesToKeep: 1 | ||
NamespaceIndentation: None | ||
ObjCBlockIndentWidth: 2 | ||
ObjCSpaceAfterProperty: false | ||
ObjCSpaceBeforeProtocolList: false | ||
PenaltyBreakBeforeFirstCallParameter: 1 | ||
PenaltyBreakComment: 300 | ||
PenaltyBreakFirstLessLess: 120 | ||
PenaltyBreakString: 1000 | ||
PenaltyExcessCharacter: 1000000 | ||
PenaltyReturnTypeOnItsOwnLine: 2000000 | ||
PointerAlignment: Left | ||
ReflowComments: true | ||
SortIncludes: true | ||
SpaceAfterCStyleCast: false | ||
SpaceBeforeAssignmentOperators: true | ||
SpaceBeforeParens: ControlStatements | ||
SpaceInEmptyParentheses: false | ||
SpacesBeforeTrailingComments: 1 | ||
SpacesInAngles: false | ||
SpacesInContainerLiterals: true | ||
SpacesInCStyleCastParentheses: false | ||
SpacesInParentheses: false | ||
SpacesInSquareBrackets: false | ||
Standard: Cpp11 | ||
TabWidth: 8 | ||
UseTab: Never | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
# NOTE: there must be no spaces before the '-', so put the comma first. | ||
Checks: ' | ||
* | ||
,modernize-* | ||
,-cert-err58-cpp | ||
,-cert-err60-cpp | ||
,-clang-diagnostic-* | ||
,-cppcoreguidelines-owning-memory | ||
,-cppcoreguidelines-pro-bounds-array-to-pointer-decay | ||
,-cppcoreguidelines-pro-bounds-constant-array-index | ||
,-cppcoreguidelines-pro-type-static-cast-downcast | ||
,-cppcoreguidelines-pro-type-vararg | ||
,-cppcoreguidelines-special-member-functions | ||
,-fuchsia-* | ||
,-google-build-using-namespace | ||
,-google-explicit-constructor | ||
,-google-readability-braces-around-statements | ||
,-google-readability-namespace-comments | ||
,-google-readability-todo | ||
,-google-runtime-references | ||
,-google-runtime-references | ||
,-hicpp-braces-around-statements | ||
,-hicpp-explicit-conversions | ||
,-hicpp-no-array-decay | ||
,-hicpp-special-member-functions | ||
,-hicpp-vararg | ||
,-llvm-header-guard | ||
,-llvm-namespace-comment | ||
,-misc-unused-parameters | ||
,-modernize-make-unique | ||
,-modernize-use-default-member-init | ||
,-performance-unnecessary-value-param | ||
,-readability-braces-around-statements | ||
,-readability-else-after-return | ||
,-readability-named-parameter | ||
,clang-analyzer-* | ||
' | ||
WarningsAsErrors: '' | ||
HeaderFilterRegex: 'torch/csrc/' | ||
AnalyzeTemporaryDtors: false | ||
CheckOptions: | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.gitignore |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
If you have a question or would like help and support, please ask at our | ||
[forums](https://discuss.pytorch.org/). | ||
|
||
If you are submitting a feature request, please preface the title with [feature request]. | ||
If you are submitting a bug report, please fill in the following details. | ||
|
||
## Issue description | ||
|
||
Provide a short description. | ||
|
||
## Code example | ||
|
||
Please try to provide a minimal example to repro the bug. | ||
Error messages and stack traces are also helpful. | ||
|
||
## System Info | ||
Please copy and paste the output from our | ||
[environment collection script](https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py) | ||
(or fill out the checklist below manually). | ||
|
||
You can get the script and run it with: | ||
``` | ||
wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py | ||
# For security purposes, please check the contents of collect_env.py before running it. | ||
python collect_env.py | ||
``` | ||
|
||
- PyTorch or Caffe2: | ||
- How you installed PyTorch (conda, pip, source): | ||
- Build command you used (if compiling from source): | ||
- OS: | ||
- PyTorch version: | ||
- Python version: | ||
- CUDA/cuDNN version: | ||
- GPU models and configuration: | ||
- GCC version (if compiling from source): | ||
- CMake version: | ||
- Versions of any other relevant libraries: |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,196 @@ | ||
# 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 | ||
build/ | ||
dist/ | ||
docs/src/**/* | ||
test/.coverage | ||
test/cpp/api/mnist | ||
test/data/gpu_tensors.pt | ||
test/data/legacy_modules.t7 | ||
test/data/legacy_serialized.pt | ||
test/data/linear.pt | ||
test/htmlcov | ||
third_party/build/ | ||
tools/shared/_utils_internal.py | ||
torch.egg-info/ | ||
torch/csrc/autograd/generated/* | ||
torch/csrc/cudnn/cuDNN.cpp | ||
torch/csrc/generated | ||
torch/csrc/generic/TensorMethods.cpp | ||
torch/csrc/jit/generated/* | ||
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/lib/*.a* | ||
torch/lib/*.dll* | ||
torch/lib/*.dylib* | ||
torch/lib/*.h | ||
torch/lib/*.lib | ||
torch/lib/*.so* | ||
torch/lib/build | ||
torch/lib/cmake | ||
torch/lib/include | ||
torch/lib/pkgconfig | ||
torch/lib/protoc | ||
torch/lib/tmp_install | ||
torch/lib/torch_shm_manager | ||
torch/version.py | ||
|
||
# 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 | ||
|
||
# Visual Studio Code files | ||
.vscode | ||
.vs | ||
|
||
# OSX dir files | ||
.DS_Store | ||
|
||
## 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 | ||
LOG* | ||
CURRENT | ||
MANIFEST-* | ||
|
||
# generated version file | ||
caffe2/version.py | ||
|
||
# setup.py intermediates | ||
.eggs | ||
caffe2.egg-info | ||
|
||
# Atom/Watchman required file | ||
.watchmanconfig |
Oops, something went wrong.