Page MenuHomeSolus

D6209.id.diff
No OneTemporary

D6209.id.diff

This file is larger than 256 KB, so syntax highlighting was skipped.
diff --git a/abi_used_libs b/abi_used_libs
--- a/abi_used_libs
+++ b/abi_used_libs
@@ -14,13 +14,16 @@
libmpi.so.40
libopenblas.so.0
libopencv_core.so.3.4
+libopencv_highgui.so.3.4
libopencv_imgcodecs.so.3.4
libopencv_imgproc.so.3.4
libopencv_video.so.3.4
+libopencv_videoio.so.3.4
libprotobuf.so.17
libpthread.so.0
libpython3.6m.so.1.0
librt.so.1
+libsnappy.so.1
libstdc++.so.6
libswscale.so.5
libzmq.so.5
diff --git a/files/build_flags.patch b/files/build_flags.patch
new file mode 100644
--- /dev/null
+++ b/files/build_flags.patch
@@ -0,0 +1,23 @@
+diff --git a/tools/build_pytorch_libs.py b/tools/build_pytorch_libs.py
+index 432fed3bc..268186b7d 100644
+--- a/tools/build_pytorch_libs.py
++++ b/tools/build_pytorch_libs.py
+@@ -190,7 +190,8 @@ def run_cmake(version,
+ USE_QNNPACK=USE_QNNPACK,
+ USE_TENSORRT=check_env_flag('USE_TENSORRT'),
+ USE_FFMPEG=check_env_flag('USE_FFMPEG'),
+- USE_SYSTEM_EIGEN_INSTALL="OFF",
++ USE_SYSTEM_EIGEN_INSTALL="ON",
++ BUILD_CUSTOM_PROTOBUF="OFF",
+ USE_MKLDNN=USE_MKLDNN,
+ USE_NCCL=USE_NCCL,
+ NCCL_EXTERNAL=USE_NCCL,
+@@ -206,6 +207,8 @@ def run_cmake(version,
+ USE_REDIS=os.getenv('USE_REDIS'),
+ USE_GLOG=os.getenv('USE_GLOG'),
+ USE_GFLAGS=os.getenv('USE_GFLAGS'),
++ USE_ZMQ=check_env_flag('USE_ZMQ'),
++ ASMJIT_SRC_DIR=os.getenv('ASMJIT_SRC_DIR'),
+ WERROR=os.getenv('WERROR'))
+
+ if USE_GLOO_IBVERBS:
diff --git a/package.yml b/package.yml
--- a/package.yml
+++ b/package.yml
@@ -1,13 +1,19 @@
name : pytorch
-version : 1.0.1
-release : 1
+version : 1.1.0
+release : 2
source :
- - git|https://github.com/pytorch/pytorch : v1.0.1
+ - git|https://github.com/pytorch/pytorch : v1.1.0
+ - https://github.com/asmjit/asmjit/archive/673dcefaa048c5f5a2bf8b85daf8f7b9978d018a.tar.gz : 9c59802895a7812d6ce63f25abf9ad75fe651ab7b550d79cd266fee34bfedfeb
license : BSD-3-Clause
component : programming.python
-summary : Tensors and Dynamic neural networks in Python with strong GPU acceleration
+summary :
+ - Tensors and Dynamic neural networks in Python with strong GPU acceleration
+ - devel : PyTorch C++ API
description: |
PyTorch is an optimized tensor library for deep learning using GPUs and CPUs.
+patterns :
+ - devel :
+ - /usr/lib64 # Install /usr/lib64/lib*.so.* to the devel subpackage
builddeps :
- pkgconfig(eigen3)
- pkgconfig(gflags)
@@ -29,23 +35,39 @@
- numpy
- python-cffi
- pyyaml
+setup : |
+ %patch -p1 < $pkgfiles/build_flags.patch
+ mkdir -p third_party/asmjit
+ tar -zxvf $sources/*.tar.gz -C third_party/asmjit --strip-components=1
build : |
+ export BLAS=OpenBLAS
export BUILD_BINARY=1
export USE_FFMPEG=1
export USE_LEVELDB=1
export USE_LMDB=1
export USE_OPENCV=1
- export EXTRA_CAFFE2_CMAKE_FLAGS="-DBLAS=OpenBLAS
- -DBUILD_CUSTOM_PROTOBUF=OFF
- -DUSE_GFLAGS=ON
- -DUSE_GLOG=ON
- -DUSE_OPENMP=ON
- -DUSE_SYSTEM_EIGEN_INSTALL=ON
- -DUSE_ZMQ=ON"
-
- # Force to use system protobuf
- rm -rfv third_party/protobuf
+ export USE_GFLAGS=1
+ export USE_GLOG=1
+ export USE_ZMQ=1
+ export USE_MKLDNN=0
+ export ASMJIT_SRC_DIR=$workdir/third_party/asmjit
%python3_setup
install : |
%python3_install --skip-build
+
+ install -dm00755 $installdir/usr/bin $installdir/usr/include $installdir/%libdir%/cmake
+ TORCH_PATH=$(python3 -c "import site; print(site.getsitepackages()[0])")/torch
+ for f in $installdir/$TORCH_PATH/bin/*; do
+ ln -sv $TORCH_PATH/bin/`basename $f` $installdir/usr/bin
+ done
+ # Configure libtorch
+ for f in $installdir/$TORCH_PATH/share/cmake/*; do
+ ln -sv $TORCH_PATH/share/cmake/`basename $f` $installdir/%libdir%/cmake
+ done
+ for f in $installdir/$TORCH_PATH/include/*; do
+ ln -sv $TORCH_PATH/include/`basename $f` $installdir/usr/include
+ done
+ for f in $installdir/$TORCH_PATH/lib/lib*.so*; do
+ ln -sv $TORCH_PATH/lib/`basename $f` $installdir/%libdir%
+ done
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
--- a/pspec_x86_64.xml
+++ b/pspec_x86_64.xml
@@ -10,7 +10,7 @@
<Summary xml:lang="en">Tensors and Dynamic neural networks in Python with strong GPU acceleration</Summary>
<Description xml:lang="en">PyTorch is an optimized tensor library for deep learning using GPUs and CPUs.
</Description>
- <Archive type="binary" sha1sum="79eb0752a961b8e0d15c77d298c97498fbc89c5a">https://solus-project.com/sources/README.Solus</Archive>
+ <Archive type="binary" sha1sum="79eb0752a961b8e0d15c77d298c97498fbc89c5a">https://getsol.us/sources/README.Solus</Archive>
</Source>
<Package>
<Name>pytorch</Name>
@@ -19,12 +19,53 @@
</Description>
<PartOf>programming.python</PartOf>
<Files>
+ <Path fileType="executable">/usr/bin/caffe2_benchmark</Path>
<Path fileType="executable">/usr/bin/convert-caffe2-to-onnx</Path>
<Path fileType="executable">/usr/bin/convert-onnx-to-caffe2</Path>
+ <Path fileType="executable">/usr/bin/convert_and_benchmark</Path>
+ <Path fileType="executable">/usr/bin/convert_caffe_image_db</Path>
+ <Path fileType="executable">/usr/bin/convert_db</Path>
+ <Path fileType="executable">/usr/bin/convert_encoded_to_raw_leveldb</Path>
+ <Path fileType="executable">/usr/bin/convert_image_to_tensor</Path>
+ <Path fileType="executable">/usr/bin/db_throughput</Path>
+ <Path fileType="executable">/usr/bin/make_cifar_db</Path>
+ <Path fileType="executable">/usr/bin/make_image_db</Path>
+ <Path fileType="executable">/usr/bin/make_mnist_db</Path>
+ <Path fileType="executable">/usr/bin/predictor_verifier</Path>
+ <Path fileType="executable">/usr/bin/print_registered_core_operators</Path>
+ <Path fileType="executable">/usr/bin/run_plan</Path>
+ <Path fileType="executable">/usr/bin/run_plan_mpi</Path>
+ <Path fileType="executable">/usr/bin/speed_benchmark</Path>
+ <Path fileType="executable">/usr/bin/split_db</Path>
+ <Path fileType="executable">/usr/bin/torch_shm_manager</Path>
+ <Path fileType="executable">/usr/bin/tutorial_blob</Path>
+ <Path fileType="executable">/usr/bin/zmq_feeder</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/__init__.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/__pycache__/__init__.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/__init__.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/aten/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/aten/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/aten/__pycache__/aten_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/aten/__pycache__/gen_op.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/aten/aten_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/aten/docs/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/aten/docs/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/aten/docs/__pycache__/sample.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/aten/docs/sample.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/aten/gen_op.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/gloo/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/gloo/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/gloo/__pycache__/gloo_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/gloo/gloo_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/nccl/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/nccl/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/nccl/__pycache__/nccl_ops_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/nccl/nccl_ops_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/nnpack/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/nnpack/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/nnpack/__pycache__/nnpack_ops_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/nnpack/nnpack_ops_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/playground/AnyExp.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/playground/AnyExpOnTerm.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/playground/ModuleRegister.py</Path>
@@ -65,6 +106,14 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/playground/resnetdemo/gfs_IN1k.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/playground/resnetdemo/override_no_test_model_no_checkpoint.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/playground/resnetdemo/rendezvous_filestore.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/prof/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/prof/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/prof/__pycache__/cuda_profile_ops_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/prof/cuda_profile_ops_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/script/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/script/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/script/examples/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/script/examples/__pycache__/__init__.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/tensorboard/__init__.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/tensorboard/__pycache__/__init__.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/tensorboard/__pycache__/tensorboard.cpython-36.pyc</Path>
@@ -75,6 +124,50 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/tensorboard/tensorboard_exporter.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/tensorboard/tensorboard_exporter_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/tensorboard/tensorboard_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/warpctc/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/warpctc/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/warpctc/__pycache__/ctc_ops_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/contrib/warpctc/ctc_ops_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/core/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/core/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/core/nomnigraph/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/core/nomnigraph/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/core/nomnigraph/__pycache__/op_gen.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/core/nomnigraph/op_gen.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/distributed/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/distributed/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/distributed/__pycache__/file_store_handler_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/distributed/__pycache__/redis_store_handler_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/distributed/__pycache__/store_ops_test_util.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/distributed/file_store_handler_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/distributed/redis_store_handler_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/distributed/store_ops_test_util.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/SparseTransformer.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/__pycache__/SparseTransformer.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/__pycache__/convnet_benchmarks.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/__pycache__/device_reduce_sum_bench.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/__pycache__/funhash_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/__pycache__/net_construct_bench.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/__pycache__/sparse_funhash_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/__pycache__/sparse_reshape_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/__pycache__/tt_contraction_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/__pycache__/tt_pad_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/convnet_benchmarks.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/device_reduce_sum_bench.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/funhash_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/net_construct_bench.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/sparse_funhash_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/sparse_reshape_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/tt_contraction_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/experiments/python/tt_pad_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/perfkernels/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/perfkernels/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/perfkernels/__pycache__/hp_emblookup_codegen.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/perfkernels/hp_emblookup_codegen.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/proto/__init__.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/proto/__pycache__/__init__.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/proto/__pycache__/caffe2_legacy_pb2.cpython-36.pyc</Path>
@@ -112,6 +205,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/context_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/control.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/control_ops_grad.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/control_ops_grad_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/control_ops_util.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/control_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/convert.cpython-36.pyc</Path>
@@ -138,6 +232,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/embedding_generation_benchmark.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/experiment_util.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/extension_loader.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/filler_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/functional.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/functional_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/fused_8bit_rowwise_conversion_ops_test.cpython-36.pyc</Path>
@@ -181,6 +276,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/numa_benchmark.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/numa_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/observer_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/operator_fp_exceptions_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/optimizer.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/optimizer_context.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/optimizer_test.cpython-36.pyc</Path>
@@ -208,6 +304,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/sparse_to_dense_mask_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/sparse_to_dense_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/task.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/task_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/test_util.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/text_file_reader.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/__pycache__/timeout_guard.cpython-36.pyc</Path>
@@ -241,6 +338,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/context_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/control.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/control_ops_grad.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/control_ops_grad_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/control_ops_util.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/control_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/convert.py</Path>
@@ -263,10 +361,29 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/db_file_reader.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/db_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/device_checker.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/docs/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/docs/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/docs/__pycache__/formatter.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/docs/__pycache__/generator.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/docs/__pycache__/github.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/docs/__pycache__/parser.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/docs/formatter.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/docs/generator.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/docs/github.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/docs/parser.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/dyndep.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/embedding_generation_benchmark.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/examples/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/examples/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/examples/__pycache__/char_rnn.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/examples/__pycache__/lmdb_create_example.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/examples/__pycache__/resnet50_trainer.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/examples/char_rnn.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/examples/lmdb_create_example.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/examples/resnet50_trainer.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/experiment_util.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/extension_loader.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/filler_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/functional.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/functional_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/fused_8bit_rowwise_conversion_ops_test.py</Path>
@@ -307,6 +424,64 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/hsm_util.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/hypothesis_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/hypothesis_test_util.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/LRN_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/LRN_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/adam_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/blobs_queue_db_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/channel_shuffle_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/concat_split_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/conv_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/conv_transpose_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/convfusion_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/copy_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/dropout_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/elementwise_sum_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/expanddims_squeeze_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/fc_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/leaky_relu_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/moment_sgd_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/operator_fallback_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/order_switch_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/pool_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/pre_convert_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/relu_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/reshape_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/shape_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/sigmoid_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/softmax_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/spatial_bn_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/test_ideep_net.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/transform_ideep_net.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/__pycache__/weightedsum_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/adam_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/blobs_queue_db_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/channel_shuffle_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/concat_split_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/conv_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/conv_transpose_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/convfusion_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/copy_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/dropout_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/elementwise_sum_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/expanddims_squeeze_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/fc_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/leaky_relu_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/moment_sgd_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/operator_fallback_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/order_switch_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/pool_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/pre_convert_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/relu_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/reshape_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/shape_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/sigmoid_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/softmax_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/spatial_bn_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/test_ideep_net.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/transform_ideep_net.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep/weightedsum_op_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/ideep_test_util.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/layer_model_helper.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/layer_model_instantiator.py</Path>
@@ -402,6 +577,52 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/lstm_benchmark.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/memonger.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/memonger_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mint/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mint/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mint/__pycache__/app.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mint/app.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_LRN_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_LRN_speed_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_concat_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_conv_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_copy_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_elementwise_add_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_elementwise_sum_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_fc_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_fc_speed_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_fill_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_pool_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_pool_speed_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_relu_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_sbn_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_sbn_speed_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_sigmoid_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_speed_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/mkl_squeeze_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/rewrite_graph.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/__pycache__/rewrite_graph_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_LRN_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_LRN_speed_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_concat_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_conv_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_copy_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_elementwise_add_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_elementwise_sum_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_fc_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_fc_speed_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_fill_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_pool_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_pool_speed_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_relu_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_sbn_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_sbn_speed_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_sigmoid_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_speed_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/mkl_squeeze_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/rewrite_graph.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl/rewrite_graph_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/mkl_test_util.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/model_device_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/model_helper.py</Path>
@@ -522,6 +743,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/onnx/tests/ssa_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/onnx/tests/test_utils.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/onnx/workspace.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_fp_exceptions_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__init__.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/__init__.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/activation_ops_test.cpython-36.pyc</Path>
@@ -570,6 +792,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/data_couple_op_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/dataset_ops_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/deform_conv_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/dense_vector_to_id_list_op_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/depthwise_3x3_conv_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/detectron_keypoints.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/distance_op_test.cpython-36.pyc</Path>
@@ -583,6 +806,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/enforce_finite_op_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/ensure_clipped_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/ensure_cpu_output_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/erf_op_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/expand_op_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/fc_operator_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/feature_maps_ops_test.cpython-36.pyc</Path>
@@ -689,6 +913,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/thresholded_relu_op_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/tile_op_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/top_k_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/torch_integration_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/transpose_op_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/trigonometric_op_test.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/__pycache__/unique_ops_test.cpython-36.pyc</Path>
@@ -746,6 +971,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/data_couple_op_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/dataset_ops_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/deform_conv_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/dense_vector_to_id_list_op_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/depthwise_3x3_conv_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/detectron_keypoints.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/distance_op_test.py</Path>
@@ -759,6 +985,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/enforce_finite_op_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/ensure_clipped_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/ensure_cpu_output_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/erf_op_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/expand_op_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/fc_operator_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/feature_maps_ops_test.py</Path>
@@ -865,6 +1092,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/thresholded_relu_op_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/tile_op_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/top_k_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/torch_integration_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/transpose_op_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/trigonometric_op_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/operator_test/unique_ops_test.py</Path>
@@ -925,12 +1153,182 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/__pycache__/coverage.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/__pycache__/serialized_test_util.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/coverage.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/activation_ops_test.test_elu.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/activation_ops_test.test_leaky_relu.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/activation_ops_test.test_relu.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/activation_ops_test.test_relu_n.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/adadelta_test.test_adadelta.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/adadelta_test.test_sparse_adadelta_empty.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/adagrad_test.test_adagrad.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/adagrad_test.test_row_wise_sparse_adagrad_empty.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/adagrad_test.test_sparse_adagrad_empty.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/affine_channel_op_test.test_affine_channel_2d.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/arg_ops_test.test_argmax.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/arg_ops_test.test_argmin.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/batch_box_cox_test.test_batch_box_cox.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/batch_bucketize_op_test.test_batch_bucketize_example.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/batch_moments_op_test.test_batch_moments_2d.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/batch_sparse_to_dense_op_test.test_batch_sparse_to_dense.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/bbox_transform_test.test_bbox_transform.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/boolean_mask_test.test_boolean_mask.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/boolean_mask_test.test_sequence_mask_with_lengths.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/boolean_unmask_test.test.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/box_with_nms_limit_op_test.test_simple.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/ceil_op_test.test_ceil.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/channel_backprop_stats_op_test.testChannelBackpropStats.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/channel_shuffle_test.test_channel_shuffle.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/channel_stats_op_test.testChannelStats.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/channel_stats_op_test.test_channel_stats_2d.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/channel_stats_op_test.test_channel_stats_3d.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/clip_op_test.test_clip.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/clip_tensor_op_test.test_clip_tensor_by_scaling.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/collect_and_distribute_fpn_rpn_proposals_op_test.test_collect_and_dist.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/concat_split_op_test.test_concat.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/concat_split_op_test.test_split.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/concat_split_op_test.test_split_by_lengths.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/conditional_test.test_conditional.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/conv_test.test_1x1_conv.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/cosine_embedding_criterion_op_test.test_cosine_embedding_criterion.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/ctc_beam_search_decoder_op_test.test_ctc_beam_search_decoder.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/ctc_greedy_decoder_op_test.test_ctc_greedy_decoder.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/distance_op_test.test_dot_product.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/dropout_op_test.test_dropout_is_test.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/elementwise_linear_op_test.test.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/elementwise_logical_ops_test.test_is_member_of.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/elementwise_logical_ops_test.test_where.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/elementwise_op_broadcast_test.test_broadcast_powt.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/erf_op_test.test_erf.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/expand_op_test.test_expand_rand_shape.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/fc_operator_test.test_fc.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/filler_ops_test.test_diagonal_fill_op_float.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/filler_ops_test.test_lengths_range_fill.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/find_op_test.test_find.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/flexible_top_k_test.test_flexible_top_k.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/floor_op_test.test_floor.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/gather_ops_test.test_batch_gather_ops.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/gather_ops_test.test_gather_ops.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/gather_ranges_op_test.test_gather_ranges.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/gather_ranges_op_test.test_gather_ranges_split.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/glu_op_test.test_glu_old.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/group_norm_op_test.test_group_norm_2d.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/gru_test.test_gru_unit_op.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/hyperbolic_ops_test.test_cosh.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/hyperbolic_ops_test.test_sinh.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/hyperbolic_ops_test.test_tanh.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/index_hash_ops_test.test_index_hash_ops.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/instance_norm_test.test_instance_norm_reference_check.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/integral_image_ops_test.test_integral_image_gradient_ops.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/integral_image_ops_test.test_integral_image_ops.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/jsd_ops_test.test_bernoulli_jsd.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/layer_norm_op_test.test_layer_norm_grad_op.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/learning_rate_adaption_op_test.test_learning_rate_adaption_op_normalization.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/learning_rate_op_test.test_alter_learning_rate_op.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/length_split_op_test.test_length_split_edge.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/lengths_pad_op_test.test_lengths_pad.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/lengths_tile_op_test.test_lengths_tile.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/lengths_top_k_ops_test.test_lengths_top_k_op.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/locally_connected_op_test.test_lc_2d.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/loss_ops_test.test_averaged_loss.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/margin_ranking_criterion_op_test.test_margin_ranking_criterion.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/math_ops_test.test_sign.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/matmul_op_test.test_batch_matmul.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/matmul_op_test.test_matmul.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/matmul_op_test.test_numpy_batch_matmul.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/mean_op_test.test_mean.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/merge_id_lists_op_test.test_merge_id_lists_op.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/moments_op_test.test_moments.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/momentum_sgd_test.test_momentum_sgd.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/momentum_sgd_test.test_sparse_momentum_sgd.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/negate_gradient_op_test.test_forward.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/numpy_tile_op_test.test_numpy_tile.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/one_hot_ops_test.test_batch_bucketized_one_hot.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/one_hot_ops_test.test_batch_one_hot.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/one_hot_ops_test.test_one_hot.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/one_hot_ops_test.test_segment_one_hot.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/onnx_while_test.test_onnx_while_fibb.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/pack_ops_test.test_pack_with_max_length_ops.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/pack_rnn_sequence_op_test.test_pack_rnn_seqence.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/pack_rnn_sequence_op_test.test_unpack_rnn_seqence.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/pad_test.test_crop.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/piecewise_linear_transform_test.test_multi_predictions_params_from_arg.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/rank_loss_operator_test.test_pair_wise_loss_batch.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/recurrent_network_test.test_mul.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/reduce_ops_test.test_reduce_back_max.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/reduce_ops_test.test_reduce_back_mean.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/reduce_ops_test.test_reduce_front_max.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/reduce_ops_test.test_reduce_front_mean.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/reduce_ops_test.test_reduce_front_sum.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/reduce_ops_test.test_reduce_l2.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/reduce_ops_test.test_reduce_max.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/reduce_ops_test.test_reduce_mean.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/reduce_ops_test.test_reduce_min.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/reduction_ops_test.test_columnwise_max.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/reduction_ops_test.test_elementwise_int_sum.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/reduction_ops_test.test_elementwise_sqrsum.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/reduction_ops_test.test_elementwise_sum.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/reduction_ops_test.test_rowwise_max.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/selu_op_test.test_selu_1.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/sequence_ops_test.test_add_padding.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/sequence_ops_test.test_find_duplicate_elements.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/sequence_ops_test.test_gather_padding.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/sequence_ops_test.test_remove_data_blocks.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/sequence_ops_test.test_reverse_packed_segs.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/sinusoid_position_encoding_op_test.test_sinusoid_embedding.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/softmax_ops_test.test_softmax.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/softmax_ops_test.test_softmax_grad.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/softmax_ops_test.test_softmax_with_loss.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/softmax_ops_test.test_spatial_softmax_with_loss.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/sparse_ops_test.testScatterAssign.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/sparse_ops_test.testScatterWeightedSum.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/spatial_bn_op_test.test_spatialbn_test_mode_3d.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/square_root_divide_op_test.test_square_root_divide.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/string_ops_test.test_string_ends_with.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/string_ops_test.test_string_starts_with.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/thresholded_relu_op_test.test_thresholded_relu_1.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/tile_op_test.test_tile.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/top_k_test.test_top_k.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/transpose_op_test.test_transpose.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/trigonometric_op_test.test_acos.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/trigonometric_op_test.test_asin.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/trigonometric_op_test.test_atan.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/trigonometric_op_test.test_tan.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/unique_ops_test.test_unique_op.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/upsample_op_test.test_upsample.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/upsample_op_test.test_upsample_grad.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/utility_ops_test.test_elementwise_max.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/utility_ops_test.test_elementwise_max_grad.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/utility_ops_test.test_elementwise_min.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/utility_ops_test.test_elementwise_min_grad.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/utility_ops_test.test_lengths_gather.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/utility_ops_test.test_lengths_to_ranges.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/utility_ops_test.test_nan_check.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/utility_ops_test.test_size_op.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/utility_ops_test.test_slice.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/utility_ops_test.test_transpose.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/weighted_sum_test.test_weighted_sum.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/wngrad_test.test_sparse_wngrad_empty.zip</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/data/operator_test/wngrad_test.test_wngrad_dense_base.zip</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/serialized_test/serialized_test_util.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/session.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/session_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/sparse_to_dense_mask_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/sparse_to_dense_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/task.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/task_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/test/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/test/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/test/__pycache__/blob_deallocation_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/test/__pycache__/do_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/test/__pycache__/executor_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/test/__pycache__/executor_test_util.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/test/__pycache__/inference_lstm_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/test/__pycache__/python_protobuf_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/test/blob_deallocation_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/test/do_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/test/executor_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/test/executor_test_util.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/test/inference_lstm_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/test/python_protobuf_test.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/test_util.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/text_file_reader.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/timeout_guard.py</Path>
@@ -950,14 +1348,83 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/visualize.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/workspace.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/python/workspace_test.py</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch-1.0.0a0+8322165-py3.6.egg-info/PKG-INFO</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch-1.0.0a0+8322165-py3.6.egg-info/SOURCES.txt</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch-1.0.0a0+8322165-py3.6.egg-info/dependency_links.txt</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch-1.0.0a0+8322165-py3.6.egg-info/entry_points.txt</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch-1.0.0a0+8322165-py3.6.egg-info/top_level.txt</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/batch_matmul_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/batch_permutation_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/channel_shuffle_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/concat_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/conv_depthwise_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/conv_dnnlowp_acc16_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/conv_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/conv_groupwise_dnnlowp_acc16_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/conv_groupwise_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/dequantize_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/dnnlowp_test_utils.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/elementwise_add_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/elementwise_linear_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/elementwise_mul_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/elementwise_sum_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/fully_connected_dnnlowp_acc16_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/fully_connected_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/fully_connected_fp16_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/fully_connected_rowwise_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/gather_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/group_norm_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/lstm_unit_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/observer_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/pool_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/quantize_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/relu_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/resize_nearest_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/sigmoid_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/spatial_batch_norm_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/tanh_dnnlowp_op_test.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/__pycache__/utils.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/batch_matmul_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/batch_permutation_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/channel_shuffle_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/concat_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/conv_depthwise_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/conv_dnnlowp_acc16_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/conv_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/conv_groupwise_dnnlowp_acc16_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/conv_groupwise_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/dequantize_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/dnnlowp_test_utils.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/elementwise_add_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/elementwise_linear_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/elementwise_mul_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/elementwise_sum_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/fully_connected_dnnlowp_acc16_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/fully_connected_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/fully_connected_fp16_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/fully_connected_rowwise_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/gather_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/group_norm_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/lstm_unit_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/observer_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/pool_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/quantize_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/relu_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/resize_nearest_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/sigmoid_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/spatial_batch_norm_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/tanh_dnnlowp_op_test.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/caffe2/quantization/server/utils.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch-1.1.0-py3.6.egg-info/PKG-INFO</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch-1.1.0-py3.6.egg-info/SOURCES.txt</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch-1.1.0-py3.6.egg-info/dependency_links.txt</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch-1.1.0-py3.6.egg-info/entry_points.txt</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch-1.1.0-py3.6.egg-info/requires.txt</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch-1.1.0-py3.6.egg-info/top_level.txt</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/_C.cpython-36m-x86_64-linux-gnu.so</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/__config__.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/__init__.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/__init__.pyi</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/__pycache__/__config__.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/__pycache__/__init__.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/__pycache__/_jit_internal.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/__pycache__/_ops.cpython-36.pyc</Path>
@@ -970,6 +1437,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/__pycache__/_utils_internal.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/__pycache__/functional.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/__pycache__/hub.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/__pycache__/quasirandom.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/__pycache__/random.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/__pycache__/serialization.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/__pycache__/storage.cpython-36.pyc</Path>
@@ -990,6 +1458,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/_utils.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/_utils_internal.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/autograd/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/autograd/__init__.pyi</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/autograd/__pycache__/__init__.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/autograd/__pycache__/anomaly_mode.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/autograd/__pycache__/function.cpython-36.pyc</Path>
@@ -1006,6 +1475,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/autograd/anomaly_mode.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/autograd/function.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/autograd/grad_mode.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/autograd/grad_mode.pyi</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/autograd/gradcheck.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/autograd/profiler.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/autograd/variable.py</Path>
@@ -1019,6 +1489,29 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/backends/cudnn/rnn.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/backends/mkl/__init__.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/backends/mkl/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/backends/mkldnn/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/backends/mkldnn/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/backends/openmp/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/backends/openmp/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/caffe2_benchmark</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/convert_and_benchmark</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/convert_caffe_image_db</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/convert_db</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/convert_encoded_to_raw_leveldb</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/convert_image_to_tensor</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/db_throughput</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/make_cifar_db</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/make_image_db</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/make_mnist_db</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/predictor_verifier</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/print_registered_core_operators</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/run_plan</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/run_plan_mpi</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/speed_benchmark</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/split_db</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/torch_shm_manager</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/tutorial_blob</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/bin/zmq_feeder</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/contrib/__init__.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/contrib/__pycache__/__init__.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/contrib/__pycache__/_graph_vis.cpython-36.pyc</Path>
@@ -1026,6 +1519,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/contrib/_graph_vis.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/contrib/_tensorboard_vis.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/cuda/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/cuda/__init__.pyi</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/cuda/__pycache__/__init__.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/cuda/__pycache__/_utils.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/cuda/__pycache__/comm.cpython-36.pyc</Path>
@@ -1141,656 +1635,1061 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/for_onnx/__pycache__/__init__.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/functional.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/hub.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/ATen.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/AccumulateType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/ArrayRef.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/Backend.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/Backtrace.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/CPUApplyUtils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/CPUFixedAllocator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/CPUGenerator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/CPUType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/CPUTypeDefault.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/CUDAGenerator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/CUDAType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/CheckGenerator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/Config.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/Context.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/DLConvertor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/Device.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/DeviceGuard.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/DimVector.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/Dispatch.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/ExpandUtils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/ExtensionBackendRegistration.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/Formatting.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/Functions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/Generator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/InferSize.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/InitialTensorOptions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/Layout.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCPUBoolDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCPUByteDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCPUCharDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCPUDoubleDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCPUFloatDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCPUHalfDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCPUIntDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCPULongDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCPUQInt8Dispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCPUShortDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCUDABoolDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCUDAByteDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCUDACharDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCUDADoubleDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCUDAFloatDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCUDAHalfDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCUDAIntDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCUDALongDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCUDAQInt8Dispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHCUDAShortDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHDispatch.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHDispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHFunctions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/LegacyTHQuantizedCPUQInt8Dispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/MSNPUType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/MatrixRef.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/MemoryOverlap.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/MkldnnCPUType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/NativeFunctions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/NumericUtils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/OpaqueTensorImpl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/Parallel.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/QuantizedCPUType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/RegisterCPU.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/RegisterCUDA.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/Scalar.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/ScalarOps.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/ScalarType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/SmallVector.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/SparseCPUType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/SparseCUDAType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/SparseTensorImpl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/SparseTensorUtils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/Storage.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/Tensor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/TensorAccessor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/TensorGeometry.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/TensorOperators.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/TensorOptions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/TensorUtils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/Type.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/TypeDefault.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/TypeExtendedInterface.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/UndefinedType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/Utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/Version.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/WrapDimUtils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/WrapDimUtilsMulti.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/XLAType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/ATenGeneral.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/Backtrace.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/DeprecatedTypeProperties.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/DimVector.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/Formatting.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/Generator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/LegacyDeviceTypeInit.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/LegacyTypeDispatch.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/Macros.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/Range.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/Reduction.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/Scalar.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/ScalarType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/SparseTensorRef.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/Tensor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/TensorAccessor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/TensorMethods.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/Type.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/UndefinedTensorImpl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/VariableHooksInterface.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/alias_info.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/aten_interned_strings.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/blob.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/context_base.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/dispatch/DispatchTable.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/dispatch/Dispatcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/dispatch/KernelCache.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/dispatch/KernelFunction.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/function_schema.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/function_schema_inl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/functional.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/interned_strings.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/interned_strings_class.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/ivalue.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/jit_type.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/op_registration/base.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/op_registration/dispatch_key.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/op_registration/infer_schema.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/op_registration/kernel_function.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/op_registration/kernel_functor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/op_registration/kernel_lambda.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/op_registration/kernel_stackbased.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/op_registration/op_registration.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/op_registration/test_helpers.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/stack.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/core/typeid.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cpp_custom_type_hack.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cpu/FlushDenormal.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cpu/vml.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/ATenCUDAGeneral.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/Array.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/CUDAApplyUtils.cuh</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/CUDAConfig.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/CUDAContext.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/CUDADevice.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/CUDAEvent.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/CUDAMultiStreamGuard.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/CUDATensorMethods.cuh</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/CUDATypeDefault.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/CUDAUtils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/Exceptions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/NumericLimits.cuh</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/PinnedMemoryAllocator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/_curand_mtgp32_host.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/detail/CUDAHooks.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/detail/IndexUtils.cuh</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/detail/KernelUtils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/detail/OffsetCalculator.cuh</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cuda/detail/TensorInfo.cuh</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cudnn/Descriptors.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cudnn/Exceptions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cudnn/Handle.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cudnn/Handles.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cudnn/Types.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cudnn/Utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/cudnn/cudnn-wrapper.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/detail/CPUGuardImpl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/detail/CUDAHooksInterface.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/detail/ComplexHooksInterface.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/detail/FunctionTraits.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/detail/HIPHooksInterface.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/detail/ScalarTypeConversions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/div_rtn.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/ATen/dlpack.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/TH.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THAllocator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THBlas.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THDiskFile.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THFile.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THFilePrivate.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THGeneral.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THGenerateAllTypes.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THGenerateBoolType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THGenerateByteType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THGenerateCharType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THGenerateDoubleType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THGenerateFloatType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THGenerateFloatTypes.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THGenerateHalfType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THGenerateIntType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THGenerateIntTypes.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THGenerateLongType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THGenerateShortType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THGenerator.hpp</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THHalf.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THLapack.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THLogAdd.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THMath.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THMemoryFile.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THRandom.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THSize.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THStorage.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THStorageFunctions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THStorageFunctions.hpp</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THTensor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THTensor.hpp</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THTensorApply.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THTensorDimApply.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/THVector.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/generic/THBlas.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/generic/THLapack.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/generic/THStorage.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/generic/THStorageCopy.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/generic/THTensor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/generic/THTensor.hpp</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/generic/THTensorConv.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/generic/THTensorFastGetSet.hpp</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/generic/THTensorFill.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/generic/THTensorLapack.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/generic/THTensorMath.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/generic/THTensorRandom.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/TH/generic/THVector.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/THCUNN/generic/THCUNN.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/THNN/generic/THNN.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/Allocator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/Backend.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/CPUAllocator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/CopyBytes.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/DefaultDtype.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/DefaultTensorOptions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/Device.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/DeviceGuard.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/DeviceType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/Layout.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/QScheme.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/Scalar.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/ScalarType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/Storage.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/StorageImpl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/Stream.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/StreamGuard.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/TensorImpl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/TensorOptions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/TensorTypeId.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/TensorTypeIdRegistration.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/UndefinedTensorImpl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/WrapDimMinimal.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/impl/DeviceGuardImplInterface.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/impl/FakeGuardImpl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/impl/InlineDeviceGuard.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/impl/InlineStreamGuard.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/impl/VirtualGuardImpl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/core/thread_pool.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/cuda/CUDACachingAllocator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/cuda/CUDAException.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/cuda/CUDAFunctions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/cuda/CUDAGuard.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/cuda/CUDAMacros.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/cuda/CUDAMathCompat.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/cuda/CUDAStream.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/cuda/impl/CUDAGuardImpl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/cuda/impl/CUDATest.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/macros/Export.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/macros/Macros.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/macros/cmake_macros.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/AlignOf.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/Array.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/ArrayRef.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/Backtrace.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/C++17.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/Deprecated.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/Exception.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/Flags.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/Half-inl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/Half.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/IdWrapper.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/LeftRight.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/Logging.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/Metaprogramming.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/Optional.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/Registry.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/SmallVector.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/StringUtil.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/Type.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/TypeList.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/TypeTraits.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/UniqueVoidPtr.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/either.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/flat_hash_map.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/intrusive_ptr.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/logging_is_google_glog.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/logging_is_not_google_glog.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/numa.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/python_stub.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/qint8.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/string_utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/tempfile.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/thread_name.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/c10/util/typeid.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/allocator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/asan.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/blob.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/blob_serialization.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/blob_serializer_base.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/blob_stats.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/c10_operator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/common.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/common_cudnn.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/common_gpu.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/common_omp.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/context.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/context_base.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/context_gpu.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/cudnn_wrappers.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/db.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/event.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/event_cpu.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/flags.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/graph.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/init.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/logging.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/macros.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/memonger.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/module.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/net.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/net_async_base.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/net_async_scheduling.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/net_async_task.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/net_async_task_future.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/net_async_task_graph.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/net_async_tracing.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/net_dag_utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/net_parallel.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/net_simple.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/net_simple_refcount.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/numa.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/observer.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/operator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/operator_c10wrapper.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/operator_gradient.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/operator_schema.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/plan_executor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/prof_dag_counters.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/qtensor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/qtensor_serialization.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/scope_guard.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/static_tracepoint.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/static_tracepoint_elfx86.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/stats.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/storage.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/tensor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/tensor_impl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/tensor_int8.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/test_utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/timer.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/transform.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/types.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/core/workspace.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/cuda_rtc/common_rtc.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/db/create_db_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/distributed/file_store_handler.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/distributed/file_store_handler_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/distributed/redis_store_handler.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/distributed/redis_store_handler_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/distributed/store_handler.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/distributed/store_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/ideep/ideep_utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/image/image_input_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/image/transform_gpu.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/mpi/mpi_common.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/mpi/mpi_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/observers/operator_attaching_net_observer.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/observers/profile_observer.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/observers/runcnt_observer.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/observers/time_observer.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/onnx/backend.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/onnx/backend_rep.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/onnx/device.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/onnx/helper.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/onnx/onnx_exporter.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/onnx/onnxifi_graph_info.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/onnx/onnxifi_init.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/abs_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/accumulate_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/accuracy_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/acos_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/activation_ops_cudnn.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/affine_channel_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/apmeter_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/arg_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/asin_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/assert_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/atan_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/batch_box_cox_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/batch_bucketize_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/batch_gather_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/batch_matmul_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/batch_moments_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/batch_sparse_to_dense_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/bbox_transform_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/bisect_percentile_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/boolean_mask_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/boolean_unmask_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/box_with_nms_limit_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/byte_weight_dequant_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/cast_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/cbrt_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/cc_bmm_bg_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/ceil_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/channel_backprop_stats_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/channel_shuffle_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/channel_stats_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/clip_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/collect_and_distribute_fpn_rpn_proposals_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/concat_split_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/conditional_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/conv_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/conv_op_cache_cudnn.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/conv_op_impl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/conv_op_shared.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/conv_pool_op_base.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/conv_transpose_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/conv_transpose_op_impl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/conv_transpose_op_mobile.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/conv_transpose_op_mobile_impl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/conv_transpose_unpool_op_base.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/copy_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/cos_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/cosh_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/cosine_embedding_criterion_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/counter_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/create_scope_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/cross_entropy_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/ctc_beam_search_decoder_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/ctc_greedy_decoder_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/cube_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/data_couple.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/dataset_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/deform_conv_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/deform_conv_op_impl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/dense_vector_to_id_list_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/distance_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/do_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/dropout_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/elementwise_add_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/elementwise_div_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/elementwise_linear_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/elementwise_logical_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/elementwise_mul_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/elementwise_op_test.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/elementwise_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/elementwise_ops_utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/elementwise_sub_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/elu_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/enforce_finite_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/ensure_clipped_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/ensure_cpu_output_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/erf_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/exp_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/expand_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/expand_squeeze_dims_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/fc_inference.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/feature_maps_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/feed_blob_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/filler_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/find_duplicate_elements_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/find_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/flatten_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/flexible_top_k.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/floor_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/free_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/fully_connected_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/fused_rowwise_8bit_conversion_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/fused_rowwise_random_quantization_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/gather_fused_8bit_rowwise_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/gather_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/gather_ranges_to_dense_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/gelu_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/generate_proposals_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/generate_proposals_op_util_boxes.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/generate_proposals_op_util_nms.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/generate_proposals_op_util_nms_gpu.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/given_tensor_byte_string_to_uint8_fill_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/given_tensor_fill_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/glu_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/group_norm_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/gru_unit_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/h_softmax_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/half_float_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/hard_sigmoid_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/heatmap_max_keypoint_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/if_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/im2col_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/index_hash_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/index_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/inference_lstm_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/instance_norm_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/integral_image_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/is_empty_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/jsd_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/key_split_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/layer_norm_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/leaky_relu_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/length_split_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/lengths_pad_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/lengths_reducer_fused_8bit_rowwise_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/lengths_reducer_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/lengths_reducer_rowwise_8bit_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/lengths_tile_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/lengths_top_k_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/listwise_l2r_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/load_save_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/local_response_normalization_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/locally_connected_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/locally_connected_op_impl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/locally_connected_op_util.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/log_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/logit_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/loss_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/lpnorm_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/lstm_unit_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/lstm_utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/map_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/margin_ranking_criterion_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/matmul_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/max_pool_with_index_gpu.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/mean_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/merge_id_lists_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/minmax_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/mod_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/moments_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/multi_class_accuracy_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/negate_gradient_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/negative_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/ngram_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/no_default_engine_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/normalize_l1_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/normalize_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/numpy_tile_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/one_hot_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/onnx_while_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/onnxifi_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/op_utils_cudnn.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/operator_fallback_gpu.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/order_switch_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/pack_rnn_sequence_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/pack_segments.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/pad_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/partition_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/percentile_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/perplexity_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/piecewise_linear_transform_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/pool_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/pool_op_util.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/pow_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/prefetch_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/prelu_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/prepend_dim_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/quant_decode_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/rank_loss_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/reciprocal_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/reduce_front_back_max_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/reduce_front_back_sum_mean_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/reduce_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/reducer_functors.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/reduction_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/relu_n_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/relu_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/remove_data_blocks_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/replace_nan_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/reshape_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/resize_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/reverse_packed_segs_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/rmac_regions_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/roi_align_gradient_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/roi_align_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/roi_align_rotated_gradient_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/roi_align_rotated_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/roi_pool_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/rowmul_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/rsqrt_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/scale_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/segment_reduction_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/selu_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/sequence_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/shape_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/sigmoid_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/sin_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/sinh_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/sinusoid_position_encoding_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/slice_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/softmax_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/softmax_utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/softmax_with_loss_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/softplus_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/softsign_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/space_batch_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/sparse_normalize_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/sparse_to_dense_mask_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/sparse_to_dense_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/spatial_batch_norm_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/spatial_softmax_with_loss_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/sqr_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/sqrt_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/square_root_divide_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/stats_put_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/stop_gradient.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/string_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/stump_func_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/summarize_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/swish_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/tan_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/tanh_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/tensor_protos_db_input.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/text_file_reader_utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/thresholded_relu_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/tile_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/top_k.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/transpose_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/tt_linear_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/unique_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/upsample_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/utility_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/variable_length_sequence_padding.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/weighted_multi_sampling_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/weighted_sample_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/while_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/operators/zero_gradient_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/opt/annotations.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/opt/backend_cutting.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/opt/backend_transformer_base.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/opt/bound_shape_inferencer.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/opt/converter.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/opt/device.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/opt/distributed.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/opt/fusion.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/opt/mobile.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/opt/onnx_convert.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/opt/onnxifi_transformer.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/opt/optimize_ideep.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/opt/optimizer.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/opt/passes.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/opt/shape_info.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/perfkernels/adagrad.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/perfkernels/common.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/perfkernels/cvtsh_ss_bugfix.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/perfkernels/embedding_lookup.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/perfkernels/fused_8bit_rowwise_embedding_lookup.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/perfkernels/math.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/perfkernels/typed_axpy.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/predictor/predictor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/predictor/predictor_config.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/predictor/predictor_utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/proto/caffe2.pb.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/proto/caffe2_legacy.pb.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/proto/caffe2_pb.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/proto/hsm.pb.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/proto/metanet.pb.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/proto/predictor_consts.pb.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/proto/prof_dag.pb.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/proto/torch.pb.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/proto/torch_pb.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/python/dlpack.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/python/pybind_state.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/python/pybind_state_dlpack.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/python/pybind_state_registry.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/queue/blobs_queue.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/queue/blobs_queue_db.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/queue/queue_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/queue/rebatching_queue.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/queue/rebatching_queue_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/serialize/file_adapter.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/serialize/inline_container.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/serialize/istream_adapter.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/serialize/read_adapter_interface.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/sgd/adadelta_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/sgd/adagrad_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/sgd/adam_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/sgd/clip_tensor_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/sgd/fp16_momentum_sgd_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/sgd/fp32_momentum_sgd_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/sgd/ftrl_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/sgd/gftrl_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/sgd/iter_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/sgd/lars_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/sgd/learning_rate_adaption_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/sgd/learning_rate_functors.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/sgd/learning_rate_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/sgd/momentum_sgd_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/sgd/rmsprop_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/sgd/wngrad_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/sgd/yellowfin_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/transforms/common_subexpression_elimination.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/transforms/conv_to_nnpack_transform.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/transforms/pattern_net_transform.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/transforms/single_op_transform.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/bench_utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/cast.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/cblas.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/conversions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/cpu_neon.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/cpuid.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/eigen_utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/filler.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/fixed_divisor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/map_utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/math-detail.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/math.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/murmur_hash3.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/proto_convert.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/proto_utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/proto_wrap.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/signal_handler.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/simple_queue.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/smart_tensor_printer.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/string_utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/utils/zmq_helper.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/video/optical_flow.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/video/video_decoder.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/video/video_input_op.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/caffe2/video/video_io.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/attr.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/buffer_info.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/cast.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/chrono.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/common.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/complex.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/detail/class.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/detail/common.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/detail/descr.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/detail/init.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/detail/internals.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/detail/typeid.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/eigen.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/embed.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/eval.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/functional.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/iostream.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/numpy.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/operators.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/options.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/pybind11.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/pytypes.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/stl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/pybind11/stl_bind.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/CudaIPCTypes.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/DataLoader.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/Device.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/Dtype.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/DynamicTypes.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/Exceptions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/Generator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/Layout.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/Module.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/PtrWrapper.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/PythonTypes.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/Size.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/Storage.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/StorageDefs.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/THP.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/THP_export.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/TypeInfo.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/Types.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/WindowsTorchApiMacro.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/all.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/arg.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/cuda.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/dataloader.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/dataloader/base.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/dataloader_options.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/datasets.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/datasets/base.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/datasets/map.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/datasets/shared.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/detail/queue.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/example.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/iterator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/samplers.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/samplers/base.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/samplers/random.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/samplers/stream.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/transforms.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/transforms/base.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/transforms/collate.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/transforms/stack.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/data/worker_exception.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/detail/static.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/expanding_array.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/jit.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn/cloneable.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn/init.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn/module.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn/modules.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn/modules/any.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn/modules/conv.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn/modules/functional.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn/modules/linear.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn/modules/named_any.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn/modules/sequential.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/nn/pimpl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/optim.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/optim/adagrad.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/optim/adam.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/optim/lbfgs.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/optim/optimizer.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/optim/rmsprop.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/optim/serialize.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/optim/sgd.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/ordered_dict.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/python.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/serialize.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/serialize/archive.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/serialize/input-archive.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/serialize/output-archive.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/serialize/tensor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/torch.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/types.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/api/include/torch/utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/VariableTypeUtils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/anomaly_mode.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/autograd.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/edge.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/engine.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/function.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/function_hook.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/functions/accumulate_grad.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/functions/basic_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/functions/comm.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/functions/pybind.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/functions/tensor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/functions/utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/generated/Functions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/generated/VariableType.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/generated/python_functions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/generated/python_nn_functions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/generated/python_nn_functions_dispatch.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/generated/python_torch_functions_dispatch.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/generated/python_variable_methods_dispatch.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/generated/variable_factories.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/grad_mode.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/input_buffer.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/input_metadata.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/profiler.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/python_anomaly_mode.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/python_cpp_function.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/python_engine.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/python_function.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/python_hook.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/python_legacy_variable.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/python_variable.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/python_variable_indexing.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/record_function.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/saved_variable.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/symbolic.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/type_and_shape.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/utils/python_arg_parsing.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/utils/python_error_messages.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/utils/wrap_outputs.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/autograd/variable.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/byte_order.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/copy_utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/cuda/Event.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/cuda/Module.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/cuda/Storage.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/cuda/Stream.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/cuda/THCP.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/cuda/comm.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/cuda/device_set.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/cuda/nccl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/cuda/override_macros.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/cuda/python_comm.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/cuda/python_nccl.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/cuda/restore_macros.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/cuda/serialization.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/cuda/undef_macros.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/cuda/utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/alias_info.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/argument_spec.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/attributes.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/autodiff.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/code_template.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/constants.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/custom_operator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/dynamic_dag.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/export.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/graph_executor.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/graph_node_list.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/hooks_for_testing.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/import.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/import_export_helpers.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/import_source.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/init.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/interned_strings_class.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/interpreter.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/ir.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/ir_views.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/irparser.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/named_value.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/netdef_converter.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/node_hashing.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/operator.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/pass_manager.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/alias_analysis.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/batch_mm.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/canonicalize.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/canonicalize_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/constant_pooling.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/constant_propagation.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/dead_code_elimination.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/erase_fork_wait.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/erase_number_types.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/graph_fuser.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/inline_fork_wait.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/inplace_check.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/loop_unrolling.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/lower_grad_of.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/lower_tuples.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/onnx.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/peephole.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/python_print.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/quantization.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/remove_expands.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/remove_inplace_ops.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/requires_grad_analysis.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/shape_analysis.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/passes/specialize_autogradzero.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/pickler.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/profiling_record.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/pybind.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/pybind_utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/python_arg_flatten.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/python_ir.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/python_tracer.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/resource_guard.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/scope.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/builtin_functions.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/compilation_unit.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/compiler.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/edit_distance.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/error_report.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/final_returns.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/function_schema_parser.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/init.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/jit_exception.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/lexer.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/logging.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/module.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/module_python.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/parse_string_literal.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/parser.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/python_tree_views.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/resolver.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/schema_matching.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/schema_type_parser.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/script_type_parser.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/slot.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/strtod.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/sugared_value.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/tree.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/script/tree_views.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/source_location.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/source_range.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/subgraph_matcher.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/symbolic_script.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/symbolic_variable.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/testing/file_check.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/tracer.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/tracing_state.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/jit/variable_tensor_list.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/onnx/init.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/onnx/onnx.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/python_headers.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/serialization.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/auto_gil.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/cuda_enabled.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/cuda_lazy_init.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/disallow_copy.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/hash.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/invalid_arguments.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/memory.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/numpy_stub.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/object_ptr.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/pybind.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/python_arg_parser.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/python_compat.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/python_numbers.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/python_scalars.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/python_strings.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/python_stub.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/python_tuples.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/six.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/structseq.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/tensor_apply.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/tensor_dtypes.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/tensor_flatten.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/tensor_layouts.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/tensor_list.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/tensor_new.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/tensor_numpy.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/tensor_types.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/tuple_parser.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/csrc/utils/variadic.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/extension.h</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/include/torch/script.h</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/jit/__init__.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/jit/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/jit/__pycache__/_logging.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/jit/__pycache__/_pickle.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/jit/__pycache__/annotations.cpython-36.pyc</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/jit/__pycache__/batchop.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/jit/__pycache__/frontend.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/jit/__pycache__/quantized.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/jit/__pycache__/supported_ops.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/jit/_logging.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/jit/_pickle.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/jit/annotations.py</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/jit/batchop.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/jit/frontend.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/jit/quantized.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/jit/supported_ops.py</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/THCUNN.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/THNN.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/ATen.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/AccumulateType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Allocator.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/ArrayRef.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Backend.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Backtrace.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CPUApplyUtils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CPUByteType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CPUCharType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CPUDoubleType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CPUFixedAllocator.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CPUFloatType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CPUGeneral.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CPUGenerator.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CPUHalfType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CPUIntType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CPULongType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CPUShortType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CPUTypeDefault.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CUDAByteType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CUDACharType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CUDADoubleType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CUDAFloatType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CUDAGenerator.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CUDAHalfType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CUDAIntType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CUDALongType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CUDAShortType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/CheckGenerator.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Config.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Context.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/DLConvertor.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Device.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/DeviceGuard.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/DimVector.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Dispatch.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/ExpandUtils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Formatting.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Functions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Generator.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Half.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/InferSize.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/InitialTensorOptions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Layout.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/LegacyTHDispatch.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/LegacyTHDispatcher.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/MatrixRef.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/NativeFunctions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Parallel.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/RegisterCPU.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/RegisterCUDA.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Scalar.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/ScalarOps.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/ScalarType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/SmallVector.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/SparseCPUByteType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/SparseCPUCharType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/SparseCPUDoubleType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/SparseCPUFloatType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/SparseCPUIntType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/SparseCPULongType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/SparseCPUShortType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/SparseCUDAByteType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/SparseCUDACharType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/SparseCUDADoubleType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/SparseCUDAFloatType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/SparseCUDAIntType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/SparseCUDALongType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/SparseCUDAShortType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/SparseTensorImpl.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/SparseTensorUtils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Storage.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Tensor.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/TensorAccessor.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/TensorGeometry.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/TensorOperators.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/TensorOptions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/TensorUtils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Type.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/TypeDefault.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/TypeExtendedInterface.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/UndefinedType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/Utils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/WrapDimUtils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/WrapDimUtilsMulti.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/ATenGeneral.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/Backtrace.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/DefaultDtype.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/Deprecated.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/DimVector.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/Formatting.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/Generator.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/Half.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/LegacyDeviceTypeInit.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/LegacyTypeDispatch.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/Macros.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/Range.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/Reduction.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/Scalar.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/ScalarType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/SparseTensorRef.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/Tensor.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/TensorAccessor.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/TensorImpl.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/TensorMethods.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/TensorOptions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/Type.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/UndefinedTensorImpl.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/VariableHooksInterface.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/WrapDimMinimal.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/alias_info.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/aten_interned_strings.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/blob.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/context_base.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/function_schema.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/functional.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/interned_strings.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/interned_strings_class.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/ivalue.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/jit_type.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/thread_pool.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/core/typeid.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cpu/FlushDenormal.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cpu/vml.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/ATenCUDAGeneral.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/Array.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/CUDAApplyUtils.cuh</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/CUDAConfig.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/CUDAContext.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/CUDADevice.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/CUDAEvent.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/CUDAGuard.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/CUDAMultiStreamGuard.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/CUDAStream.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/CUDATensorMethods.cuh</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/CUDATypeDefault.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/CUDAUtils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/Exceptions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/NumericLimits.cuh</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/PinnedMemoryAllocator.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/_curand_mtgp32_host.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/detail/CUDAGuardImpl.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/detail/CUDAHooks.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/detail/IndexUtils.cuh</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/detail/KernelUtils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/detail/OffsetCalculator.cuh</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cuda/detail/TensorInfo.cuh</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cudnn/Descriptors.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cudnn/Exceptions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cudnn/Handle.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cudnn/Handles.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cudnn/Types.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cudnn/Utils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/cudnn/cudnn-wrapper.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/detail/CPUGuardImpl.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/detail/CUDAHooksInterface.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/detail/ComplexHooksInterface.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/detail/FunctionTraits.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/detail/HIPHooksInterface.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/detail/ScalarTypeConversions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/div_rtn.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/ATen/dlpack.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/TH.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THAllocator.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THBlas.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THDiskFile.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THFile.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THFilePrivate.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THGeneral.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THGenerateAllTypes.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THGenerateByteType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THGenerateCharType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THGenerateDoubleType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THGenerateFloatType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THGenerateFloatTypes.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THGenerateHalfType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THGenerateIntType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THGenerateIntTypes.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THGenerateLongType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THGenerateShortType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THGenerator.hpp</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THHalf.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THLapack.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THLogAdd.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THMath.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THMemoryFile.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THRandom.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THSize.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THStorage.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THStorageFunctions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THStorageFunctions.hpp</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THTensor.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THTensor.hpp</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THTensorApply.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THTensorDimApply.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/THVector.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/generic/THBlas.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/generic/THLapack.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/generic/THStorage.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/generic/THStorageCopy.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/generic/THTensor.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/generic/THTensor.hpp</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/generic/THTensorConv.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/generic/THTensorFastGetSet.hpp</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/generic/THTensorLapack.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/generic/THTensorMath.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/generic/THTensorRandom.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/TH/generic/THVector.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/Device.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/DeviceGuard.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/DeviceType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/Half-inl.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/Half.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/Stream.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/StreamGuard.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/core/Allocator.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/core/Backend.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/core/Layout.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/core/Scalar.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/core/ScalarType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/core/ScalarTypeUtils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/core/Storage.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/core/StorageImpl.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/core/TensorTypeId.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/core/TensorTypeIdRegistration.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/core/bitcasts.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/cuda/CUDAException.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/cuda/CUDAFunctions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/cuda/CUDAMacros.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/cuda/CUDAMathCompat.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/cuda/impl/CUDATest.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/impl/DeviceGuardImplInterface.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/impl/FakeGuardImpl.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/impl/InlineDeviceGuard.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/impl/InlineStreamGuard.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/impl/VirtualGuardImpl.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/macros/Export.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/macros/Macros.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/macros/cmake_macros.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/AlignOf.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/Array.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/ArrayRef.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/Backtrace.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/C++17.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/Exception.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/Flags.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/IdWrapper.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/LeftRight.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/Logging.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/Metaprogramming.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/Optional.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/Registry.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/SmallVector.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/StringUtil.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/Type.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/TypeList.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/TypeTraits.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/UniqueVoidPtr.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/flat_hash_map.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/intrusive_ptr.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/logging_is_google_glog.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/logging_is_not_google_glog.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/string_utils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/c10/util/typeid.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/THCCachingAllocator_gpu.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/allocator.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/asan.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/blob.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/blob_serialization.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/blob_serializer_base.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/blob_stats.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/common.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/common_cudnn.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/common_gpu.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/common_omp.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/context.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/context_base.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/context_gpu.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/cudnn_wrappers.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/db.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/event.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/event_cpu.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/flags.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/graph.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/init.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/logging.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/macros.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/memonger.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/module.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/net.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/net_async_base.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/net_async_scheduling.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/net_async_tracing.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/net_dag_utils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/net_simple.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/net_simple_refcount.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/numa.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/observer.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/operator.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/operator_c10wrapper.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/operator_gradient.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/operator_schema.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/plan_executor.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/prof_dag_counters.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/qtensor.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/qtensor_serialization.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/scope_guard.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/static_tracepoint.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/static_tracepoint_elfx86.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/stats.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/storage.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/tensor.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/tensor_impl.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/tensor_int8.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/timer.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/transform.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/types.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/core/workspace.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/proto/caffe2.pb.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/proto/caffe2_legacy.pb.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/proto/caffe2_pb.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/proto/hsm.pb.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/proto/metanet.pb.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/proto/predictor_consts.pb.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/proto/prof_dag.pb.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/proto/torch.pb.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/proto/torch_pb.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/bench_utils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/cast.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/cblas.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/conversions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/cpu_neon.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/cpuid.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/eigen_utils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/filler.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/fixed_divisor.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/map_utils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/math-detail.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/math.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/math_utils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/murmur_hash3.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/proto_convert.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/proto_utils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/proto_wrap.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/signal_handler.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/simple_queue.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/smart_tensor_printer.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/string_utils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/thread_name.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/thread_pool.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/caffe2/utils/zmq_helper.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/attr.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/buffer_info.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/cast.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/chrono.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/common.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/complex.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/detail/class.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/detail/common.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/detail/descr.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/detail/init.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/detail/internals.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/detail/typeid.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/eigen.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/embed.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/eval.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/functional.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/iostream.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/numpy.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/operators.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/options.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/pybind11.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/pytypes.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/stl.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/pybind11/stl_bind.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/DataLoader.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/Device.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/Dtype.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/DynamicTypes.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/Exceptions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/Generator.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/Layout.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/Module.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/PtrWrapper.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/PythonTypes.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/Size.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/Storage.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/StorageDefs.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/THP.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/THP_API.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/THP_export.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/TypeInfo.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/Types.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/WindowsTorchApiMacro.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/all.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/arg.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/cuda.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/dataloader.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/dataloader_options.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/datasets.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/datasets/base.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/datasets/map.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/datasets/mnist.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/datasets/shared.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/datasets/tensor.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/detail/queue.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/detail/sequencers.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/example.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/iterator.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/samplers.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/samplers/base.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/samplers/random.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/samplers/sequential.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/samplers/serialize.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/samplers/stream.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/transforms.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/transforms/base.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/transforms/collate.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/transforms/lambda.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/transforms/stack.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/transforms/tensor.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/data/worker_exception.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/detail/static.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/expanding_array.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/jit.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/nn.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/nn/cloneable.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/nn/init.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/nn/module.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/nn/modules.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/nn/modules/any.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/nn/modules/conv.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/nn/modules/dropout.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/nn/modules/embedding.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/nn/modules/functional.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/nn/modules/linear.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/nn/modules/rnn.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/nn/modules/sequential.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/nn/pimpl-inl.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/nn/pimpl.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/optim.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/optim/adagrad.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/optim/adam.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/optim/lbfgs.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/optim/optimizer.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/optim/rmsprop.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/optim/serialize.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/optim/sgd.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/ordered_dict.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/python.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/serialize.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/serialize/archive.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/serialize/input-archive.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/serialize/output-archive.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/serialize/tensor.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/torch.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/types.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/api/include/torch/utils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/VariableTypeUtils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/anomaly_mode.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/autograd.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/edge.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/engine.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/function.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/function_hook.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/generated/Functions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/generated/VariableType.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/generated/python_functions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/generated/python_nn_functions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/generated/python_nn_functions_dispatch.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/generated/python_torch_functions_dispatch.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/generated/python_variable_methods_dispatch.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/generated/variable_factories.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/grad_mode.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/input_buffer.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/input_metadata.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/profiler.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/python_anomaly_mode.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/python_cpp_function.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/python_engine.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/python_function.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/python_hook.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/python_legacy_variable.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/python_variable.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/python_variable_indexing.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/saved_variable.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/symbolic.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/type_and_shape.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/variable.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/autograd/variable_version.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/byte_order.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/copy_utils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/cuda/Module.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/cuda/Storage.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/cuda/Stream.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/cuda/THCP.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/cuda/comm.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/cuda/cuda_check.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/cuda/device_set.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/cuda/nccl.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/cuda/override_macros.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/cuda/python_comm.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/cuda/python_nccl.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/cuda/restore_macros.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/cuda/serialization.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/cuda/undef_macros.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/cuda/utils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/alias_info.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/argument_spec.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/assertions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/attributes.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/autodiff.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/code_template.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/constants.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/custom_operator.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/dynamic_dag.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/export.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/function_schema.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/generic_if.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/graph_executor.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/graph_node_list.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/hooks_for_testing.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/import.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/import_method.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/init.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/interned_strings.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/interned_strings_class.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/interpreter.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/ir.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/ir_views.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/ivalue.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/named_value.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/node_hashing.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/operator.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/alias_analysis.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/batch_mm.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/canonicalize.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/canonicalize_ops.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/common_subexpression_elimination.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/constant_pooling.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/constant_propagation.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/dead_code_elimination.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/erase_number_types.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/graph_fuser.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/inplace_check.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/loop_unrolling.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/lower_grad_of.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/lower_tuples.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/onnx.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/peephole.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/python_print.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/remove_expands.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/remove_inplace_ops.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/requires_grad_analysis.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/shape_analysis.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/specialize_undef.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/passes/to_batch.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/pybind.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/pybind_utils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/python_arg_flatten.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/python_ir.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/python_tracer.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/resource_guard.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/scope.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/script/builtin_functions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/script/compiler.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/script/error_report.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/script/init.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/script/jit_exception.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/script/lexer.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/script/module.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/script/parse_string_literal.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/script/parser.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/script/python_tree_views.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/script/tree.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/script/tree_views.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/source_location.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/source_range.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/stack.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/symbolic_variable.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/tracer.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/tracing_state.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/type.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/variable_tensor_list.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/python_headers.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/serialization.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/auto_gil.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/cuda_enabled.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/cuda_lazy_init.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/disallow_copy.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/functional.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/hash.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/invalid_arguments.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/memory.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/numpy_stub.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/object_ptr.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/pybind.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/python_arg_parser.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/python_compat.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/python_numbers.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/python_scalars.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/python_strings.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/python_stub.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/python_tuples.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/tempfile.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/tensor_apply.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/tensor_dtypes.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/tensor_flatten.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/tensor_layouts.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/tensor_list.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/tensor_new.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/tensor_numpy.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/tensor_types.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/tuple_parser.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/utils/variadic.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/csrc/variable_tensor_functions.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/extension.h</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/include/torch/script.h</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/libc10.so</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/libcaffe2.so</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/libcaffe2_detectron_ops.so</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/libcaffe2_module_test_dynamic.so</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/libcaffe2_observers.so</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/libfoxi.so</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/libfoxi_dummy.so</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/libonnxifi.so</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/libonnxifi_dummy.so</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/libshm.so</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/libtorch.so</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/libtorch.so.1</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/libtorch_python.so</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/lib/torch_shm_manager</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/multiprocessing/__init__.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/multiprocessing/__pycache__/__init__.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/multiprocessing/__pycache__/pool.cpython-36.pyc</Path>
@@ -1805,7 +2704,9 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/__init__.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/__pycache__/_VF.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/__pycache__/_qscheme.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/__pycache__/_reduction.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/__pycache__/cpp.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/__pycache__/functional.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/__pycache__/grad.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/__pycache__/init.cpython-36.pyc</Path>
@@ -1818,16 +2719,15 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/_functions/thnn/__pycache__/auto.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/_functions/thnn/__pycache__/auto_double_backwards.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/_functions/thnn/__pycache__/auto_symbolic.cpython-36.pyc</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/_functions/thnn/__pycache__/fold.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/_functions/thnn/__pycache__/normalization.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/_functions/thnn/__pycache__/sparse.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/_functions/thnn/auto.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/_functions/thnn/auto_double_backwards.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/_functions/thnn/auto_symbolic.py</Path>
- <Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/_functions/thnn/fold.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/_functions/thnn/normalization.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/_functions/thnn/sparse.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/_functions/vision.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/_qscheme.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/_reduction.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/backends/__init__.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/backends/__pycache__/__init__.cpython-36.pyc</Path>
@@ -1835,11 +2735,13 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/backends/__pycache__/thnn.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/backends/backend.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/backends/thnn.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/cpp.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/functional.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/grad.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/init.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/modules/__init__.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/modules/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/modules/__pycache__/_functions.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/modules/__pycache__/activation.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/modules/__pycache__/adaptive.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/modules/__pycache__/batchnorm.cpython-36.pyc</Path>
@@ -1860,6 +2762,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/modules/__pycache__/sparse.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/modules/__pycache__/upsampling.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/modules/__pycache__/utils.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/modules/_functions.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/modules/activation.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/modules/adaptive.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/nn/modules/batchnorm.py</Path>
@@ -1924,6 +2827,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/onnx/symbolic.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/onnx/utils.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/__init__.pyi</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/__pycache__/__init__.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/__pycache__/adadelta.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/__pycache__/adagrad.cpython-36.pyc</Path>
@@ -1940,15 +2844,21 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/adadelta.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/adagrad.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/adam.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/adam.pyi</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/adamax.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/asgd.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/lbfgs.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/lr_scheduler.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/lr_scheduler.pyi</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/optimizer.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/optimizer.pyi</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/rmsprop.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/rprop.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/sgd.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/sgd.pyi</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/optim/sparse_adam.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/py.typed</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/quasirandom.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/random.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/serialization.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/share/cmake/ATen/ATenConfig.cmake</Path>
@@ -1983,6 +2893,117 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/sparse/__pycache__/__init__.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/storage.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/tensor.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/AlgorithmsTest</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/BinaryMatchImplTest</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/GraphTest</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/MatchTest</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/NeuralNetTest</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/SubgraphMatcherTest</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/TarjansImplTest</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/TensorImpl_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/TopoSortTest</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/apply_utils_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/atest</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/backend_cutting_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/basic</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/batch_matmul_op_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/blob_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/boolean_unmask_ops_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/bound_shape_inference_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/broadcast_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_Array_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_DeviceGuard_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_Half_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_InlineDeviceGuard_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_InlineStreamGuard_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_LeftRight_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_Metaprogramming_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_StreamGuard_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_TensorTypeId_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_TypeList_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_TypeTraits_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_either_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_flags_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_intrusive_ptr_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_logging_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_registry_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_tempfile_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/c10_typeid_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/cast_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/common_subexpression_elimination_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/common_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/context_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/conv_to_nnpack_transform_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/conv_transpose_op_mobile_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/converter_nomigraph_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/cpuid_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/data_filler_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/dead_code_elim_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/depthwise3x3_conv_op_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/device_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/distributed_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/dlconvertor_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/elementwise_op_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/event_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/extension_backend_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/fatal_signal_asan_no_sig_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/fixed_divisor_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/generate_proposals_op_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/generate_proposals_op_util_boxes_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/generate_proposals_op_util_nms_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/graph_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/half_float_ops_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/half_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/init_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/inline_container_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/int8_roi_align_op_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/int8_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/kernel_function_legacy_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/kernel_function_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/kernel_functor_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/kernel_lambda_legacy_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/kernel_lambda_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/kernel_stackbased_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/math_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/mobile_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/module_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/mpi_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/native_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/net_async_tracing_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/net_dag_utils_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/net_simple_refcount_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/net_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/nnpack_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/observer_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/op_registration_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/operator_schema_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/operator_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/parallel_net_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/pattern_net_transform_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/predictor_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/proto_utils_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/quantized_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/scalar_tensor_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/scalar_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/simple_queue_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/smart_tensor_printer_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/ssa_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/stats_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/string_ops_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/tensor_interop_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/test_parallel</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/text_file_reader_utils_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/thread_init_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/time_observer_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/timer_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/transform_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/undefined_tensor_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/utility_ops_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/verify_api_visibility</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/weakref_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/workspace_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/wrapdim_test</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/test/xla_tensor_test</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/testing/__init__.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/testing/__pycache__/__init__.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/__init__.py</Path>
@@ -1994,6 +3015,7 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/__pycache__/dlpack.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/__pycache__/file_baton.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/__pycache__/hooks.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/__pycache__/mkldnn.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/__pycache__/model_zoo.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/_cpp_extension_versioner.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/backcompat/__init__.py</Path>
@@ -2006,31 +3028,104 @@
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/collect_env.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/cpp_extension.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/__init__.pyi</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/__pycache__/__init__.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/__pycache__/dataloader.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/__pycache__/dataset.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/__pycache__/distributed.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/__pycache__/sampler.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/_utils/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/_utils/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/_utils/__pycache__/collate.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/_utils/__pycache__/pin_memory.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/_utils/__pycache__/signal_handling.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/_utils/__pycache__/worker.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/_utils/collate.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/_utils/pin_memory.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/_utils/signal_handling.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/_utils/worker.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/dataloader.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/dataloader.pyi</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/dataset.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/dataset.pyi</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/distributed.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/distributed.pyi</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/sampler.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/data/sampler.pyi</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/dlpack.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/ffi/__init__.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/ffi/__pycache__/__init__.cpython-36.pyc</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/file_baton.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/hooks.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/mkldnn.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/model_zoo.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/__pycache__/__init__.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/__pycache__/_caffe2_graph.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/__pycache__/_convert_np.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/__pycache__/_embedding.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/__pycache__/_onnx_graph.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/__pycache__/_proto_graph.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/__pycache__/_pytorch_graph.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/__pycache__/_utils.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/__pycache__/summary.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/__pycache__/writer.cpython-36.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/_caffe2_graph.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/_convert_np.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/_embedding.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/_onnx_graph.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/_proto_graph.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/_pytorch_graph.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/_utils.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/summary.py</Path>
+ <Path fileType="library">/usr/lib/python3.6/site-packages/torch/utils/tensorboard/writer.py</Path>
<Path fileType="library">/usr/lib/python3.6/site-packages/torch/version.py</Path>
</Files>
</Package>
+ <Package>
+ <Name>pytorch-devel</Name>
+ <Summary xml:lang="en">PyTorch C++ API</Summary>
+ <Description xml:lang="en">PyTorch is an optimized tensor library for deep learning using GPUs and CPUs.
+</Description>
+ <PartOf>programming.devel</PartOf>
+ <RuntimeDependencies>
+ <Dependency release="2">pytorch</Dependency>
+ </RuntimeDependencies>
+ <Files>
+ <Path fileType="header">/usr/include/ATen</Path>
+ <Path fileType="header">/usr/include/TH</Path>
+ <Path fileType="header">/usr/include/THCUNN</Path>
+ <Path fileType="header">/usr/include/THNN</Path>
+ <Path fileType="header">/usr/include/c10</Path>
+ <Path fileType="header">/usr/include/caffe2</Path>
+ <Path fileType="header">/usr/include/pybind11</Path>
+ <Path fileType="header">/usr/include/torch</Path>
+ <Path fileType="library">/usr/lib64/cmake/ATen</Path>
+ <Path fileType="library">/usr/lib64/cmake/Caffe2</Path>
+ <Path fileType="library">/usr/lib64/cmake/Gloo</Path>
+ <Path fileType="library">/usr/lib64/cmake/Torch</Path>
+ <Path fileType="library">/usr/lib64/libc10.so</Path>
+ <Path fileType="library">/usr/lib64/libcaffe2.so</Path>
+ <Path fileType="library">/usr/lib64/libcaffe2_detectron_ops.so</Path>
+ <Path fileType="library">/usr/lib64/libcaffe2_module_test_dynamic.so</Path>
+ <Path fileType="library">/usr/lib64/libcaffe2_observers.so</Path>
+ <Path fileType="library">/usr/lib64/libfoxi.so</Path>
+ <Path fileType="library">/usr/lib64/libfoxi_dummy.so</Path>
+ <Path fileType="library">/usr/lib64/libonnxifi.so</Path>
+ <Path fileType="library">/usr/lib64/libonnxifi_dummy.so</Path>
+ <Path fileType="library">/usr/lib64/libshm.so</Path>
+ <Path fileType="library">/usr/lib64/libtorch.so</Path>
+ <Path fileType="library">/usr/lib64/libtorch.so.1</Path>
+ <Path fileType="library">/usr/lib64/libtorch_python.so</Path>
+ </Files>
+ </Package>
<History>
- <Update release="1">
- <Date>2019-02-10</Date>
- <Version>1.0.1</Version>
+ <Update release="2">
+ <Date>2019-06-28</Date>
+ <Version>1.1.0</Version>
<Comment>Packaging update</Comment>
<Name>Longwu Ou</Name>
<Email>xulongwu4@gmail.com</Email>
</Update>
</History>
</PISI>
\ No newline at end of file

File Metadata

Mime Type
text/plain
Expires
Apr 27 2023, 6:47 AM (15 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5790062
Default Alt Text
D6209.id.diff (328 KB)

Event Timeline