├── .gitignore ├── .idea ├── codeStyles │ └── Project.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── Exporting Squeezenet to mobile.ipynb ├── LICENSE ├── README.md ├── README.orig.md ├── app ├── .gitignore ├── CMakeLists.txt ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── facebook │ │ └── f8demo │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── squeeze_init_net.pb │ │ └── squeeze_predict_net.pb │ ├── cpp │ │ ├── ATen │ │ │ ├── ATen.h │ │ │ ├── AccumulateType.h │ │ │ ├── Allocator.h │ │ │ ├── ArrayRef.h │ │ │ ├── Backend.h │ │ │ ├── Backtrace.h │ │ │ ├── CPUApplyUtils.h │ │ │ ├── CPUByteType.h │ │ │ ├── CPUCharType.h │ │ │ ├── CPUDoubleType.h │ │ │ ├── CPUFixedAllocator.h │ │ │ ├── CPUFloatType.h │ │ │ ├── CPUGeneral.h │ │ │ ├── CPUGenerator.h │ │ │ ├── CPUHalfType.h │ │ │ ├── CPUIntType.h │ │ │ ├── CPULongType.h │ │ │ ├── CPUShortType.h │ │ │ ├── CPUTypeDefault.h │ │ │ ├── CUDAByteType.h │ │ │ ├── CUDACharType.h │ │ │ ├── CUDADoubleType.h │ │ │ ├── CUDAFloatType.h │ │ │ ├── CUDAGenerator.h │ │ │ ├── CUDAGuard.h │ │ │ ├── CUDAHalfType.h │ │ │ ├── CUDAIntType.h │ │ │ ├── CUDALongType.h │ │ │ ├── CUDAShortType.h │ │ │ ├── CUDAStream.h │ │ │ ├── CheckGenerator.h │ │ │ ├── Config.h │ │ │ ├── Context.h │ │ │ ├── DLConvertor.h │ │ │ ├── Device.h │ │ │ ├── DeviceGuard.h │ │ │ ├── DimVector.h │ │ │ ├── Dispatch.h │ │ │ ├── Error.h │ │ │ ├── ExpandUtils.h │ │ │ ├── Formatting.h │ │ │ ├── Functions.h │ │ │ ├── Generator.h │ │ │ ├── Half.h │ │ │ ├── InferSize.h │ │ │ ├── InitialTensorOptions.h │ │ │ ├── Layout.h │ │ │ ├── LegacyTHCPUByteDispatcher.h │ │ │ ├── LegacyTHCPUCharDispatcher.h │ │ │ ├── LegacyTHCPUDoubleDispatcher.h │ │ │ ├── LegacyTHCPUFloatDispatcher.h │ │ │ ├── LegacyTHCPUHalfDispatcher.h │ │ │ ├── LegacyTHCPUIntDispatcher.h │ │ │ ├── LegacyTHCPULongDispatcher.h │ │ │ ├── LegacyTHCPUShortDispatcher.h │ │ │ ├── LegacyTHCUDAByteDispatcher.h │ │ │ ├── LegacyTHCUDACharDispatcher.h │ │ │ ├── LegacyTHCUDADoubleDispatcher.h │ │ │ ├── LegacyTHCUDAFloatDispatcher.h │ │ │ ├── LegacyTHCUDAHalfDispatcher.h │ │ │ ├── LegacyTHCUDAIntDispatcher.h │ │ │ ├── LegacyTHCUDALongDispatcher.h │ │ │ ├── LegacyTHCUDAShortDispatcher.h │ │ │ ├── LegacyTHDispatch.h │ │ │ ├── LegacyTHDispatcher.h │ │ │ ├── LegacyTHFunctions.h │ │ │ ├── MatrixRef.h │ │ │ ├── NativeFunctions.h │ │ │ ├── OptionsGuard.h │ │ │ ├── Parallel.h │ │ │ ├── RegisterCPU.h │ │ │ ├── RegisterCUDA.h │ │ │ ├── Scalar.h │ │ │ ├── ScalarOps.h │ │ │ ├── ScalarType.h │ │ │ ├── SmallVector.h │ │ │ ├── SparseCPUByteType.h │ │ │ ├── SparseCPUCharType.h │ │ │ ├── SparseCPUDoubleType.h │ │ │ ├── SparseCPUFloatType.h │ │ │ ├── SparseCPUIntType.h │ │ │ ├── SparseCPULongType.h │ │ │ ├── SparseCPUShortType.h │ │ │ ├── SparseCUDAByteType.h │ │ │ ├── SparseCUDACharType.h │ │ │ ├── SparseCUDADoubleType.h │ │ │ ├── SparseCUDAFloatType.h │ │ │ ├── SparseCUDAIntType.h │ │ │ ├── SparseCUDALongType.h │ │ │ ├── SparseCUDAShortType.h │ │ │ ├── SparseTensorImpl.h │ │ │ ├── SparseTensorUtils.h │ │ │ ├── Storage.h │ │ │ ├── StorageImpl.h │ │ │ ├── Tensor.h │ │ │ ├── TensorAccessor.h │ │ │ ├── TensorGeometry.h │ │ │ ├── TensorImpl.h │ │ │ ├── TensorOperators.h │ │ │ ├── TensorOptions.h │ │ │ ├── TensorUtils.h │ │ │ ├── Type.h │ │ │ ├── TypeDefault.h │ │ │ ├── TypeExtendedInterface.h │ │ │ ├── UndefinedType.h │ │ │ ├── Utils.h │ │ │ ├── WrapDimUtils.h │ │ │ ├── WrapDimUtilsMulti.h │ │ │ ├── core │ │ │ │ ├── ATenCoreTest.h │ │ │ │ ├── ATenGeneral.h │ │ │ │ ├── AlignOf.h │ │ │ │ ├── Allocator.h │ │ │ │ ├── ArrayRef.h │ │ │ │ ├── Backend.h │ │ │ │ ├── Backtrace.h │ │ │ │ ├── DefaultTensorOptions.h │ │ │ │ ├── Deprecated.h │ │ │ │ ├── Device.h │ │ │ │ ├── DeviceType.h │ │ │ │ ├── DimVector.h │ │ │ │ ├── Error.h │ │ │ │ ├── Formatting.h │ │ │ │ ├── Generator.h │ │ │ │ ├── Half-inl.h │ │ │ │ ├── Half.h │ │ │ │ ├── IdWrapper.h │ │ │ │ ├── Layout.h │ │ │ │ ├── LegacyDeviceTypeInit.h │ │ │ │ ├── LegacyTypeDispatch.h │ │ │ │ ├── Macros.h │ │ │ │ ├── OptionsGuard.h │ │ │ │ ├── Range.h │ │ │ │ ├── Reduction.h │ │ │ │ ├── Scalar.h │ │ │ │ ├── ScalarType.h │ │ │ │ ├── ScalarTypeUtils.h │ │ │ │ ├── SmallVector.h │ │ │ │ ├── SparseTensorRef.h │ │ │ │ ├── Storage.h │ │ │ │ ├── StorageImpl.h │ │ │ │ ├── Tensor.h │ │ │ │ ├── TensorAccessor.h │ │ │ │ ├── TensorImpl.h │ │ │ │ ├── TensorMethods.h │ │ │ │ ├── TensorOptions.h │ │ │ │ ├── TensorTypeId.h │ │ │ │ ├── TensorTypeIdRegistration.h │ │ │ │ ├── Type.h │ │ │ │ ├── UndefinedTensorImpl.h │ │ │ │ ├── UniqueVoidPtr.h │ │ │ │ ├── VariableHooksInterface.h │ │ │ │ ├── WrapDimMinimal.h │ │ │ │ ├── alias_info.h │ │ │ │ ├── aten_interned_strings.h │ │ │ │ ├── blob.h │ │ │ │ ├── context_base.h │ │ │ │ ├── function_schema.h │ │ │ │ ├── functional.h │ │ │ │ ├── interned_strings.h │ │ │ │ ├── interned_strings_class.h │ │ │ │ ├── intrusive_ptr.h │ │ │ │ ├── ivalue.h │ │ │ │ ├── jit_type.h │ │ │ │ ├── thread_pool.h │ │ │ │ └── typeid.h │ │ │ ├── cpu │ │ │ │ ├── FlushDenormal.h │ │ │ │ └── vml.h │ │ │ ├── cuda │ │ │ │ ├── ATenCUDAGeneral.h │ │ │ │ ├── Array.h │ │ │ │ ├── CUDAApplyUtils.cuh │ │ │ │ ├── CUDAConfig.h │ │ │ │ ├── CUDAContext.h │ │ │ │ ├── CUDADevice.h │ │ │ │ ├── CUDAEvent.h │ │ │ │ ├── CUDAGuard.h │ │ │ │ ├── CUDAMultiStreamGuard.h │ │ │ │ ├── CUDAStream.h │ │ │ │ ├── CUDATensorMethods.cuh │ │ │ │ ├── CUDATypeDefault.h │ │ │ │ ├── CUDAUtils.h │ │ │ │ ├── Exceptions.h │ │ │ │ ├── NumericLimits.cuh │ │ │ │ ├── PinnedMemoryAllocator.h │ │ │ │ ├── _curand_mtgp32_host.h │ │ │ │ └── detail │ │ │ │ │ ├── CUDAHooks.h │ │ │ │ │ ├── IndexUtils.cuh │ │ │ │ │ ├── KernelUtils.h │ │ │ │ │ ├── OffsetCalculator.cuh │ │ │ │ │ └── TensorInfo.cuh │ │ │ ├── cudnn │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Exceptions.h │ │ │ │ ├── Handle.h │ │ │ │ ├── Handles.h │ │ │ │ ├── Types.h │ │ │ │ ├── Utils.h │ │ │ │ └── cudnn-wrapper.h │ │ │ ├── detail │ │ │ │ ├── CPUGuardImpl.h │ │ │ │ ├── CUDAHooksInterface.h │ │ │ │ ├── ComplexHooksInterface.h │ │ │ │ ├── FunctionTraits.h │ │ │ │ ├── HIPHooksInterface.h │ │ │ │ └── ScalarTypeConversions.h │ │ │ ├── div_rtn.h │ │ │ ├── dlpack.h │ │ │ ├── miopen │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Exceptions.h │ │ │ │ ├── Handle.h │ │ │ │ ├── Types.h │ │ │ │ ├── Utils.h │ │ │ │ └── miopen-wrapper.h │ │ │ └── optional.h │ │ ├── Eigen │ │ │ ├── CMakeLists.txt │ │ │ ├── Cholesky │ │ │ ├── CholmodSupport │ │ │ ├── Core │ │ │ ├── Dense │ │ │ ├── Eigen │ │ │ ├── Eigenvalues │ │ │ ├── Geometry │ │ │ ├── Householder │ │ │ ├── IterativeLinearSolvers │ │ │ ├── Jacobi │ │ │ ├── LU │ │ │ ├── MetisSupport │ │ │ ├── OrderingMethods │ │ │ ├── PaStiXSupport │ │ │ ├── PardisoSupport │ │ │ ├── QR │ │ │ ├── QtAlignedMalloc │ │ │ ├── SPQRSupport │ │ │ ├── SVD │ │ │ ├── Sparse │ │ │ ├── SparseCholesky │ │ │ ├── SparseCore │ │ │ ├── SparseLU │ │ │ ├── SparseQR │ │ │ ├── StdDeque │ │ │ ├── StdList │ │ │ ├── StdVector │ │ │ ├── SuperLUSupport │ │ │ ├── UmfPackSupport │ │ │ └── src │ │ │ │ ├── Cholesky │ │ │ │ ├── LDLT.h │ │ │ │ ├── LLT.h │ │ │ │ └── LLT_LAPACKE.h │ │ │ │ ├── CholmodSupport │ │ │ │ └── CholmodSupport.h │ │ │ │ ├── Core │ │ │ │ ├── ArithmeticSequence.h │ │ │ │ ├── Array.h │ │ │ │ ├── ArrayBase.h │ │ │ │ ├── ArrayWrapper.h │ │ │ │ ├── Assign.h │ │ │ │ ├── AssignEvaluator.h │ │ │ │ ├── Assign_MKL.h │ │ │ │ ├── BandMatrix.h │ │ │ │ ├── Block.h │ │ │ │ ├── BooleanRedux.h │ │ │ │ ├── CommaInitializer.h │ │ │ │ ├── ConditionEstimator.h │ │ │ │ ├── CoreEvaluators.h │ │ │ │ ├── CoreIterators.h │ │ │ │ ├── CwiseBinaryOp.h │ │ │ │ ├── CwiseNullaryOp.h │ │ │ │ ├── CwiseTernaryOp.h │ │ │ │ ├── CwiseUnaryOp.h │ │ │ │ ├── CwiseUnaryView.h │ │ │ │ ├── DenseBase.h │ │ │ │ ├── DenseCoeffsBase.h │ │ │ │ ├── DenseStorage.h │ │ │ │ ├── Diagonal.h │ │ │ │ ├── DiagonalMatrix.h │ │ │ │ ├── DiagonalProduct.h │ │ │ │ ├── Dot.h │ │ │ │ ├── EigenBase.h │ │ │ │ ├── ForceAlignedAccess.h │ │ │ │ ├── Fuzzy.h │ │ │ │ ├── GeneralProduct.h │ │ │ │ ├── GenericPacketMath.h │ │ │ │ ├── GlobalFunctions.h │ │ │ │ ├── IO.h │ │ │ │ ├── IndexedView.h │ │ │ │ ├── Inverse.h │ │ │ │ ├── Map.h │ │ │ │ ├── MapBase.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── MathFunctionsImpl.h │ │ │ │ ├── Matrix.h │ │ │ │ ├── MatrixBase.h │ │ │ │ ├── NestByValue.h │ │ │ │ ├── NoAlias.h │ │ │ │ ├── NumTraits.h │ │ │ │ ├── PermutationMatrix.h │ │ │ │ ├── PlainObjectBase.h │ │ │ │ ├── Product.h │ │ │ │ ├── ProductEvaluators.h │ │ │ │ ├── Random.h │ │ │ │ ├── Redux.h │ │ │ │ ├── Ref.h │ │ │ │ ├── Replicate.h │ │ │ │ ├── ReturnByValue.h │ │ │ │ ├── Reverse.h │ │ │ │ ├── Select.h │ │ │ │ ├── SelfAdjointView.h │ │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ │ ├── Solve.h │ │ │ │ ├── SolveTriangular.h │ │ │ │ ├── SolverBase.h │ │ │ │ ├── StableNorm.h │ │ │ │ ├── Stride.h │ │ │ │ ├── Swap.h │ │ │ │ ├── Transpose.h │ │ │ │ ├── Transpositions.h │ │ │ │ ├── TriangularMatrix.h │ │ │ │ ├── VectorBlock.h │ │ │ │ ├── VectorwiseOp.h │ │ │ │ ├── Visitor.h │ │ │ │ ├── arch │ │ │ │ │ ├── AVX │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── AVX512 │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── AltiVec │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── CUDA │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── Half.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ ├── PacketMathHalf.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── Default │ │ │ │ │ │ └── Settings.h │ │ │ │ │ ├── NEON │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── SSE │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ └── ZVector │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── functors │ │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ │ ├── BinaryFunctors.h │ │ │ │ │ ├── NullaryFunctors.h │ │ │ │ │ ├── StlFunctors.h │ │ │ │ │ ├── TernaryFunctors.h │ │ │ │ │ └── UnaryFunctors.h │ │ │ │ ├── products │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ │ ├── Parallelizer.h │ │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ │ └── TriangularSolverVector.h │ │ │ │ └── util │ │ │ │ │ ├── BlasUtil.h │ │ │ │ │ ├── Constants.h │ │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ │ ├── IndexedViewHelper.h │ │ │ │ │ ├── IntegralConstant.h │ │ │ │ │ ├── MKL_support.h │ │ │ │ │ ├── Macros.h │ │ │ │ │ ├── Memory.h │ │ │ │ │ ├── Meta.h │ │ │ │ │ ├── NonMPL2.h │ │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ │ ├── StaticAssert.h │ │ │ │ │ ├── SymbolicIndex.h │ │ │ │ │ └── XprHelper.h │ │ │ │ ├── Eigenvalues │ │ │ │ ├── ComplexEigenSolver.h │ │ │ │ ├── ComplexSchur.h │ │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ │ ├── EigenSolver.h │ │ │ │ ├── GeneralizedEigenSolver.h │ │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ │ ├── HessenbergDecomposition.h │ │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ │ ├── RealQZ.h │ │ │ │ ├── RealSchur.h │ │ │ │ ├── RealSchur_LAPACKE.h │ │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ │ └── Tridiagonalization.h │ │ │ │ ├── Geometry │ │ │ │ ├── AlignedBox.h │ │ │ │ ├── AngleAxis.h │ │ │ │ ├── EulerAngles.h │ │ │ │ ├── Homogeneous.h │ │ │ │ ├── Hyperplane.h │ │ │ │ ├── OrthoMethods.h │ │ │ │ ├── ParametrizedLine.h │ │ │ │ ├── Quaternion.h │ │ │ │ ├── Rotation2D.h │ │ │ │ ├── RotationBase.h │ │ │ │ ├── Scaling.h │ │ │ │ ├── Transform.h │ │ │ │ ├── Translation.h │ │ │ │ ├── Umeyama.h │ │ │ │ └── arch │ │ │ │ │ └── Geometry_SSE.h │ │ │ │ ├── Householder │ │ │ │ ├── BlockHouseholder.h │ │ │ │ ├── Householder.h │ │ │ │ └── HouseholderSequence.h │ │ │ │ ├── IterativeLinearSolvers │ │ │ │ ├── BasicPreconditioners.h │ │ │ │ ├── BiCGSTAB.h │ │ │ │ ├── ConjugateGradient.h │ │ │ │ ├── IncompleteCholesky.h │ │ │ │ ├── IncompleteLUT.h │ │ │ │ ├── IterativeSolverBase.h │ │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ │ └── SolveWithGuess.h │ │ │ │ ├── Jacobi │ │ │ │ └── Jacobi.h │ │ │ │ ├── LU │ │ │ │ ├── Determinant.h │ │ │ │ ├── FullPivLU.h │ │ │ │ ├── InverseImpl.h │ │ │ │ ├── PartialPivLU.h │ │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ │ └── arch │ │ │ │ │ └── Inverse_SSE.h │ │ │ │ ├── MetisSupport │ │ │ │ └── MetisSupport.h │ │ │ │ ├── OrderingMethods │ │ │ │ ├── Amd.h │ │ │ │ ├── Eigen_Colamd.h │ │ │ │ └── Ordering.h │ │ │ │ ├── PaStiXSupport │ │ │ │ └── PaStiXSupport.h │ │ │ │ ├── PardisoSupport │ │ │ │ └── PardisoSupport.h │ │ │ │ ├── QR │ │ │ │ ├── ColPivHouseholderQR.h │ │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ │ ├── FullPivHouseholderQR.h │ │ │ │ ├── HouseholderQR.h │ │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ │ ├── SPQRSupport │ │ │ │ └── SuiteSparseQRSupport.h │ │ │ │ ├── SVD │ │ │ │ ├── BDCSVD.h │ │ │ │ ├── JacobiSVD.h │ │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ │ ├── SVDBase.h │ │ │ │ └── UpperBidiagonalization.h │ │ │ │ ├── SparseCholesky │ │ │ │ ├── SimplicialCholesky.h │ │ │ │ └── SimplicialCholesky_impl.h │ │ │ │ ├── SparseCore │ │ │ │ ├── AmbiVector.h │ │ │ │ ├── CompressedStorage.h │ │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ │ ├── MappedSparseMatrix.h │ │ │ │ ├── SparseAssign.h │ │ │ │ ├── SparseBlock.h │ │ │ │ ├── SparseColEtree.h │ │ │ │ ├── SparseCompressedBase.h │ │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ │ ├── SparseDenseProduct.h │ │ │ │ ├── SparseDiagonalProduct.h │ │ │ │ ├── SparseDot.h │ │ │ │ ├── SparseFuzzy.h │ │ │ │ ├── SparseMap.h │ │ │ │ ├── SparseMatrix.h │ │ │ │ ├── SparseMatrixBase.h │ │ │ │ ├── SparsePermutation.h │ │ │ │ ├── SparseProduct.h │ │ │ │ ├── SparseRedux.h │ │ │ │ ├── SparseRef.h │ │ │ │ ├── SparseSelfAdjointView.h │ │ │ │ ├── SparseSolverBase.h │ │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ │ ├── SparseTranspose.h │ │ │ │ ├── SparseTriangularView.h │ │ │ │ ├── SparseUtil.h │ │ │ │ ├── SparseVector.h │ │ │ │ ├── SparseView.h │ │ │ │ └── TriangularSolver.h │ │ │ │ ├── SparseLU │ │ │ │ ├── SparseLU.h │ │ │ │ ├── SparseLUImpl.h │ │ │ │ ├── SparseLU_Memory.h │ │ │ │ ├── SparseLU_Structs.h │ │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ │ ├── SparseLU_Utils.h │ │ │ │ ├── SparseLU_column_bmod.h │ │ │ │ ├── SparseLU_column_dfs.h │ │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ │ ├── SparseLU_panel_bmod.h │ │ │ │ ├── SparseLU_panel_dfs.h │ │ │ │ ├── SparseLU_pivotL.h │ │ │ │ ├── SparseLU_pruneL.h │ │ │ │ └── SparseLU_relax_snode.h │ │ │ │ ├── SparseQR │ │ │ │ └── SparseQR.h │ │ │ │ ├── StlSupport │ │ │ │ ├── StdDeque.h │ │ │ │ ├── StdList.h │ │ │ │ ├── StdVector.h │ │ │ │ └── details.h │ │ │ │ ├── SuperLUSupport │ │ │ │ └── SuperLUSupport.h │ │ │ │ ├── UmfPackSupport │ │ │ │ └── UmfPackSupport.h │ │ │ │ ├── misc │ │ │ │ ├── Image.h │ │ │ │ ├── Kernel.h │ │ │ │ ├── RealSvd2x2.h │ │ │ │ ├── blas.h │ │ │ │ ├── lapack.h │ │ │ │ ├── lapacke.h │ │ │ │ └── lapacke_mangling.h │ │ │ │ └── plugins │ │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ │ ├── BlockMethods.h │ │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ │ ├── IndexedViewMethods.h │ │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ │ └── MatrixCwiseUnaryOps.h │ │ ├── TH │ │ │ ├── TH.h │ │ │ ├── THAllocator.h │ │ │ ├── THBlas.h │ │ │ ├── THDiskFile.h │ │ │ ├── THFile.h │ │ │ ├── THFilePrivate.h │ │ │ ├── THGeneral.h │ │ │ ├── THGenerateAllTypes.h │ │ │ ├── THGenerateByteType.h │ │ │ ├── THGenerateCharType.h │ │ │ ├── THGenerateDoubleType.h │ │ │ ├── THGenerateFloatType.h │ │ │ ├── THGenerateFloatTypes.h │ │ │ ├── THGenerateHalfType.h │ │ │ ├── THGenerateIntType.h │ │ │ ├── THGenerateIntTypes.h │ │ │ ├── THGenerateLongType.h │ │ │ ├── THGenerateShortType.h │ │ │ ├── THGenerator.hpp │ │ │ ├── THHalf.h │ │ │ ├── THLapack.h │ │ │ ├── THLogAdd.h │ │ │ ├── THMath.h │ │ │ ├── THMemoryFile.h │ │ │ ├── THRandom.h │ │ │ ├── THSize.h │ │ │ ├── THStorage.h │ │ │ ├── THStorageFunctions.h │ │ │ ├── THStorageFunctions.hpp │ │ │ ├── THTensor.h │ │ │ ├── THTensor.hpp │ │ │ ├── THTensorApply.h │ │ │ ├── THTensorDimApply.h │ │ │ ├── THVector.h │ │ │ ├── generic │ │ │ │ ├── THBlas.cpp │ │ │ │ ├── THBlas.h │ │ │ │ ├── THLapack.cpp │ │ │ │ ├── THLapack.h │ │ │ │ ├── THStorage.cpp │ │ │ │ ├── THStorage.h │ │ │ │ ├── THStorageCopy.cpp │ │ │ │ ├── THStorageCopy.h │ │ │ │ ├── THTensor.cpp │ │ │ │ ├── THTensor.h │ │ │ │ ├── THTensor.hpp │ │ │ │ ├── THTensorConv.cpp │ │ │ │ ├── THTensorConv.h │ │ │ │ ├── THTensorFastGetSet.hpp │ │ │ │ ├── THTensorLapack.cpp │ │ │ │ ├── THTensorLapack.h │ │ │ │ ├── THTensorMath.cpp │ │ │ │ ├── THTensorMath.h │ │ │ │ ├── THTensorRandom.cpp │ │ │ │ ├── THTensorRandom.h │ │ │ │ ├── THVector.h │ │ │ │ └── THVectorDispatch.cpp │ │ │ └── vector │ │ │ │ ├── AVX.h │ │ │ │ ├── AVX2.h │ │ │ │ └── avx_mathfun.h │ │ ├── THD │ │ │ ├── THD.h │ │ │ ├── base │ │ │ │ ├── ChannelType.h │ │ │ │ ├── Cuda.h │ │ │ │ ├── DataChannel.h │ │ │ │ ├── DataChannelRequest.h │ │ │ │ ├── THDGenerateAllTypes.h │ │ │ │ └── TensorDescriptor.h │ │ │ └── process_group │ │ │ │ ├── Collectives.h │ │ │ │ └── General.h │ │ ├── THNN │ │ │ └── generic │ │ │ │ └── THNN.h │ │ ├── __init__.py │ │ ├── asmjit │ │ │ ├── arm.h │ │ │ ├── asmjit.h │ │ │ ├── asmjit_apibegin.h │ │ │ ├── asmjit_apiend.h │ │ │ ├── asmjit_build.h │ │ │ ├── base.h │ │ │ ├── base │ │ │ │ ├── arch.h │ │ │ │ ├── assembler.h │ │ │ │ ├── codebuilder.h │ │ │ │ ├── codecompiler.h │ │ │ │ ├── codeemitter.h │ │ │ │ ├── codeholder.h │ │ │ │ ├── constpool.h │ │ │ │ ├── cpuinfo.h │ │ │ │ ├── func.h │ │ │ │ ├── globals.h │ │ │ │ ├── inst.h │ │ │ │ ├── logging.h │ │ │ │ ├── operand.h │ │ │ │ ├── osutils.h │ │ │ │ ├── runtime.h │ │ │ │ ├── simdtypes.h │ │ │ │ ├── string.h │ │ │ │ ├── utils.h │ │ │ │ ├── vmem.h │ │ │ │ └── zone.h │ │ │ ├── x86.h │ │ │ └── x86 │ │ │ │ ├── x86assembler.h │ │ │ │ ├── x86builder.h │ │ │ │ ├── x86compiler.h │ │ │ │ ├── x86emitter.h │ │ │ │ ├── x86globals.h │ │ │ │ ├── x86inst.h │ │ │ │ ├── x86misc.h │ │ │ │ └── x86operand.h │ │ ├── avx.py │ │ ├── avx2.py │ │ ├── bitcasts.h │ │ ├── c10 │ │ │ ├── Device.h │ │ │ ├── DeviceGuard.h │ │ │ ├── DeviceType.h │ │ │ ├── Half-inl.h │ │ │ ├── Half.h │ │ │ ├── Stream.h │ │ │ ├── StreamGuard.h │ │ │ ├── core │ │ │ │ ├── Allocator.h │ │ │ │ ├── Backend.h │ │ │ │ ├── CopyBytes.h │ │ │ │ ├── DefaultDtype.h │ │ │ │ ├── DefaultTensorOptions.h │ │ │ │ ├── Layout.h │ │ │ │ ├── Scalar.h │ │ │ │ ├── ScalarType.h │ │ │ │ ├── ScalarTypeUtils.h │ │ │ │ ├── Storage.h │ │ │ │ ├── StorageImpl.h │ │ │ │ ├── TensorImpl.h │ │ │ │ ├── TensorOptions.h │ │ │ │ ├── TensorTypeId.h │ │ │ │ ├── TensorTypeIdRegistration.h │ │ │ │ ├── UndefinedTensorImpl.h │ │ │ │ ├── WrapDimMinimal.h │ │ │ │ ├── bitcasts.h │ │ │ │ └── dispatch │ │ │ │ │ ├── DeviceId.h │ │ │ │ │ ├── DispatchKey.h │ │ │ │ │ ├── DispatchTable.h │ │ │ │ │ ├── Dispatcher.h │ │ │ │ │ ├── KernelRegistration.h │ │ │ │ │ ├── LayoutId.h │ │ │ │ │ ├── OpSchema.h │ │ │ │ │ └── OpSchemaRegistration.h │ │ │ ├── cuda │ │ │ │ ├── CUDAException.h │ │ │ │ ├── CUDAFunctions.h │ │ │ │ ├── CUDAGuard.h │ │ │ │ ├── CUDAMacros.h │ │ │ │ ├── CUDAMathCompat.h │ │ │ │ ├── CUDAStream.h │ │ │ │ └── impl │ │ │ │ │ ├── CUDAGuardImpl.h │ │ │ │ │ └── CUDATest.h │ │ │ ├── impl │ │ │ │ ├── DeviceGuardImplInterface.h │ │ │ │ ├── FakeGuardImpl.h │ │ │ │ ├── InlineDeviceGuard.h │ │ │ │ ├── InlineStreamGuard.h │ │ │ │ └── VirtualGuardImpl.h │ │ │ ├── macros │ │ │ │ ├── Export.h │ │ │ │ ├── Macros.h │ │ │ │ └── cmake_macros.h │ │ │ └── util │ │ │ │ ├── AlignOf.h │ │ │ │ ├── Array.h │ │ │ │ ├── ArrayRef.h │ │ │ │ ├── Backtrace.h │ │ │ │ ├── C++17.h │ │ │ │ ├── Exception.h │ │ │ │ ├── Flags.h │ │ │ │ ├── IdWrapper.h │ │ │ │ ├── LeftRight.h │ │ │ │ ├── Logging.h │ │ │ │ ├── Metaprogramming.h │ │ │ │ ├── Optional.h │ │ │ │ ├── Registry.h │ │ │ │ ├── SmallVector.h │ │ │ │ ├── StringUtil.h │ │ │ │ ├── Type.h │ │ │ │ ├── TypeList.h │ │ │ │ ├── TypeTraits.h │ │ │ │ ├── UniqueVoidPtr.h │ │ │ │ ├── flat_hash_map.h │ │ │ │ ├── intrusive_ptr.h │ │ │ │ ├── logging_is_google_glog.h │ │ │ │ ├── logging_is_not_google_glog.h │ │ │ │ ├── numa.h │ │ │ │ ├── string_utils.h │ │ │ │ └── typeid.h │ │ ├── caffe2 │ │ │ ├── contrib │ │ │ │ ├── aten │ │ │ │ │ ├── aten_op.h │ │ │ │ │ └── aten_op_template.h │ │ │ │ ├── cuda-convnet2 │ │ │ │ │ ├── cudaconvnet │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── jpeg.h │ │ │ │ │ ├── make-data │ │ │ │ │ │ └── pyext │ │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── pyext.h │ │ │ │ │ └── util │ │ │ │ │ │ └── include │ │ │ │ │ │ ├── matrix.h │ │ │ │ │ │ ├── matrix_funcs.h │ │ │ │ │ │ ├── queue.h │ │ │ │ │ │ ├── sync.h │ │ │ │ │ │ └── thread.h │ │ │ │ ├── gloo │ │ │ │ │ ├── allgather_ops.h │ │ │ │ │ ├── allreduce_ops.h │ │ │ │ │ ├── barrier_ops.h │ │ │ │ │ ├── broadcast_ops.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── common_world_ops.h │ │ │ │ │ ├── context.h │ │ │ │ │ ├── reduce_scatter_ops.h │ │ │ │ │ └── store_handler.h │ │ │ │ ├── nccl │ │ │ │ │ └── cuda_nccl_gpu.h │ │ │ │ ├── opencl │ │ │ │ │ └── context.h │ │ │ │ ├── prof │ │ │ │ │ ├── htrace_conf.h │ │ │ │ │ ├── prof_dag_net.h │ │ │ │ │ ├── prof_dag_stats_op.h │ │ │ │ │ ├── profiling_annotations.h │ │ │ │ │ └── profiling_info.h │ │ │ │ ├── script │ │ │ │ │ ├── compiler.h │ │ │ │ │ ├── error_report.h │ │ │ │ │ ├── lexer.h │ │ │ │ │ ├── parser.h │ │ │ │ │ ├── tree.h │ │ │ │ │ └── tree_views.h │ │ │ │ ├── shm_mutex │ │ │ │ │ └── shm_mutex.h │ │ │ │ ├── tensorrt │ │ │ │ │ ├── tensorrt_op_trt.h │ │ │ │ │ ├── tensorrt_tranformer.h │ │ │ │ │ └── trt_utils.h │ │ │ │ └── warpctc │ │ │ │ │ └── ctc_op.h │ │ │ ├── core │ │ │ │ ├── THCCachingAllocator_gpu.h │ │ │ │ ├── allocator.h │ │ │ │ ├── asan.h │ │ │ │ ├── blob.h │ │ │ │ ├── blob_serialization.h │ │ │ │ ├── blob_serializer_base.h │ │ │ │ ├── blob_stats.h │ │ │ │ ├── common.h │ │ │ │ ├── common_cudnn.h │ │ │ │ ├── common_gpu.h │ │ │ │ ├── common_omp.h │ │ │ │ ├── context.h │ │ │ │ ├── context_base.h │ │ │ │ ├── context_gpu.h │ │ │ │ ├── cudnn_wrappers.h │ │ │ │ ├── db.h │ │ │ │ ├── dispatch │ │ │ │ │ ├── DeviceId.h │ │ │ │ │ ├── DispatchKey.h │ │ │ │ │ ├── DispatchTable.h │ │ │ │ │ ├── Dispatcher.h │ │ │ │ │ ├── KernelRegistration.h │ │ │ │ │ ├── LayoutId.h │ │ │ │ │ ├── LeftRight.h │ │ │ │ │ ├── OpSchema.h │ │ │ │ │ └── OpSchemaRegistration.h │ │ │ │ ├── event.h │ │ │ │ ├── event_cpu.h │ │ │ │ ├── flags.h │ │ │ │ ├── graph.h │ │ │ │ ├── hip │ │ │ │ │ ├── common_hip.h │ │ │ │ │ ├── common_miopen.h │ │ │ │ │ ├── context_hip.h │ │ │ │ │ └── miopen_wrapper.h │ │ │ │ ├── init.h │ │ │ │ ├── logging.h │ │ │ │ ├── logging_is_google_glog.h │ │ │ │ ├── logging_is_not_google_glog.h │ │ │ │ ├── macros.h │ │ │ │ ├── memonger.h │ │ │ │ ├── module.h │ │ │ │ ├── net.h │ │ │ │ ├── net_async_base.h │ │ │ │ ├── net_async_dag_gpu.h │ │ │ │ ├── net_async_gpu_thread_pool.h │ │ │ │ ├── net_async_polling.h │ │ │ │ ├── net_async_scheduling.h │ │ │ │ ├── net_async_task.h │ │ │ │ ├── net_async_task_future.h │ │ │ │ ├── net_async_task_graph.h │ │ │ │ ├── net_async_tracing.h │ │ │ │ ├── net_dag.h │ │ │ │ ├── net_dag_utils.h │ │ │ │ ├── net_parallel.h │ │ │ │ ├── net_simple.h │ │ │ │ ├── net_simple_async.h │ │ │ │ ├── net_simple_refcount.h │ │ │ │ ├── nomnigraph │ │ │ │ │ ├── include │ │ │ │ │ │ └── nomnigraph │ │ │ │ │ │ │ ├── Converters │ │ │ │ │ │ │ └── Dot.h │ │ │ │ │ │ │ ├── Generated │ │ │ │ │ │ │ ├── OpClasses.h │ │ │ │ │ │ │ ├── OpEnum.h │ │ │ │ │ │ │ └── OpNames.h │ │ │ │ │ │ │ ├── Graph │ │ │ │ │ │ │ ├── Algorithms.h │ │ │ │ │ │ │ ├── BinaryMatchImpl.h │ │ │ │ │ │ │ ├── Graph.h │ │ │ │ │ │ │ ├── TarjansImpl.h │ │ │ │ │ │ │ └── TopoSort.h │ │ │ │ │ │ │ ├── Representations │ │ │ │ │ │ │ ├── Compiler.h │ │ │ │ │ │ │ ├── ControlFlow.h │ │ │ │ │ │ │ └── NeuralNet.h │ │ │ │ │ │ │ ├── Support │ │ │ │ │ │ │ ├── Casting.h │ │ │ │ │ │ │ ├── Common.h │ │ │ │ │ │ │ └── Pointer.h │ │ │ │ │ │ │ └── Transformations │ │ │ │ │ │ │ ├── Match.h │ │ │ │ │ │ │ └── SubgraphMatcher.h │ │ │ │ │ └── tests │ │ │ │ │ │ └── test_util.h │ │ │ │ ├── nomscheduler │ │ │ │ │ └── include │ │ │ │ │ │ └── nomscheduler │ │ │ │ │ │ └── Scheduler │ │ │ │ │ │ ├── CriticalPathAnalyzer.h │ │ │ │ │ │ ├── HEFTScheduler-Internal.h │ │ │ │ │ │ ├── HEFTScheduler.h │ │ │ │ │ │ └── Scheduler.h │ │ │ │ ├── numa.h │ │ │ │ ├── observer.h │ │ │ │ ├── operator.h │ │ │ │ ├── operator_c10wrapper.h │ │ │ │ ├── operator_gradient.h │ │ │ │ ├── operator_schema.h │ │ │ │ ├── plan_executor.h │ │ │ │ ├── prof_dag_counters.h │ │ │ │ ├── qtensor.h │ │ │ │ ├── qtensor_serialization.h │ │ │ │ ├── scope_guard.h │ │ │ │ ├── static_tracepoint.h │ │ │ │ ├── static_tracepoint_elfx86.h │ │ │ │ ├── stats.h │ │ │ │ ├── storage.h │ │ │ │ ├── tensor.h │ │ │ │ ├── tensor_impl.h │ │ │ │ ├── tensor_int8.h │ │ │ │ ├── test_utils.h │ │ │ │ ├── timer.h │ │ │ │ ├── transform.h │ │ │ │ ├── typeid.h │ │ │ │ ├── types.h │ │ │ │ └── workspace.h │ │ │ ├── cuda_rtc │ │ │ │ └── common_rtc.h │ │ │ ├── db │ │ │ │ └── create_db_op.h │ │ │ ├── distributed │ │ │ │ ├── file_store_handler.h │ │ │ │ ├── file_store_handler_op.h │ │ │ │ ├── redis_store_handler.h │ │ │ │ ├── redis_store_handler_op.h │ │ │ │ ├── store_handler.h │ │ │ │ └── store_ops.h │ │ │ ├── experiments │ │ │ │ └── operators │ │ │ │ │ ├── fully_connected_op_decomposition.h │ │ │ │ │ ├── fully_connected_op_prune.h │ │ │ │ │ ├── fully_connected_op_sparse.h │ │ │ │ │ ├── funhash_op.h │ │ │ │ │ ├── sparse_funhash_op.h │ │ │ │ │ ├── sparse_matrix_reshape_op.h │ │ │ │ │ ├── tt_contraction_op.h │ │ │ │ │ └── tt_pad_op.h │ │ │ ├── ideep │ │ │ │ ├── ideep_utils.h │ │ │ │ ├── operators │ │ │ │ │ ├── conv_pool_base_op.h │ │ │ │ │ └── operator_fallback_ideep.h │ │ │ │ └── utils │ │ │ │ │ ├── ideep_context.h │ │ │ │ │ └── ideep_operator.h │ │ │ ├── image │ │ │ │ ├── image_input_op.h │ │ │ │ └── transform_gpu.h │ │ │ ├── mobile │ │ │ │ └── contrib │ │ │ │ │ ├── arm-compute │ │ │ │ │ ├── core │ │ │ │ │ │ ├── context.h │ │ │ │ │ │ ├── net_gl.h │ │ │ │ │ │ ├── operator.h │ │ │ │ │ │ └── rewrite_net.h │ │ │ │ │ ├── operators │ │ │ │ │ │ └── activation_ops.h │ │ │ │ │ └── test │ │ │ │ │ │ ├── gl_model_test.h │ │ │ │ │ │ └── gl_operator_test.h │ │ │ │ │ ├── ios │ │ │ │ │ ├── ios_caffe.h │ │ │ │ │ ├── ios_caffe_defines.h │ │ │ │ │ ├── ios_caffe_predictor.h │ │ │ │ │ └── mpscnn │ │ │ │ │ │ ├── mpscnn.h │ │ │ │ │ │ ├── mpscnn_context.h │ │ │ │ │ │ ├── mpscnn_graph_mask.h │ │ │ │ │ │ ├── mpscnn_kernels.h │ │ │ │ │ │ └── mpscnn_test.h │ │ │ │ │ ├── libopencl-stub │ │ │ │ │ └── include │ │ │ │ │ │ ├── CL │ │ │ │ │ │ ├── cl.h │ │ │ │ │ │ ├── cl_ext.h │ │ │ │ │ │ ├── cl_gl.h │ │ │ │ │ │ ├── cl_gl_ext.h │ │ │ │ │ │ ├── cl_platform.h │ │ │ │ │ │ └── opencl.h │ │ │ │ │ │ └── libopencl.h │ │ │ │ │ ├── libvulkan-stub │ │ │ │ │ └── include │ │ │ │ │ │ ├── libvulkan-stub.h │ │ │ │ │ │ └── vulkan │ │ │ │ │ │ ├── vk_platform.h │ │ │ │ │ │ └── vulkan.h │ │ │ │ │ ├── nnapi │ │ │ │ │ ├── NeuralNetworks.h │ │ │ │ │ ├── dlnnapi.h │ │ │ │ │ └── nnapi.h │ │ │ │ │ ├── opengl │ │ │ │ │ ├── android │ │ │ │ │ │ ├── AndroidGLContext.h │ │ │ │ │ │ ├── arm_neon_support.h │ │ │ │ │ │ └── gl3stub.h │ │ │ │ │ ├── core │ │ │ │ │ │ ├── DataTransfer.h │ │ │ │ │ │ ├── GL.h │ │ │ │ │ │ ├── GLContext.h │ │ │ │ │ │ ├── GLFilter.h │ │ │ │ │ │ ├── GLImage.h │ │ │ │ │ │ ├── GLImageAllocator.h │ │ │ │ │ │ ├── GLLogging.h │ │ │ │ │ │ ├── GLPBO.h │ │ │ │ │ │ ├── GLPlainTexture.h │ │ │ │ │ │ ├── GLPredictor.h │ │ │ │ │ │ ├── GLTexture.h │ │ │ │ │ │ ├── ImageAllocator.h │ │ │ │ │ │ ├── arm_neon_support.h │ │ │ │ │ │ └── rewrite_net.h │ │ │ │ │ ├── ios │ │ │ │ │ │ ├── IOSGLContext.h │ │ │ │ │ │ ├── IOSGLImageAllocator.h │ │ │ │ │ │ └── IOSGLTexture.h │ │ │ │ │ ├── operators │ │ │ │ │ │ ├── GLConvolution.h │ │ │ │ │ │ └── gl_tiling_utils.h │ │ │ │ │ └── test │ │ │ │ │ │ ├── TestGLConvolution.h │ │ │ │ │ │ └── opengl_test.h │ │ │ │ │ ├── snpe │ │ │ │ │ └── snpe_ffi.h │ │ │ │ │ └── ulp2 │ │ │ │ │ ├── ulp.h │ │ │ │ │ └── ulp_neon.h │ │ │ ├── mpi │ │ │ │ ├── mpi_common.h │ │ │ │ └── mpi_ops.h │ │ │ ├── observers │ │ │ │ ├── operator_attaching_net_observer.h │ │ │ │ ├── profile_observer.h │ │ │ │ ├── runcnt_observer.h │ │ │ │ └── time_observer.h │ │ │ ├── onnx │ │ │ │ ├── backend.h │ │ │ │ ├── backend_rep.h │ │ │ │ ├── device.h │ │ │ │ ├── helper.h │ │ │ │ ├── onnx_exporter.h │ │ │ │ ├── onnxifi_init.h │ │ │ │ └── torch_ops │ │ │ │ │ ├── constants.h │ │ │ │ │ ├── operator_sets.h │ │ │ │ │ └── schema.h │ │ │ ├── operators │ │ │ │ ├── abs_op.h │ │ │ │ ├── accumulate_op.h │ │ │ │ ├── accuracy_op.h │ │ │ │ ├── acos_op.h │ │ │ │ ├── activation_ops_cudnn.h │ │ │ │ ├── affine_channel_op.h │ │ │ │ ├── apmeter_op.h │ │ │ │ ├── arg_ops.h │ │ │ │ ├── asin_op.h │ │ │ │ ├── assert_op.h │ │ │ │ ├── atan_op.h │ │ │ │ ├── batch_box_cox_op.h │ │ │ │ ├── batch_bucketize_op.h │ │ │ │ ├── batch_gather_ops.h │ │ │ │ ├── batch_matmul_op.h │ │ │ │ ├── batch_moments_op.h │ │ │ │ ├── batch_sparse_to_dense_op.h │ │ │ │ ├── bbox_transform_op.h │ │ │ │ ├── bisect_percentile_op.h │ │ │ │ ├── boolean_mask_ops.h │ │ │ │ ├── boolean_unmask_ops.h │ │ │ │ ├── box_with_nms_limit_op.h │ │ │ │ ├── byte_weight_dequant_op.h │ │ │ │ ├── cast_op.h │ │ │ │ ├── cbrt_op.h │ │ │ │ ├── ceil_op.h │ │ │ │ ├── channel_backprop_stats_op.h │ │ │ │ ├── channel_shuffle_op.h │ │ │ │ ├── channel_stats_op.h │ │ │ │ ├── clip_op.h │ │ │ │ ├── collect_and_distribute_fpn_rpn_proposals_op.h │ │ │ │ ├── concat_split_op.h │ │ │ │ ├── conditional_op.h │ │ │ │ ├── conv_op.h │ │ │ │ ├── conv_op_cache_cudnn.h │ │ │ │ ├── conv_op_impl.h │ │ │ │ ├── conv_op_shared.h │ │ │ │ ├── conv_pool_op_base.h │ │ │ │ ├── conv_transpose_op.h │ │ │ │ ├── conv_transpose_op_impl.h │ │ │ │ ├── conv_transpose_op_mobile.h │ │ │ │ ├── conv_transpose_op_mobile_impl.h │ │ │ │ ├── conv_transpose_unpool_op_base.h │ │ │ │ ├── copy_op.h │ │ │ │ ├── cos_op.h │ │ │ │ ├── cosh_op.h │ │ │ │ ├── cosine_embedding_criterion_op.h │ │ │ │ ├── counter_ops.h │ │ │ │ ├── create_scope_op.h │ │ │ │ ├── cross_entropy_op.h │ │ │ │ ├── ctc_beam_search_decoder_op.h │ │ │ │ ├── ctc_greedy_decoder_op.h │ │ │ │ ├── cube_op.h │ │ │ │ ├── data_couple.h │ │ │ │ ├── dataset_ops.h │ │ │ │ ├── deform_conv_op.h │ │ │ │ ├── deform_conv_op_impl.h │ │ │ │ ├── distance_op.h │ │ │ │ ├── do_op.h │ │ │ │ ├── dropout_op.h │ │ │ │ ├── elementwise_add_op.h │ │ │ │ ├── elementwise_div_op.h │ │ │ │ ├── elementwise_linear_op.h │ │ │ │ ├── elementwise_logical_ops.h │ │ │ │ ├── elementwise_mul_op.h │ │ │ │ ├── elementwise_op_test.h │ │ │ │ ├── elementwise_ops.h │ │ │ │ ├── elementwise_ops_utils.h │ │ │ │ ├── elementwise_sub_op.h │ │ │ │ ├── elu_op.h │ │ │ │ ├── enforce_finite_op.h │ │ │ │ ├── ensure_clipped_op.h │ │ │ │ ├── ensure_cpu_output_op.h │ │ │ │ ├── exp_op.h │ │ │ │ ├── expand_op.h │ │ │ │ ├── expand_squeeze_dims_op.h │ │ │ │ ├── experimental │ │ │ │ │ └── c10 │ │ │ │ │ │ └── schemas │ │ │ │ │ │ ├── add.h │ │ │ │ │ │ ├── averaged_loss.h │ │ │ │ │ │ ├── batch_gather.h │ │ │ │ │ │ ├── batch_matmul.h │ │ │ │ │ │ ├── cast.h │ │ │ │ │ │ ├── concat.h │ │ │ │ │ │ ├── enforce_finite.h │ │ │ │ │ │ ├── expand_dims.h │ │ │ │ │ │ ├── fc.h │ │ │ │ │ │ ├── filler.h │ │ │ │ │ │ ├── flatten.h │ │ │ │ │ │ ├── layer_norm.h │ │ │ │ │ │ ├── mul.h │ │ │ │ │ │ ├── relu.h │ │ │ │ │ │ ├── sigmoid.h │ │ │ │ │ │ ├── sigmoid_cross_entropy_with_logits.h │ │ │ │ │ │ ├── sparse_lengths_sum.h │ │ │ │ │ │ └── stop_gradient.h │ │ │ │ ├── fc_inference.h │ │ │ │ ├── feature_maps_ops.h │ │ │ │ ├── feed_blob_op.h │ │ │ │ ├── filler_op.h │ │ │ │ ├── find_duplicate_elements_op.h │ │ │ │ ├── find_op.h │ │ │ │ ├── flatten_op.h │ │ │ │ ├── flexible_top_k.h │ │ │ │ ├── floor_op.h │ │ │ │ ├── free_op.h │ │ │ │ ├── fully_connected_op.h │ │ │ │ ├── fused_rowwise_8bit_conversion_ops.h │ │ │ │ ├── fused_rowwise_random_quantization_ops.h │ │ │ │ ├── gather_fused_8bit_rowwise_op.h │ │ │ │ ├── gather_op.h │ │ │ │ ├── gather_ranges_to_dense_op.h │ │ │ │ ├── generate_proposals_op.h │ │ │ │ ├── generate_proposals_op_util_boxes.h │ │ │ │ ├── generate_proposals_op_util_nms.h │ │ │ │ ├── given_tensor_byte_string_to_uint8_fill_op.h │ │ │ │ ├── given_tensor_fill_op.h │ │ │ │ ├── glu_op.h │ │ │ │ ├── group_norm_op.h │ │ │ │ ├── gru_unit_op.h │ │ │ │ ├── h_softmax_op.h │ │ │ │ ├── half_float_ops.h │ │ │ │ ├── hard_sigmoid_op.h │ │ │ │ ├── heatmap_max_keypoint_op.h │ │ │ │ ├── hip │ │ │ │ │ └── activation_ops_miopen.h │ │ │ │ ├── if_op.h │ │ │ │ ├── im2col_op.h │ │ │ │ ├── index_hash_ops.h │ │ │ │ ├── index_ops.h │ │ │ │ ├── instance_norm_op.h │ │ │ │ ├── integral_image_op.h │ │ │ │ ├── is_empty_op.h │ │ │ │ ├── jsd_op.h │ │ │ │ ├── key_split_ops.h │ │ │ │ ├── layer_norm_op.h │ │ │ │ ├── leaky_relu_op.h │ │ │ │ ├── length_split_op.h │ │ │ │ ├── lengths_pad_op.h │ │ │ │ ├── lengths_reducer_fused_8bit_rowwise_ops.h │ │ │ │ ├── lengths_reducer_ops.h │ │ │ │ ├── lengths_reducer_rowwise_8bit_ops.h │ │ │ │ ├── lengths_tile_op.h │ │ │ │ ├── lengths_top_k_op.h │ │ │ │ ├── listwise_l2r_op.h │ │ │ │ ├── load_save_op.h │ │ │ │ ├── local_response_normalization_op.h │ │ │ │ ├── locally_connected_op.h │ │ │ │ ├── locally_connected_op_impl.h │ │ │ │ ├── locally_connected_op_util.h │ │ │ │ ├── log_op.h │ │ │ │ ├── logit_op.h │ │ │ │ ├── loss_op.h │ │ │ │ ├── lpnorm_op.h │ │ │ │ ├── lstm_unit_op.h │ │ │ │ ├── map_ops.h │ │ │ │ ├── margin_ranking_criterion_op.h │ │ │ │ ├── matmul_op.h │ │ │ │ ├── max_pool_with_index_gpu.h │ │ │ │ ├── mean_op.h │ │ │ │ ├── merge_id_lists_op.h │ │ │ │ ├── minmax_ops.h │ │ │ │ ├── mod_op.h │ │ │ │ ├── moments_op.h │ │ │ │ ├── multi_class_accuracy_op.h │ │ │ │ ├── negate_gradient_op.h │ │ │ │ ├── negative_op.h │ │ │ │ ├── ngram_ops.h │ │ │ │ ├── no_default_engine_op.h │ │ │ │ ├── normalize_l1_op.h │ │ │ │ ├── normalize_op.h │ │ │ │ ├── numpy_tile_op.h │ │ │ │ ├── one_hot_ops.h │ │ │ │ ├── onnx_while_op.h │ │ │ │ ├── onnxifi_op.h │ │ │ │ ├── op_utils_cudnn.h │ │ │ │ ├── operator_fallback_gpu.h │ │ │ │ ├── order_switch_ops.h │ │ │ │ ├── pack_rnn_sequence_op.h │ │ │ │ ├── pack_segments.h │ │ │ │ ├── pad_op.h │ │ │ │ ├── partition_ops.h │ │ │ │ ├── percentile_op.h │ │ │ │ ├── perplexity_op.h │ │ │ │ ├── piecewise_linear_transform_op.h │ │ │ │ ├── pool_op.h │ │ │ │ ├── pow_op.h │ │ │ │ ├── prefetch_op.h │ │ │ │ ├── prelu_op.h │ │ │ │ ├── prepend_dim_op.h │ │ │ │ ├── quant_decode_op.h │ │ │ │ ├── quantized │ │ │ │ │ ├── int8_add_op.h │ │ │ │ │ ├── int8_average_pool_op.h │ │ │ │ │ ├── int8_channel_shuffle_op.h │ │ │ │ │ ├── int8_concat_op.h │ │ │ │ │ ├── int8_conv_op.h │ │ │ │ │ ├── int8_conv_transpose_op.h │ │ │ │ │ ├── int8_dequantize_op.h │ │ │ │ │ ├── int8_fc_op.h │ │ │ │ │ ├── int8_flatten_op.h │ │ │ │ │ ├── int8_given_tensor_fill_op.h │ │ │ │ │ ├── int8_leaky_relu_op.h │ │ │ │ │ ├── int8_max_pool_op.h │ │ │ │ │ ├── int8_quantize_op.h │ │ │ │ │ ├── int8_relu_op.h │ │ │ │ │ ├── int8_reshape_op.h │ │ │ │ │ ├── int8_resize_nearest_op.h │ │ │ │ │ ├── int8_roi_align_op.h │ │ │ │ │ ├── int8_sigmoid_op.h │ │ │ │ │ ├── int8_simd.h │ │ │ │ │ ├── int8_slice_op.h │ │ │ │ │ ├── int8_softmax_op.h │ │ │ │ │ ├── int8_test_utils.h │ │ │ │ │ └── int8_utils.h │ │ │ │ ├── rank_loss_op.h │ │ │ │ ├── reciprocal_op.h │ │ │ │ ├── reduce_front_back_max_ops.h │ │ │ │ ├── reduce_front_back_sum_mean_ops.h │ │ │ │ ├── reduce_ops.h │ │ │ │ ├── reducer_functors.h │ │ │ │ ├── reduction_ops.h │ │ │ │ ├── relu_n_op.h │ │ │ │ ├── relu_op.h │ │ │ │ ├── remove_data_blocks_op.h │ │ │ │ ├── replace_nan_op.h │ │ │ │ ├── reshape_op.h │ │ │ │ ├── resize_op.h │ │ │ │ ├── reverse_packed_segs_op.h │ │ │ │ ├── rmac_regions_op.h │ │ │ │ ├── rnn │ │ │ │ │ ├── hip │ │ │ │ │ │ └── recurrent_op_miopen.h │ │ │ │ │ ├── recurrent_network_blob_fetcher_op.h │ │ │ │ │ ├── recurrent_network_executor.h │ │ │ │ │ ├── recurrent_network_executor_gpu.h │ │ │ │ │ ├── recurrent_network_executor_incl.h │ │ │ │ │ ├── recurrent_network_op.h │ │ │ │ │ └── recurrent_op_cudnn.h │ │ │ │ ├── roi_align_gradient_op.h │ │ │ │ ├── roi_align_op.h │ │ │ │ ├── roi_align_rotated_gradient_op.h │ │ │ │ ├── roi_align_rotated_op.h │ │ │ │ ├── roi_pool_op.h │ │ │ │ ├── rowmul_op.h │ │ │ │ ├── rsqrt_op.h │ │ │ │ ├── scale_op.h │ │ │ │ ├── segment_reduction_op.h │ │ │ │ ├── selu_op.h │ │ │ │ ├── sequence_ops.h │ │ │ │ ├── shape_op.h │ │ │ │ ├── sigmoid_op.h │ │ │ │ ├── sin_op.h │ │ │ │ ├── sinh_op.h │ │ │ │ ├── sinusoid_position_encoding_op.h │ │ │ │ ├── slice_op.h │ │ │ │ ├── softmax_op.h │ │ │ │ ├── softmax_shared.h │ │ │ │ ├── softmax_with_loss_op.h │ │ │ │ ├── softplus_op.h │ │ │ │ ├── softsign_op.h │ │ │ │ ├── space_batch_op.h │ │ │ │ ├── sparse_normalize_op.h │ │ │ │ ├── sparse_to_dense_mask_op.h │ │ │ │ ├── sparse_to_dense_op.h │ │ │ │ ├── spatial_batch_norm_op.h │ │ │ │ ├── spatial_softmax_with_loss_op.h │ │ │ │ ├── sqr_op.h │ │ │ │ ├── sqrt_op.h │ │ │ │ ├── square_root_divide_op.h │ │ │ │ ├── stats_put_ops.h │ │ │ │ ├── stop_gradient.h │ │ │ │ ├── string_ops.h │ │ │ │ ├── stump_func_op.h │ │ │ │ ├── summarize_op.h │ │ │ │ ├── swish_op.h │ │ │ │ ├── tan_op.h │ │ │ │ ├── tanh_op.h │ │ │ │ ├── tensor_protos_db_input.h │ │ │ │ ├── text_file_reader_utils.h │ │ │ │ ├── thresholded_relu_op.h │ │ │ │ ├── tile_op.h │ │ │ │ ├── top_k.h │ │ │ │ ├── transpose_op.h │ │ │ │ ├── tt_linear_op.h │ │ │ │ ├── unique_ops.h │ │ │ │ ├── upsample_op.h │ │ │ │ ├── utility_ops.h │ │ │ │ ├── variable_length_sequence_padding.h │ │ │ │ ├── weighted_multi_sampling_op.h │ │ │ │ ├── weighted_sample_op.h │ │ │ │ ├── while_op.h │ │ │ │ └── zero_gradient_op.h │ │ │ ├── opt │ │ │ │ ├── annotations.h │ │ │ │ ├── backend_cutting.h │ │ │ │ ├── converter.h │ │ │ │ ├── device.h │ │ │ │ ├── distributed.h │ │ │ │ ├── fusion.h │ │ │ │ ├── mobile.h │ │ │ │ ├── onnx_convert.h │ │ │ │ ├── onnxifi_transformer.h │ │ │ │ ├── optimize_ideep.h │ │ │ │ ├── optimizer.h │ │ │ │ ├── passes.h │ │ │ │ └── sink.h │ │ │ ├── perfkernels │ │ │ │ ├── adagrad.h │ │ │ │ ├── common.h │ │ │ │ ├── cvtsh_ss_bugfix.h │ │ │ │ ├── embedding_lookup.h │ │ │ │ ├── fused_8bit_rowwise_embedding_lookup.h │ │ │ │ ├── math.h │ │ │ │ └── typed_axpy.h │ │ │ ├── predictor │ │ │ │ ├── emulator │ │ │ │ │ ├── benchmark.h │ │ │ │ │ ├── data_filler.h │ │ │ │ │ ├── emulator.h │ │ │ │ │ ├── net_supplier.h │ │ │ │ │ ├── output_formatter.h │ │ │ │ │ ├── profiler.h │ │ │ │ │ ├── std_output_formatter.h │ │ │ │ │ ├── time_profiler.h │ │ │ │ │ └── utils.h │ │ │ │ ├── predictor.h │ │ │ │ ├── predictor_config.h │ │ │ │ └── predictor_utils.h │ │ │ ├── proto │ │ │ │ ├── caffe2.pb.h │ │ │ │ ├── caffe2_legacy.pb.h │ │ │ │ ├── caffe2_pb.h │ │ │ │ ├── hsm.pb.h │ │ │ │ ├── metanet.pb.h │ │ │ │ ├── predictor_consts.pb.h │ │ │ │ ├── prof_dag.pb.h │ │ │ │ ├── torch.pb.h │ │ │ │ └── torch_pb.h │ │ │ ├── python │ │ │ │ ├── dlpack.h │ │ │ │ ├── pybind_state.h │ │ │ │ ├── pybind_state_dlpack.h │ │ │ │ └── pybind_state_registry.h │ │ │ ├── quantization │ │ │ │ └── server │ │ │ │ │ ├── activation_distribution_observer.h │ │ │ │ │ ├── batch_matmul_dnnlowp_op.h │ │ │ │ │ ├── batch_permutation_dnnlowp_op.h │ │ │ │ │ ├── caffe2_dnnlowp_utils.h │ │ │ │ │ ├── channel_shuffle_dnnlowp_op.h │ │ │ │ │ ├── concat_dnnlowp_op.h │ │ │ │ │ ├── conv_dnnlowp_acc16_op.h │ │ │ │ │ ├── conv_dnnlowp_op.h │ │ │ │ │ ├── conv_pool_dnnlowp_op_base.h │ │ │ │ │ ├── conv_relu_op.h │ │ │ │ │ ├── dequantize_dnnlowp_op.h │ │ │ │ │ ├── dnnlowp.h │ │ │ │ │ ├── dnnlowp_op.h │ │ │ │ │ ├── dnnlowp_partition.h │ │ │ │ │ ├── dynamic_histogram.h │ │ │ │ │ ├── elementwise_dnnlowp_op.h │ │ │ │ │ ├── elementwise_linear_dnnlowp_op.h │ │ │ │ │ ├── fbgemm_pack_blob.h │ │ │ │ │ ├── fbgemm_pack_matrix_cache.h │ │ │ │ │ ├── fbgemm_pack_op.h │ │ │ │ │ ├── fully_connected_dnnlowp_acc16_op.h │ │ │ │ │ ├── fully_connected_dnnlowp_op.h │ │ │ │ │ ├── fully_connected_fake_lowp_op.h │ │ │ │ │ ├── fully_connected_rowwise_dnnlowp_op.h │ │ │ │ │ ├── group_norm_dnnlowp_op.h │ │ │ │ │ ├── im2col_dnnlowp.h │ │ │ │ │ ├── kl_minimization.h │ │ │ │ │ ├── l2_minimization.h │ │ │ │ │ ├── lstm_unit_dnnlowp_op.h │ │ │ │ │ ├── mmio.h │ │ │ │ │ ├── op_wrapper.h │ │ │ │ │ ├── quantization_error_minimization.h │ │ │ │ │ ├── quantize_dnnlowp_op.h │ │ │ │ │ ├── relu_dnnlowp_op.h │ │ │ │ │ ├── resize_nearest_dnnlowp_op.h │ │ │ │ │ ├── sigmoid.h │ │ │ │ │ ├── tanh.h │ │ │ │ │ ├── transpose.h │ │ │ │ │ └── utility_dnnlowp_ops.h │ │ │ ├── queue │ │ │ │ ├── blobs_queue.h │ │ │ │ ├── blobs_queue_db.h │ │ │ │ ├── queue_ops.h │ │ │ │ ├── rebatching_queue.h │ │ │ │ └── rebatching_queue_ops.h │ │ │ ├── serialize │ │ │ │ └── inline_container.h │ │ │ ├── sgd │ │ │ │ ├── adadelta_op.h │ │ │ │ ├── adagrad_op.h │ │ │ │ ├── adam_op.h │ │ │ │ ├── clip_tensor_op.h │ │ │ │ ├── fp16_momentum_sgd_op.h │ │ │ │ ├── fp32_momentum_sgd_op.h │ │ │ │ ├── ftrl_op.h │ │ │ │ ├── gftrl_op.h │ │ │ │ ├── iter_op.h │ │ │ │ ├── lars_op.h │ │ │ │ ├── learning_rate_adaption_op.h │ │ │ │ ├── learning_rate_functors.h │ │ │ │ ├── learning_rate_op.h │ │ │ │ ├── momentum_sgd_op.h │ │ │ │ ├── rmsprop_op.h │ │ │ │ ├── wngrad_op.h │ │ │ │ └── yellowfin_op.h │ │ │ ├── share │ │ │ │ └── contrib │ │ │ │ │ └── zstd │ │ │ │ │ └── quant_decomp_zstd_op.h │ │ │ ├── transforms │ │ │ │ ├── common_subexpression_elimination.h │ │ │ │ ├── conv_to_nnpack_transform.h │ │ │ │ ├── pattern_net_transform.h │ │ │ │ └── single_op_transform.h │ │ │ ├── utils │ │ │ │ ├── Optional.h │ │ │ │ ├── bench_utils.h │ │ │ │ ├── cast.h │ │ │ │ ├── cblas.h │ │ │ │ ├── conversions.h │ │ │ │ ├── cpu_neon.h │ │ │ │ ├── cpuid.h │ │ │ │ ├── eigen_utils.h │ │ │ │ ├── filler.h │ │ │ │ ├── fixed_divisor.h │ │ │ │ ├── flat_hash_map │ │ │ │ │ └── flat_hash_map.h │ │ │ │ ├── map_utils.h │ │ │ │ ├── math-detail.h │ │ │ │ ├── math.h │ │ │ │ ├── math_utils.h │ │ │ │ ├── murmur_hash3.h │ │ │ │ ├── proto_convert.h │ │ │ │ ├── proto_utils.h │ │ │ │ ├── proto_wrap.h │ │ │ │ ├── signal_handler.h │ │ │ │ ├── simple_queue.h │ │ │ │ ├── smart_tensor_printer.h │ │ │ │ ├── string_utils.h │ │ │ │ ├── thread_name.h │ │ │ │ ├── thread_pool.h │ │ │ │ ├── threadpool │ │ │ │ │ ├── ThreadPool.h │ │ │ │ │ ├── ThreadPoolCommon.h │ │ │ │ │ ├── WorkersPool.h │ │ │ │ │ └── pthreadpool.h │ │ │ │ └── zmq_helper.h │ │ │ └── video │ │ │ │ ├── optical_flow.h │ │ │ │ ├── video_decoder.h │ │ │ │ ├── video_input_op.h │ │ │ │ └── video_io.h │ │ ├── classes.h │ │ ├── clog.h │ │ ├── cpuinfo.h │ │ ├── fbgemm │ │ │ ├── ConvUtils.h │ │ │ ├── Fbgemm.h │ │ │ ├── FbgemmI8Spmdm.h │ │ │ ├── OutputProcessing-inl.h │ │ │ ├── PackingTraits-inl.h │ │ │ ├── QuantUtils.h │ │ │ ├── QuantUtilsAvx2.h │ │ │ ├── Types.h │ │ │ ├── Utils.h │ │ │ └── UtilsAvx2.h │ │ ├── fp16.h │ │ ├── fxdiv.h │ │ ├── google │ │ │ └── protobuf │ │ │ │ ├── any.h │ │ │ │ ├── any.pb.h │ │ │ │ ├── any.proto │ │ │ │ ├── api.pb.h │ │ │ │ ├── api.proto │ │ │ │ ├── arena.h │ │ │ │ ├── arena_impl.h │ │ │ │ ├── arenastring.h │ │ │ │ ├── compiler │ │ │ │ ├── code_generator.h │ │ │ │ ├── command_line_interface.h │ │ │ │ ├── cpp │ │ │ │ │ └── cpp_generator.h │ │ │ │ ├── csharp │ │ │ │ │ ├── csharp_generator.h │ │ │ │ │ └── csharp_names.h │ │ │ │ ├── importer.h │ │ │ │ ├── java │ │ │ │ │ ├── java_generator.h │ │ │ │ │ └── java_names.h │ │ │ │ ├── javanano │ │ │ │ │ └── javanano_generator.h │ │ │ │ ├── js │ │ │ │ │ ├── js_generator.h │ │ │ │ │ └── well_known_types_embed.h │ │ │ │ ├── objectivec │ │ │ │ │ ├── objectivec_generator.h │ │ │ │ │ └── objectivec_helpers.h │ │ │ │ ├── parser.h │ │ │ │ ├── php │ │ │ │ │ └── php_generator.h │ │ │ │ ├── plugin.h │ │ │ │ ├── plugin.pb.h │ │ │ │ ├── plugin.proto │ │ │ │ ├── python │ │ │ │ │ └── python_generator.h │ │ │ │ └── ruby │ │ │ │ │ └── ruby_generator.h │ │ │ │ ├── descriptor.h │ │ │ │ ├── descriptor.pb.h │ │ │ │ ├── descriptor.proto │ │ │ │ ├── descriptor_database.h │ │ │ │ ├── duration.pb.h │ │ │ │ ├── duration.proto │ │ │ │ ├── dynamic_message.h │ │ │ │ ├── empty.pb.h │ │ │ │ ├── empty.proto │ │ │ │ ├── extension_set.h │ │ │ │ ├── field_mask.pb.h │ │ │ │ ├── field_mask.proto │ │ │ │ ├── generated_enum_reflection.h │ │ │ │ ├── generated_enum_util.h │ │ │ │ ├── generated_message_reflection.h │ │ │ │ ├── generated_message_table_driven.h │ │ │ │ ├── generated_message_util.h │ │ │ │ ├── has_bits.h │ │ │ │ ├── io │ │ │ │ ├── coded_stream.h │ │ │ │ ├── gzip_stream.h │ │ │ │ ├── printer.h │ │ │ │ ├── strtod.h │ │ │ │ ├── tokenizer.h │ │ │ │ ├── zero_copy_stream.h │ │ │ │ ├── zero_copy_stream_impl.h │ │ │ │ └── zero_copy_stream_impl_lite.h │ │ │ │ ├── map.h │ │ │ │ ├── map_entry.h │ │ │ │ ├── map_entry_lite.h │ │ │ │ ├── map_field.h │ │ │ │ ├── map_field_inl.h │ │ │ │ ├── map_field_lite.h │ │ │ │ ├── map_type_handler.h │ │ │ │ ├── message.h │ │ │ │ ├── message_lite.h │ │ │ │ ├── metadata.h │ │ │ │ ├── metadata_lite.h │ │ │ │ ├── reflection.h │ │ │ │ ├── reflection_ops.h │ │ │ │ ├── repeated_field.h │ │ │ │ ├── service.h │ │ │ │ ├── source_context.pb.h │ │ │ │ ├── source_context.proto │ │ │ │ ├── struct.pb.h │ │ │ │ ├── struct.proto │ │ │ │ ├── stubs │ │ │ │ ├── atomic_sequence_num.h │ │ │ │ ├── atomicops.h │ │ │ │ ├── atomicops_internals_arm64_gcc.h │ │ │ │ ├── atomicops_internals_arm_gcc.h │ │ │ │ ├── atomicops_internals_arm_qnx.h │ │ │ │ ├── atomicops_internals_generic_c11_atomic.h │ │ │ │ ├── atomicops_internals_generic_gcc.h │ │ │ │ ├── atomicops_internals_mips_gcc.h │ │ │ │ ├── atomicops_internals_power.h │ │ │ │ ├── atomicops_internals_ppc_gcc.h │ │ │ │ ├── atomicops_internals_solaris.h │ │ │ │ ├── atomicops_internals_tsan.h │ │ │ │ ├── atomicops_internals_x86_gcc.h │ │ │ │ ├── atomicops_internals_x86_msvc.h │ │ │ │ ├── bytestream.h │ │ │ │ ├── callback.h │ │ │ │ ├── casts.h │ │ │ │ ├── common.h │ │ │ │ ├── fastmem.h │ │ │ │ ├── hash.h │ │ │ │ ├── logging.h │ │ │ │ ├── macros.h │ │ │ │ ├── mutex.h │ │ │ │ ├── once.h │ │ │ │ ├── platform_macros.h │ │ │ │ ├── port.h │ │ │ │ ├── scoped_ptr.h │ │ │ │ ├── shared_ptr.h │ │ │ │ ├── singleton.h │ │ │ │ ├── status.h │ │ │ │ ├── stl_util.h │ │ │ │ ├── stringpiece.h │ │ │ │ ├── template_util.h │ │ │ │ └── type_traits.h │ │ │ │ ├── text_format.h │ │ │ │ ├── timestamp.pb.h │ │ │ │ ├── timestamp.proto │ │ │ │ ├── type.pb.h │ │ │ │ ├── type.proto │ │ │ │ ├── unknown_field_set.h │ │ │ │ ├── util │ │ │ │ ├── delimited_message_util.h │ │ │ │ ├── field_comparator.h │ │ │ │ ├── field_mask_util.h │ │ │ │ ├── json_util.h │ │ │ │ ├── message_differencer.h │ │ │ │ ├── time_util.h │ │ │ │ ├── type_resolver.h │ │ │ │ └── type_resolver_util.h │ │ │ │ ├── wire_format.h │ │ │ │ ├── wire_format_lite.h │ │ │ │ ├── wire_format_lite_inl.h │ │ │ │ ├── wrappers.pb.h │ │ │ │ └── wrappers.proto │ │ ├── include │ │ │ ├── nomnigraph │ │ │ │ ├── Converters │ │ │ │ │ └── Dot.h │ │ │ │ ├── Generated │ │ │ │ │ ├── OpClasses.h │ │ │ │ │ ├── OpEnum.h │ │ │ │ │ └── OpNames.h │ │ │ │ ├── Graph │ │ │ │ │ ├── Algorithms.h │ │ │ │ │ ├── BinaryMatchImpl.h │ │ │ │ │ ├── Graph.h │ │ │ │ │ ├── TarjansImpl.h │ │ │ │ │ └── TopoSort.h │ │ │ │ ├── Representations │ │ │ │ │ ├── Compiler.h │ │ │ │ │ ├── ControlFlow.h │ │ │ │ │ └── NeuralNet.h │ │ │ │ ├── Support │ │ │ │ │ ├── Casting.h │ │ │ │ │ ├── Common.h │ │ │ │ │ └── Pointer.h │ │ │ │ └── Transformations │ │ │ │ │ ├── Match.h │ │ │ │ │ └── SubgraphMatcher.h │ │ │ └── nomscheduler │ │ │ │ └── Scheduler │ │ │ │ ├── CriticalPathAnalyzer.h │ │ │ │ ├── HEFTScheduler-Internal.h │ │ │ │ ├── HEFTScheduler.h │ │ │ │ └── Scheduler.h │ │ ├── libshm.h │ │ ├── mkldnn.h │ │ ├── mkldnn.hpp │ │ ├── mkldnn_debug.h │ │ ├── mkldnn_types.h │ │ ├── native-lib.cpp │ │ ├── nnpack.h │ │ ├── onnx │ │ │ ├── backend │ │ │ │ └── test │ │ │ │ │ └── cpp │ │ │ │ │ ├── driver │ │ │ │ │ └── test_driver.h │ │ │ │ │ └── gtest_utils.h │ │ │ ├── checker.h │ │ │ ├── common │ │ │ │ ├── array_ref.h │ │ │ │ ├── assertions.h │ │ │ │ ├── constants.h │ │ │ │ ├── graph_node_list.h │ │ │ │ ├── interned_strings.h │ │ │ │ ├── ir.h │ │ │ │ ├── ir_pb_converter.h │ │ │ │ ├── model_helpers.h │ │ │ │ ├── status.h │ │ │ │ ├── stl_backports.h │ │ │ │ └── tensor.h │ │ │ ├── defs │ │ │ │ ├── data_type_utils.h │ │ │ │ ├── function.h │ │ │ │ ├── operator_sets-ml.h │ │ │ │ ├── operator_sets.h │ │ │ │ ├── schema.h │ │ │ │ └── shape_inference.h │ │ │ ├── onnx-operators.pb.h │ │ │ ├── onnx-operators_onnx_c2.pb.h │ │ │ ├── onnx-operators_onnx_torch.pb.h │ │ │ ├── onnx-operators_pb.h │ │ │ ├── onnx.pb.h │ │ │ ├── onnx_onnx_c2.pb.h │ │ │ ├── onnx_onnx_torch.pb.h │ │ │ ├── onnx_pb.h │ │ │ ├── onnxifi.h │ │ │ ├── onnxifi_loader.h │ │ │ ├── onnxifi_utils.h │ │ │ ├── optimizer │ │ │ │ ├── optimize.h │ │ │ │ ├── pass.h │ │ │ │ ├── pass_manager.h │ │ │ │ ├── pass_registry.h │ │ │ │ └── passes │ │ │ │ │ ├── eliminate_deadend.h │ │ │ │ │ ├── eliminate_identity.h │ │ │ │ │ ├── eliminate_nop_dropout.h │ │ │ │ │ ├── eliminate_nop_monotone_argmax.h │ │ │ │ │ ├── eliminate_nop_pad.h │ │ │ │ │ ├── eliminate_nop_transpose.h │ │ │ │ │ ├── eliminate_unused_initializer.h │ │ │ │ │ ├── extract_constant_to_initializer.h │ │ │ │ │ ├── fuse_add_bias_into_conv.h │ │ │ │ │ ├── fuse_bn_into_conv.h │ │ │ │ │ ├── fuse_consecutive_concats.h │ │ │ │ │ ├── fuse_consecutive_log_softmax.h │ │ │ │ │ ├── fuse_consecutive_reduce_unsqueeze.h │ │ │ │ │ ├── fuse_consecutive_squeezes.h │ │ │ │ │ ├── fuse_consecutive_transposes.h │ │ │ │ │ ├── fuse_matmul_add_bias_into_gemm.h │ │ │ │ │ ├── fuse_pad_into_conv.h │ │ │ │ │ ├── fuse_transpose_into_gemm.h │ │ │ │ │ ├── lift_lexical_references.h │ │ │ │ │ ├── nop.h │ │ │ │ │ └── split.h │ │ │ ├── proto_utils.h │ │ │ ├── py_utils.h │ │ │ ├── shape_inference │ │ │ │ └── implementation.h │ │ │ ├── string_utils.h │ │ │ └── version_converter │ │ │ │ ├── BaseConverter.h │ │ │ │ ├── adapters │ │ │ │ ├── adapter.h │ │ │ │ ├── averagepool_7_6.h │ │ │ │ ├── batch_normalization_6_5.h │ │ │ │ ├── batch_normalization_6_7.h │ │ │ │ ├── broadcast_backward_compatibility.h │ │ │ │ ├── broadcast_forward_compatibility.h │ │ │ │ ├── compatible.h │ │ │ │ ├── concat_3_4.h │ │ │ │ ├── dropout_6_7.h │ │ │ │ ├── gemm_6_7.h │ │ │ │ ├── gemm_7_6.h │ │ │ │ ├── maxpool_8_7.h │ │ │ │ ├── no_previous_version.h │ │ │ │ ├── remove_consumed_inputs.h │ │ │ │ ├── reshape_4_5.h │ │ │ │ ├── reshape_5_4.h │ │ │ │ ├── set_is_test.h │ │ │ │ ├── sum_8_7.h │ │ │ │ └── type_restriction.h │ │ │ │ ├── convert.h │ │ │ │ └── helper.h │ │ ├── psimd.h │ │ ├── pthreadpool.h │ │ ├── pybind11 │ │ │ ├── attr.h │ │ │ ├── buffer_info.h │ │ │ ├── cast.h │ │ │ ├── chrono.h │ │ │ ├── common.h │ │ │ ├── complex.h │ │ │ ├── detail │ │ │ │ ├── class.h │ │ │ │ ├── common.h │ │ │ │ ├── descr.h │ │ │ │ ├── init.h │ │ │ │ ├── internals.h │ │ │ │ └── typeid.h │ │ │ ├── eigen.h │ │ │ ├── embed.h │ │ │ ├── eval.h │ │ │ ├── functional.h │ │ │ ├── iostream.h │ │ │ ├── numpy.h │ │ │ ├── operators.h │ │ │ ├── options.h │ │ │ ├── pybind11.h │ │ │ ├── pytypes.h │ │ │ ├── stl.h │ │ │ └── stl_bind.h │ │ ├── qnnpack.h │ │ ├── sleef.h │ │ └── torch │ │ │ ├── csrc │ │ │ ├── DataLoader.h │ │ │ ├── Device.h │ │ │ ├── Dtype.h │ │ │ ├── DynamicTypes.h │ │ │ ├── Exceptions.h │ │ │ ├── Generator.h │ │ │ ├── Layout.h │ │ │ ├── Module.h │ │ │ ├── PtrWrapper.h │ │ │ ├── PythonTypes.h │ │ │ ├── Size.h │ │ │ ├── Storage.h │ │ │ ├── StorageDefs.h │ │ │ ├── THP.h │ │ │ ├── THP_export.h │ │ │ ├── TypeInfo.h │ │ │ ├── Types.h │ │ │ ├── WindowsTorchApiMacro.h │ │ │ ├── api │ │ │ │ └── include │ │ │ │ │ └── torch │ │ │ │ │ ├── all.h │ │ │ │ │ ├── arg.h │ │ │ │ │ ├── cuda.h │ │ │ │ │ ├── data.h │ │ │ │ │ ├── data │ │ │ │ │ ├── dataloader.h │ │ │ │ │ ├── dataloader_options.h │ │ │ │ │ ├── datasets.h │ │ │ │ │ ├── datasets │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ ├── map.h │ │ │ │ │ │ ├── mnist.h │ │ │ │ │ │ ├── shared.h │ │ │ │ │ │ └── tensor.h │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── data_shuttle.h │ │ │ │ │ │ ├── queue.h │ │ │ │ │ │ └── sequencers.h │ │ │ │ │ ├── example.h │ │ │ │ │ ├── iterator.h │ │ │ │ │ ├── samplers.h │ │ │ │ │ ├── samplers │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ ├── custom_batch_request.h │ │ │ │ │ │ ├── random.h │ │ │ │ │ │ ├── sequential.h │ │ │ │ │ │ ├── serialize.h │ │ │ │ │ │ └── stream.h │ │ │ │ │ ├── transforms.h │ │ │ │ │ ├── transforms │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ ├── collate.h │ │ │ │ │ │ ├── lambda.h │ │ │ │ │ │ ├── stack.h │ │ │ │ │ │ └── tensor.h │ │ │ │ │ └── worker_exception.h │ │ │ │ │ ├── detail │ │ │ │ │ └── static.h │ │ │ │ │ ├── expanding_array.h │ │ │ │ │ ├── jit.h │ │ │ │ │ ├── nn.h │ │ │ │ │ ├── nn │ │ │ │ │ ├── cloneable.h │ │ │ │ │ ├── init.h │ │ │ │ │ ├── module.h │ │ │ │ │ ├── modules.h │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── any.h │ │ │ │ │ │ ├── batchnorm.h │ │ │ │ │ │ ├── conv.h │ │ │ │ │ │ ├── dropout.h │ │ │ │ │ │ ├── embedding.h │ │ │ │ │ │ ├── functional.h │ │ │ │ │ │ ├── linear.h │ │ │ │ │ │ ├── rnn.h │ │ │ │ │ │ └── sequential.h │ │ │ │ │ ├── parallel │ │ │ │ │ │ └── data_parallel.h │ │ │ │ │ ├── pimpl-inl.h │ │ │ │ │ └── pimpl.h │ │ │ │ │ ├── optim.h │ │ │ │ │ ├── optim │ │ │ │ │ ├── adagrad.h │ │ │ │ │ ├── adam.h │ │ │ │ │ ├── lbfgs.h │ │ │ │ │ ├── optimizer.h │ │ │ │ │ ├── rmsprop.h │ │ │ │ │ ├── serialize.h │ │ │ │ │ └── sgd.h │ │ │ │ │ ├── ordered_dict.h │ │ │ │ │ ├── python.h │ │ │ │ │ ├── python │ │ │ │ │ └── init.h │ │ │ │ │ ├── serialize.h │ │ │ │ │ ├── serialize │ │ │ │ │ ├── archive.h │ │ │ │ │ ├── input-archive.h │ │ │ │ │ ├── output-archive.h │ │ │ │ │ └── tensor.h │ │ │ │ │ ├── torch.h │ │ │ │ │ ├── types.h │ │ │ │ │ └── utils.h │ │ │ ├── autograd │ │ │ │ ├── VariableTypeUtils.h │ │ │ │ ├── anomaly_mode.h │ │ │ │ ├── autograd.h │ │ │ │ ├── edge.h │ │ │ │ ├── engine.h │ │ │ │ ├── function.h │ │ │ │ ├── function_hook.h │ │ │ │ ├── functions │ │ │ │ │ ├── accumulate_grad.h │ │ │ │ │ ├── basic_ops.h │ │ │ │ │ ├── comm.h │ │ │ │ │ ├── pybind.h │ │ │ │ │ ├── tensor.h │ │ │ │ │ └── utils.h │ │ │ │ ├── generated │ │ │ │ │ ├── Functions.h │ │ │ │ │ ├── VariableType.h │ │ │ │ │ ├── python_functions.h │ │ │ │ │ ├── python_nn_functions.h │ │ │ │ │ ├── python_nn_functions_dispatch.h │ │ │ │ │ ├── python_torch_functions_dispatch.h │ │ │ │ │ ├── python_variable_methods_dispatch.h │ │ │ │ │ └── variable_factories.h │ │ │ │ ├── grad_mode.h │ │ │ │ ├── input_buffer.h │ │ │ │ ├── input_metadata.h │ │ │ │ ├── profiler.h │ │ │ │ ├── python_anomaly_mode.h │ │ │ │ ├── python_cpp_function.h │ │ │ │ ├── python_engine.h │ │ │ │ ├── python_function.h │ │ │ │ ├── python_hook.h │ │ │ │ ├── python_legacy_variable.h │ │ │ │ ├── python_variable.h │ │ │ │ ├── python_variable_indexing.h │ │ │ │ ├── saved_variable.h │ │ │ │ ├── symbolic.h │ │ │ │ ├── type_and_shape.h │ │ │ │ ├── utils │ │ │ │ │ ├── python_arg_parsing.h │ │ │ │ │ ├── python_error_messages.h │ │ │ │ │ └── wrap_outputs.h │ │ │ │ ├── variable.h │ │ │ │ └── variable_version.h │ │ │ ├── byte_order.h │ │ │ ├── copy_utils.h │ │ │ ├── cuda │ │ │ │ ├── Module.h │ │ │ │ ├── Storage.h │ │ │ │ ├── Stream.h │ │ │ │ ├── THCP.h │ │ │ │ ├── comm.h │ │ │ │ ├── cuda_check.h │ │ │ │ ├── device_set.h │ │ │ │ ├── nccl.h │ │ │ │ ├── override_macros.h │ │ │ │ ├── python_comm.h │ │ │ │ ├── python_nccl.h │ │ │ │ ├── restore_macros.h │ │ │ │ ├── serialization.h │ │ │ │ ├── undef_macros.h │ │ │ │ └── utils.h │ │ │ ├── distributed │ │ │ │ ├── THDP.h │ │ │ │ └── c10d │ │ │ │ │ ├── c10d.h │ │ │ │ │ └── ddp.h │ │ │ ├── generic │ │ │ │ ├── Storage.h │ │ │ │ ├── serialization.h │ │ │ │ └── utils.h │ │ │ ├── jit │ │ │ │ ├── alias_info.h │ │ │ │ ├── argument_spec.h │ │ │ │ ├── assertions.h │ │ │ │ ├── attributes.h │ │ │ │ ├── autodiff.h │ │ │ │ ├── batched │ │ │ │ │ └── BatchTensor.h │ │ │ │ ├── code_template.h │ │ │ │ ├── constants.h │ │ │ │ ├── custom_operator.h │ │ │ │ ├── dynamic_dag.h │ │ │ │ ├── export.h │ │ │ │ ├── function_schema.h │ │ │ │ ├── fuser │ │ │ │ │ ├── arg_spec.h │ │ │ │ │ ├── codegen.h │ │ │ │ │ ├── compiler.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── dynamic_library.h │ │ │ │ │ │ ├── fused_kernel.h │ │ │ │ │ │ ├── resource_strings.h │ │ │ │ │ │ └── temp_file.h │ │ │ │ │ ├── cuda │ │ │ │ │ │ ├── fused_kernel.h │ │ │ │ │ │ └── resource_strings.h │ │ │ │ │ ├── executor.h │ │ │ │ │ ├── fallback.h │ │ │ │ │ ├── fused_kernel.h │ │ │ │ │ ├── interface.h │ │ │ │ │ ├── kernel_cache.h │ │ │ │ │ ├── kernel_spec.h │ │ │ │ │ ├── partition_desc.h │ │ │ │ │ ├── tensor_desc.h │ │ │ │ │ └── tensor_info.h │ │ │ │ ├── generic_if.h │ │ │ │ ├── graph_executor.h │ │ │ │ ├── graph_node_list.h │ │ │ │ ├── hooks_for_testing.h │ │ │ │ ├── import.h │ │ │ │ ├── import_method.h │ │ │ │ ├── init.h │ │ │ │ ├── interned_strings.h │ │ │ │ ├── interned_strings_class.h │ │ │ │ ├── interpreter.h │ │ │ │ ├── ir.h │ │ │ │ ├── ir_views.h │ │ │ │ ├── ivalue.h │ │ │ │ ├── named_value.h │ │ │ │ ├── node_hashing.h │ │ │ │ ├── operator.h │ │ │ │ ├── passes │ │ │ │ │ ├── alias_analysis.h │ │ │ │ │ ├── batch_mm.h │ │ │ │ │ ├── canonicalize.h │ │ │ │ │ ├── canonicalize_ops.h │ │ │ │ │ ├── common_subexpression_elimination.h │ │ │ │ │ ├── constant_pooling.h │ │ │ │ │ ├── constant_propagation.h │ │ │ │ │ ├── create_autodiff_subgraphs.h │ │ │ │ │ ├── dead_code_elimination.h │ │ │ │ │ ├── erase_number_types.h │ │ │ │ │ ├── graph_fuser.h │ │ │ │ │ ├── inline_autodiff_subgraphs.h │ │ │ │ │ ├── inplace_check.h │ │ │ │ │ ├── loop_unrolling.h │ │ │ │ │ ├── lower_grad_of.h │ │ │ │ │ ├── lower_tuples.h │ │ │ │ │ ├── onnx.h │ │ │ │ │ ├── onnx │ │ │ │ │ │ ├── fixup_onnx_loop.h │ │ │ │ │ │ ├── peephole.h │ │ │ │ │ │ └── prepare_division_for_onnx.h │ │ │ │ │ ├── peephole.h │ │ │ │ │ ├── python_print.h │ │ │ │ │ ├── remove_expands.h │ │ │ │ │ ├── remove_inplace_ops.h │ │ │ │ │ ├── requires_grad_analysis.h │ │ │ │ │ ├── shape_analysis.h │ │ │ │ │ ├── specialize_undef.h │ │ │ │ │ ├── to_batch.h │ │ │ │ │ └── utils │ │ │ │ │ │ ├── check_alias_annotation.h │ │ │ │ │ │ └── subgraph_utils.h │ │ │ │ ├── pybind.h │ │ │ │ ├── pybind_utils.h │ │ │ │ ├── python_arg_flatten.h │ │ │ │ ├── python_ir.h │ │ │ │ ├── python_tracer.h │ │ │ │ ├── resource_guard.h │ │ │ │ ├── scope.h │ │ │ │ ├── script │ │ │ │ │ ├── builtin_functions.h │ │ │ │ │ ├── compiler.h │ │ │ │ │ ├── error_report.h │ │ │ │ │ ├── init.h │ │ │ │ │ ├── jit_exception.h │ │ │ │ │ ├── lexer.h │ │ │ │ │ ├── module.h │ │ │ │ │ ├── parse_string_literal.h │ │ │ │ │ ├── parser.h │ │ │ │ │ ├── python_tree_views.h │ │ │ │ │ ├── tree.h │ │ │ │ │ └── tree_views.h │ │ │ │ ├── source_location.h │ │ │ │ ├── source_range.h │ │ │ │ ├── stack.h │ │ │ │ ├── symbolic_variable.h │ │ │ │ ├── tracer.h │ │ │ │ ├── tracing_state.h │ │ │ │ ├── type.h │ │ │ │ └── variable_tensor_list.h │ │ │ ├── multiprocessing │ │ │ │ └── init.h │ │ │ ├── nn │ │ │ │ └── type_checks.h │ │ │ ├── onnx │ │ │ │ ├── init.h │ │ │ │ └── onnx.h │ │ │ ├── python_headers.h │ │ │ ├── serialization.h │ │ │ ├── tensor │ │ │ │ └── python_tensor.h │ │ │ ├── utils.h │ │ │ └── utils │ │ │ │ ├── auto_gil.h │ │ │ │ ├── cuda_enabled.h │ │ │ │ ├── cuda_lazy_init.h │ │ │ │ ├── disallow_copy.h │ │ │ │ ├── functional.h │ │ │ │ ├── hash.h │ │ │ │ ├── invalid_arguments.h │ │ │ │ ├── memory.h │ │ │ │ ├── numpy_stub.h │ │ │ │ ├── object_ptr.h │ │ │ │ ├── pybind.h │ │ │ │ ├── python_arg_parser.h │ │ │ │ ├── python_compat.h │ │ │ │ ├── python_numbers.h │ │ │ │ ├── python_scalars.h │ │ │ │ ├── python_strings.h │ │ │ │ ├── python_stub.h │ │ │ │ ├── python_tuples.h │ │ │ │ ├── tempfile.h │ │ │ │ ├── tensor_apply.h │ │ │ │ ├── tensor_dtypes.h │ │ │ │ ├── tensor_flatten.h │ │ │ │ ├── tensor_layouts.h │ │ │ │ ├── tensor_list.h │ │ │ │ ├── tensor_new.h │ │ │ │ ├── tensor_numpy.h │ │ │ │ ├── tensor_types.h │ │ │ │ ├── tuple_parser.h │ │ │ │ └── variadic.h │ │ │ ├── extension.h │ │ │ └── script.h │ ├── ic_launcher-web.png │ ├── java │ │ └── facebook │ │ │ └── f8demo │ │ │ └── ClassifyCamera.java │ ├── jniLibs │ │ └── armeabi-v7a │ │ │ ├── libCAFFE2_NNPACK.a │ │ │ ├── libCAFFE2_PTHREADPOOL.a │ │ │ ├── libCaffe2_CPU.a │ │ │ ├── libcpufeatures.a │ │ │ ├── libglog.so │ │ │ ├── libgnustl_shared.so │ │ │ ├── libprotobuf-lite.a │ │ │ └── libprotobuf.a │ └── res │ │ ├── drawable │ │ ├── ic_logo.xml │ │ └── ic_thumb.xml │ │ ├── layout │ │ └── activity_classify_camera.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── facebook │ └── f8demo │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Exporting Squeezenet to mobile.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/Exporting Squeezenet to mobile.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/README.md -------------------------------------------------------------------------------- /README.orig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/README.orig.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/CMakeLists.txt -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/squeeze_init_net.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/assets/squeeze_init_net.pb -------------------------------------------------------------------------------- /app/src/main/assets/squeeze_predict_net.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/assets/squeeze_predict_net.pb -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/ATen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/ATen.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/AccumulateType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/AccumulateType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Allocator.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/ArrayRef.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Backend.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Backtrace.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CPUApplyUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CPUApplyUtils.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CPUByteType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CPUByteType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CPUCharType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CPUCharType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CPUDoubleType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CPUDoubleType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CPUFixedAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CPUFixedAllocator.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CPUFloatType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CPUFloatType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CPUGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CPUGeneral.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CPUGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CPUGenerator.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CPUHalfType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CPUHalfType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CPUIntType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CPUIntType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CPULongType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CPULongType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CPUShortType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CPUShortType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CPUTypeDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CPUTypeDefault.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CUDAByteType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CUDAByteType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CUDACharType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CUDACharType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CUDADoubleType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CUDADoubleType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CUDAFloatType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CUDAFloatType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CUDAGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CUDAGenerator.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CUDAGuard.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CUDAHalfType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CUDAHalfType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CUDAIntType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CUDAIntType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CUDALongType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CUDALongType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CUDAShortType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CUDAShortType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CUDAStream.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/CheckGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/CheckGenerator.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/Config.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/Context.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/DLConvertor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/DLConvertor.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Device.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/DeviceGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/DeviceGuard.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/DimVector.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/Dispatch.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Error.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/ExpandUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/ExpandUtils.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Formatting.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/Functions.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Generator.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Half.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/InferSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/InferSize.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/InitialTensorOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/InitialTensorOptions.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Layout.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/LegacyTHCPUIntDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/LegacyTHCPUIntDispatcher.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/LegacyTHDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/LegacyTHDispatch.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/LegacyTHDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/LegacyTHDispatcher.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/LegacyTHFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/LegacyTHFunctions.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/MatrixRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/MatrixRef.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/NativeFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/NativeFunctions.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/OptionsGuard.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/Parallel.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/RegisterCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/RegisterCPU.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/RegisterCUDA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/RegisterCUDA.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Scalar.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/ScalarOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/ScalarOps.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/ScalarType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/ScalarType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/SmallVector.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/SparseCPUByteType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/SparseCPUByteType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/SparseCPUCharType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/SparseCPUCharType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/SparseCPUDoubleType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/SparseCPUDoubleType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/SparseCPUFloatType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/SparseCPUFloatType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/SparseCPUIntType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/SparseCPUIntType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/SparseCPULongType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/SparseCPULongType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/SparseCPUShortType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/SparseCPUShortType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/SparseCUDAByteType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/SparseCUDAByteType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/SparseCUDACharType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/SparseCUDACharType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/SparseCUDADoubleType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/SparseCUDADoubleType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/SparseCUDAFloatType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/SparseCUDAFloatType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/SparseCUDAIntType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/SparseCUDAIntType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/SparseCUDALongType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/SparseCUDALongType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/SparseCUDAShortType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/SparseCUDAShortType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/SparseTensorImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/SparseTensorImpl.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/SparseTensorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/SparseTensorUtils.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Storage.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/StorageImpl.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Tensor.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/TensorAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/TensorAccessor.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/TensorGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/TensorGeometry.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/TensorImpl.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/TensorOperators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/TensorOperators.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/TensorOptions.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/TensorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/TensorUtils.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Type.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/TypeDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/TypeDefault.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/TypeExtendedInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/TypeExtendedInterface.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/UndefinedType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/UndefinedType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/Utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/WrapDimUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/WrapDimUtils.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/WrapDimUtilsMulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/WrapDimUtilsMulti.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/ATenGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/ATenGeneral.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/AlignOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/AlignOf.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/Allocator.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/ArrayRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/ArrayRef.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/Backend.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/Backtrace.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/Deprecated.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/Device.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/DeviceType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/DeviceType.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/DimVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/DimVector.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Error.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "c10/util/Exception.h" 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Formatting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/Formatting.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/Generator.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Half-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/Half-inl.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Half.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/IdWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/IdWrapper.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/Layout.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/LegacyTypeDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/LegacyTypeDispatch.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/Macros.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/OptionsGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/OptionsGuard.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/Range.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Reduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/Reduction.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Scalar.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/ScalarType.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/ScalarTypeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/ScalarTypeUtils.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/SmallVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/SmallVector.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/SparseTensorRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/SparseTensorRef.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/Storage.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/StorageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/StorageImpl.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/Tensor.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/TensorAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/TensorAccessor.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/TensorImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/TensorImpl.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/TensorMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/TensorMethods.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/TensorOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/TensorOptions.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/TensorTypeId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/TensorTypeId.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/Type.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/UndefinedTensorImpl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/UniqueVoidPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/UniqueVoidPtr.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/WrapDimMinimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/WrapDimMinimal.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/alias_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/alias_info.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/blob.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/context_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/context_base.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/function_schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/function_schema.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/functional.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/interned_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/interned_strings.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/intrusive_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/intrusive_ptr.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/ivalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/ivalue.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/jit_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/jit_type.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/core/thread_pool.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/core/typeid.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cpu/FlushDenormal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cpu/FlushDenormal.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cpu/vml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cpu/vml.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cuda/ATenCUDAGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cuda/ATenCUDAGeneral.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cuda/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cuda/Array.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cuda/CUDAApplyUtils.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cuda/CUDAApplyUtils.cuh -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cuda/CUDAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cuda/CUDAConfig.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cuda/CUDAContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cuda/CUDAContext.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cuda/CUDADevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cuda/CUDADevice.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cuda/CUDAEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cuda/CUDAEvent.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cuda/CUDAGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cuda/CUDAGuard.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cuda/CUDAStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cuda/CUDAStream.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cuda/CUDATypeDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cuda/CUDATypeDefault.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cuda/CUDAUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cuda/CUDAUtils.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cuda/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cuda/Exceptions.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cuda/NumericLimits.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cuda/NumericLimits.cuh -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cuda/detail/CUDAHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cuda/detail/CUDAHooks.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cudnn/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cudnn/Descriptors.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cudnn/Exceptions.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cudnn/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cudnn/Handle.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cudnn/Handles.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cudnn/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cudnn/Types.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cudnn/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cudnn/Utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/cudnn/cudnn-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/cudnn/cudnn-wrapper.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/detail/CPUGuardImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/detail/CPUGuardImpl.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/detail/FunctionTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/detail/FunctionTraits.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/div_rtn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/div_rtn.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/dlpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/dlpack.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/miopen/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/miopen/Descriptors.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/miopen/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/miopen/Exceptions.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/miopen/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/miopen/Handle.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/miopen/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/miopen/Types.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/miopen/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/miopen/Utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/miopen/miopen-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/ATen/miopen/miopen-wrapper.h -------------------------------------------------------------------------------- /app/src/main/cpp/ATen/optional.h: -------------------------------------------------------------------------------- 1 | #include "c10/util/Optional.h" 2 | -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/Cholesky -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/CholmodSupport -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/Core -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/Dense -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/Eigen -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/Eigenvalues -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/Geometry -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/Householder -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/Jacobi -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/LU -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/MetisSupport -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/OrderingMethods -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/PardisoSupport -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/QR -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/SPQRSupport -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/SVD -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/Sparse -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/SparseCholesky -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/SparseCore -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/SparseLU -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/SparseQR -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/StdDeque -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/StdList -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/StdVector -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/IndexedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/IndexedView.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /app/src/main/cpp/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/TH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/TH.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THAllocator.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THBlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THBlas.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THDiskFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THDiskFile.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THFile.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THFilePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THFilePrivate.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THGeneral.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THGenerateAllTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THGenerateAllTypes.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THGenerateByteType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THGenerateByteType.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THGenerateCharType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THGenerateCharType.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THGenerateDoubleType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THGenerateDoubleType.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THGenerateFloatType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THGenerateFloatType.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THGenerateFloatTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THGenerateFloatTypes.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THGenerateHalfType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THGenerateHalfType.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THGenerateIntType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THGenerateIntType.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THGenerateIntTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THGenerateIntTypes.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THGenerateLongType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THGenerateLongType.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THGenerateShortType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THGenerateShortType.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THGenerator.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THHalf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THHalf.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THLapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THLapack.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THLogAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THLogAdd.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THMath.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THMemoryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THMemoryFile.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THRandom.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THSize.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THStorage.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THStorageFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THStorageFunctions.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THStorageFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THStorageFunctions.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THTensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THTensor.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THTensor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THTensor.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THTensorApply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THTensorApply.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THTensorDimApply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THTensorDimApply.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/THVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/THVector.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THBlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THBlas.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THBlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THBlas.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THLapack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THLapack.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THLapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THLapack.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THStorage.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THStorage.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THStorageCopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THStorageCopy.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THStorageCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THStorageCopy.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THTensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THTensor.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THTensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THTensor.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THTensor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THTensor.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THTensorConv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THTensorConv.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THTensorConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THTensorConv.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THTensorLapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THTensorLapack.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THTensorMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THTensorMath.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THTensorMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THTensorMath.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THTensorRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THTensorRandom.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/generic/THVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/generic/THVector.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/vector/AVX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/vector/AVX.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/vector/AVX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/vector/AVX2.h -------------------------------------------------------------------------------- /app/src/main/cpp/TH/vector/avx_mathfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/TH/vector/avx_mathfun.h -------------------------------------------------------------------------------- /app/src/main/cpp/THD/THD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/THD/THD.h -------------------------------------------------------------------------------- /app/src/main/cpp/THD/base/ChannelType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/THD/base/ChannelType.h -------------------------------------------------------------------------------- /app/src/main/cpp/THD/base/Cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/THD/base/Cuda.h -------------------------------------------------------------------------------- /app/src/main/cpp/THD/base/DataChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/THD/base/DataChannel.h -------------------------------------------------------------------------------- /app/src/main/cpp/THD/base/TensorDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/THD/base/TensorDescriptor.h -------------------------------------------------------------------------------- /app/src/main/cpp/THD/process_group/General.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/THD/process_group/General.h -------------------------------------------------------------------------------- /app/src/main/cpp/THNN/generic/THNN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/THNN/generic/THNN.h -------------------------------------------------------------------------------- /app/src/main/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/arm.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/asmjit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/asmjit.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/asmjit_apibegin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/asmjit_apibegin.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/asmjit_apiend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/asmjit_apiend.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/asmjit_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/asmjit_build.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/arch.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/assembler.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/codebuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/codebuilder.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/codecompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/codecompiler.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/codeemitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/codeemitter.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/codeholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/codeholder.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/constpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/constpool.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/cpuinfo.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/func.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/globals.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/inst.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/logging.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/operand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/operand.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/osutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/osutils.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/runtime.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/simdtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/simdtypes.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/string.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/vmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/vmem.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/base/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/base/zone.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/x86.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/x86/x86assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/x86/x86assembler.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/x86/x86builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/x86/x86builder.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/x86/x86compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/x86/x86compiler.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/x86/x86emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/x86/x86emitter.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/x86/x86globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/x86/x86globals.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/x86/x86inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/x86/x86inst.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/x86/x86misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/x86/x86misc.h -------------------------------------------------------------------------------- /app/src/main/cpp/asmjit/x86/x86operand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/asmjit/x86/x86operand.h -------------------------------------------------------------------------------- /app/src/main/cpp/avx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/avx.py -------------------------------------------------------------------------------- /app/src/main/cpp/avx2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/avx2.py -------------------------------------------------------------------------------- /app/src/main/cpp/bitcasts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/bitcasts.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/Device.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/DeviceGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/DeviceGuard.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/DeviceType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/DeviceType.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/Half-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/Half-inl.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/Half.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/Stream.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/StreamGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/StreamGuard.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/Allocator.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/Backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/Backend.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/CopyBytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/CopyBytes.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/DefaultDtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/DefaultDtype.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/Layout.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/Scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/Scalar.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/ScalarType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/ScalarType.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/ScalarTypeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/ScalarTypeUtils.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/Storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/Storage.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/StorageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/StorageImpl.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/TensorImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/TensorImpl.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/TensorOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/TensorOptions.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/TensorTypeId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/TensorTypeId.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/WrapDimMinimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/WrapDimMinimal.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/bitcasts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/bitcasts.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/dispatch/DeviceId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/dispatch/DeviceId.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/dispatch/LayoutId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/dispatch/LayoutId.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/core/dispatch/OpSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/core/dispatch/OpSchema.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/cuda/CUDAException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/cuda/CUDAException.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/cuda/CUDAFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/cuda/CUDAFunctions.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/cuda/CUDAGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/cuda/CUDAGuard.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/cuda/CUDAMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/cuda/CUDAMacros.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/cuda/CUDAMathCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/cuda/CUDAMathCompat.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/cuda/CUDAStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/cuda/CUDAStream.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/cuda/impl/CUDATest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/cuda/impl/CUDATest.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/impl/FakeGuardImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/impl/FakeGuardImpl.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/impl/InlineDeviceGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/impl/InlineDeviceGuard.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/impl/InlineStreamGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/impl/InlineStreamGuard.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/impl/VirtualGuardImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/impl/VirtualGuardImpl.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/macros/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/macros/Export.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/macros/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/macros/Macros.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/macros/cmake_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/macros/cmake_macros.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/AlignOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/AlignOf.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/Array.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/ArrayRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/ArrayRef.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/Backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/Backtrace.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/C++17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/C++17.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/Exception.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/Flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/Flags.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/IdWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/IdWrapper.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/LeftRight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/LeftRight.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/Logging.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/Metaprogramming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/Metaprogramming.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/Optional.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/Registry.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/SmallVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/SmallVector.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/StringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/StringUtil.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/Type.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/TypeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/TypeList.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/TypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/TypeTraits.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/UniqueVoidPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/UniqueVoidPtr.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/flat_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/flat_hash_map.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/intrusive_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/intrusive_ptr.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/numa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/numa.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/string_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/c10/util/typeid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/c10/util/typeid.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/contrib/gloo/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/contrib/gloo/common.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/contrib/gloo/context.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/contrib/script/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/contrib/script/tree.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/allocator.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/asan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/asan.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/blob.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/blob_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/blob_stats.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/common.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/common_cudnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/common_cudnn.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/common_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/common_gpu.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/common_omp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/common_omp.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/context.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/context_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/context_base.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/context_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/context_gpu.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/cudnn_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/cudnn_wrappers.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/db.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/event.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/event_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/event_cpu.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/flags.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/graph.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/hip/common_hip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/hip/common_hip.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/init.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/logging.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/macros.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/memonger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/memonger.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/module.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/net.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/net_async_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/net_async_base.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/net_async_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/net_async_task.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/net_dag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/net_dag.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/net_dag_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/net_dag_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/net_parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/net_parallel.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/net_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/net_simple.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/numa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/numa.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/observer.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/operator.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/plan_executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/plan_executor.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/qtensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/qtensor.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/scope_guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/scope_guard.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/stats.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/storage.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/tensor.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/tensor_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/tensor_impl.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/tensor_int8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/tensor_int8.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/test_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/timer.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/transform.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/typeid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/typeid.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/types.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/core/workspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/core/workspace.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/cuda_rtc/common_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/cuda_rtc/common_rtc.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/db/create_db_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/db/create_db_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/ideep/ideep_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/ideep/ideep_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/image/transform_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/image/transform_gpu.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/mobile/contrib/ios/ios_caffe_defines.h: -------------------------------------------------------------------------------- 1 | 2 | #define IOS_CAFFE_EXPORT __attribute__((visibility("default"))) 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/mobile/contrib/opengl/test/TestGLConvolution.h: -------------------------------------------------------------------------------- 1 | 2 | #pragma once 3 | 4 | void TestGLConvolution(); 5 | -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/mpi/mpi_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/mpi/mpi_common.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/mpi/mpi_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/mpi/mpi_ops.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/onnx/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/onnx/backend.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/onnx/backend_rep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/onnx/backend_rep.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/onnx/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/onnx/device.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/onnx/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/onnx/helper.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/onnx/onnx_exporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/onnx/onnx_exporter.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/onnx/onnxifi_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/onnx/onnxifi_init.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/abs_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/abs_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/acos_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/acos_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/arg_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/arg_ops.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/asin_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/asin_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/assert_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/assert_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/atan_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/atan_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/cast_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/cast_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/cbrt_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/cbrt_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/ceil_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/ceil_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/clip_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/clip_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/conv_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/conv_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/copy_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/copy_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/cos_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/cos_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/cosh_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/cosh_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/cube_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/cube_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/do_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/do_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/elu_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/elu_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/exp_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/exp_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/expand_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/expand_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/filler_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/filler_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/find_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/find_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/floor_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/floor_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/free_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/free_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/gather_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/gather_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/glu_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/glu_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/if_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/if_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/im2col_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/im2col_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/index_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/index_ops.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/jsd_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/jsd_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/log_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/log_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/logit_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/logit_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/loss_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/loss_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/lpnorm_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/lpnorm_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/map_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/map_ops.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/matmul_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/matmul_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/mean_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/mean_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/mod_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/mod_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/ngram_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/ngram_ops.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/pad_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/pad_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/pool_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/pool_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/pow_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/pow_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/prelu_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/prelu_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/relu_n_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/relu_n_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/relu_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/relu_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/resize_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/resize_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/rowmul_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/rowmul_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/rsqrt_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/rsqrt_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/scale_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/scale_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/selu_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/selu_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/shape_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/shape_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/sin_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/sin_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/sinh_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/sinh_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/slice_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/slice_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/sqr_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/sqr_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/sqrt_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/sqrt_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/swish_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/swish_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/tan_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/tan_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/tanh_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/tanh_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/tile_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/tile_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/top_k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/top_k.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/operators/while_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/operators/while_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/opt/annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/opt/annotations.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/opt/backend_cutting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/opt/backend_cutting.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/opt/converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/opt/converter.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/opt/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/opt/device.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/opt/distributed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/opt/distributed.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/opt/fusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/opt/fusion.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/opt/mobile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/opt/mobile.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/opt/onnx_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/opt/onnx_convert.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/opt/optimize_ideep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/opt/optimize_ideep.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/opt/optimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/opt/optimizer.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/opt/passes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/opt/passes.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/opt/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/opt/sink.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/perfkernels/adagrad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/perfkernels/adagrad.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/perfkernels/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/perfkernels/common.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/perfkernels/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/perfkernels/math.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/predictor/predictor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/predictor/predictor.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/proto/caffe2.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/proto/caffe2.pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/proto/caffe2_pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/proto/caffe2_pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/proto/hsm.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/proto/hsm.pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/proto/metanet.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/proto/metanet.pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/proto/prof_dag.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/proto/prof_dag.pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/proto/torch.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/proto/torch.pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/proto/torch_pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/proto/torch_pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/python/dlpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/python/dlpack.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/python/pybind_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/python/pybind_state.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/queue/blobs_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/queue/blobs_queue.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/queue/queue_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/queue/queue_ops.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/sgd/adadelta_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/sgd/adadelta_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/sgd/adagrad_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/sgd/adagrad_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/sgd/adam_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/sgd/adam_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/sgd/clip_tensor_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/sgd/clip_tensor_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/sgd/ftrl_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/sgd/ftrl_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/sgd/gftrl_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/sgd/gftrl_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/sgd/iter_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/sgd/iter_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/sgd/lars_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/sgd/lars_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/sgd/momentum_sgd_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/sgd/momentum_sgd_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/sgd/rmsprop_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/sgd/rmsprop_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/sgd/wngrad_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/sgd/wngrad_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/sgd/yellowfin_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/sgd/yellowfin_op.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/Optional.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/bench_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/bench_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/cast.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/cblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/cblas.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/conversions.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/cpu_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/cpu_neon.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/cpuid.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/eigen_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/eigen_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/filler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/filler.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/fixed_divisor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/fixed_divisor.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/map_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/map_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/math-detail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/math-detail.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/math.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/math_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/math_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/murmur_hash3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/murmur_hash3.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/proto_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/proto_convert.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/proto_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/proto_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/proto_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/proto_wrap.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/simple_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/simple_queue.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/string_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/thread_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/thread_name.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/thread_pool.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/utils/zmq_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/utils/zmq_helper.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/video/optical_flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/video/optical_flow.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/video/video_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/video/video_decoder.h -------------------------------------------------------------------------------- /app/src/main/cpp/caffe2/video/video_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/caffe2/video/video_io.h -------------------------------------------------------------------------------- /app/src/main/cpp/classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/classes.h -------------------------------------------------------------------------------- /app/src/main/cpp/clog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/clog.h -------------------------------------------------------------------------------- /app/src/main/cpp/cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/cpuinfo.h -------------------------------------------------------------------------------- /app/src/main/cpp/fbgemm/ConvUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/fbgemm/ConvUtils.h -------------------------------------------------------------------------------- /app/src/main/cpp/fbgemm/Fbgemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/fbgemm/Fbgemm.h -------------------------------------------------------------------------------- /app/src/main/cpp/fbgemm/FbgemmI8Spmdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/fbgemm/FbgemmI8Spmdm.h -------------------------------------------------------------------------------- /app/src/main/cpp/fbgemm/PackingTraits-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/fbgemm/PackingTraits-inl.h -------------------------------------------------------------------------------- /app/src/main/cpp/fbgemm/QuantUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/fbgemm/QuantUtils.h -------------------------------------------------------------------------------- /app/src/main/cpp/fbgemm/QuantUtilsAvx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/fbgemm/QuantUtilsAvx2.h -------------------------------------------------------------------------------- /app/src/main/cpp/fbgemm/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/fbgemm/Types.h -------------------------------------------------------------------------------- /app/src/main/cpp/fbgemm/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/fbgemm/Utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/fbgemm/UtilsAvx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/fbgemm/UtilsAvx2.h -------------------------------------------------------------------------------- /app/src/main/cpp/fp16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/fp16.h -------------------------------------------------------------------------------- /app/src/main/cpp/fxdiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/fxdiv.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/any.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/any.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/any.pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/any.proto -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/api.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/api.pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/api.proto -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/arena.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/arena_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/arena_impl.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/descriptor.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/empty.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/empty.pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/empty.proto -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/has_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/has_bits.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/io/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/io/printer.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/io/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/io/strtod.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/map.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/map_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/map_entry.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/map_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/map_field.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/message.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/metadata.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/reflection.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/service.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/struct.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/struct.pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/struct.proto -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/stubs/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/stubs/hash.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/stubs/once.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/stubs/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/stubs/port.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/type.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/type.pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/google/protobuf/type.proto -------------------------------------------------------------------------------- /app/src/main/cpp/libshm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/libshm.h -------------------------------------------------------------------------------- /app/src/main/cpp/mkldnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/mkldnn.h -------------------------------------------------------------------------------- /app/src/main/cpp/mkldnn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/mkldnn.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/mkldnn_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/mkldnn_debug.h -------------------------------------------------------------------------------- /app/src/main/cpp/mkldnn_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/mkldnn_types.h -------------------------------------------------------------------------------- /app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/nnpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/nnpack.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/checker.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/common/array_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/common/array_ref.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/common/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/common/assertions.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/common/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/common/constants.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/common/ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/common/ir.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/common/model_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/common/model_helpers.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/common/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/common/status.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/common/stl_backports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/common/stl_backports.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/common/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/common/tensor.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/defs/data_type_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/defs/data_type_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/defs/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/defs/function.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/defs/operator_sets-ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/defs/operator_sets-ml.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/defs/operator_sets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/defs/operator_sets.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/defs/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/defs/schema.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/defs/shape_inference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/defs/shape_inference.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/onnx-operators.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/onnx-operators.pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/onnx-operators_pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/onnx-operators_pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/onnx.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/onnx.pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/onnx_onnx_c2.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/onnx_onnx_c2.pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/onnx_onnx_torch.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/onnx_onnx_torch.pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/onnx_pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/onnx_pb.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/onnxifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/onnxifi.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/onnxifi_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/onnxifi_loader.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/onnxifi_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/onnxifi_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/optimizer/optimize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/optimizer/optimize.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/optimizer/pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/optimizer/pass.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/optimizer/passes/nop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/optimizer/passes/nop.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/proto_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/proto_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/py_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/py_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/onnx/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/onnx/string_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/psimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/psimd.h -------------------------------------------------------------------------------- /app/src/main/cpp/pthreadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pthreadpool.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/attr.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/buffer_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/buffer_info.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/cast.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/chrono.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/common.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/complex.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/detail/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/detail/class.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/detail/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/detail/common.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/detail/descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/detail/descr.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/detail/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/detail/init.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/detail/internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/detail/internals.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/detail/typeid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/detail/typeid.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/eigen.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/embed.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/eval.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/functional.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/iostream.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/numpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/numpy.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/operators.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/options.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/pybind11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/pybind11.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/pytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/pytypes.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/stl.h -------------------------------------------------------------------------------- /app/src/main/cpp/pybind11/stl_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/pybind11/stl_bind.h -------------------------------------------------------------------------------- /app/src/main/cpp/qnnpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/qnnpack.h -------------------------------------------------------------------------------- /app/src/main/cpp/sleef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/sleef.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/DataLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/DataLoader.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/Device.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/Dtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/Dtype.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/DynamicTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/DynamicTypes.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/Exceptions.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/Generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/Generator.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/Layout.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/Module.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/PtrWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/PtrWrapper.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/PythonTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/PythonTypes.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/Size.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/Storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/Storage.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/StorageDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/StorageDefs.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/THP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/THP.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/THP_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/THP_export.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/TypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/TypeInfo.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/Types.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/autograd/edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/autograd/edge.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/autograd/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/autograd/engine.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/autograd/type_and_shape.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/byte_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/byte_order.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/copy_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/copy_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/cuda/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/cuda/Module.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/cuda/Storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/cuda/Storage.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/cuda/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/cuda/Stream.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/cuda/THCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/cuda/THCP.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/cuda/comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/cuda/comm.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/cuda/cuda_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/cuda/cuda_check.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/cuda/device_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/cuda/device_set.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/cuda/nccl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/cuda/nccl.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/cuda/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/cuda/utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/generic/Storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/generic/Storage.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/generic/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/generic/utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/alias_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/alias_info.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/assertions.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/attributes.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/autodiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/autodiff.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/constants.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/dynamic_dag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/dynamic_dag.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/export.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/generic_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/generic_if.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/import.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/init.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/interned_strings_class.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/interpreter.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/ir.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/ir_views.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/ir_views.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/ivalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/ivalue.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/named_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/named_value.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/operator.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/passes/onnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/passes/onnx.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/pybind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/pybind.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/python_ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/python_ir.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/scope.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/script/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/script/init.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/script/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/script/tree.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/stack.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/tracer.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/jit/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/jit/type.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/nn/type_checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/nn/type_checks.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/onnx/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/onnx/init.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/onnx/onnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/onnx/onnx.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/python_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/python_headers.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/serialization.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/utils/auto_gil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/utils/auto_gil.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/utils/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/utils/hash.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/utils/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/utils/memory.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/utils/pybind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/utils/pybind.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/utils/tempfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/utils/tempfile.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/csrc/utils/variadic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/csrc/utils/variadic.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/extension.h -------------------------------------------------------------------------------- /app/src/main/cpp/torch/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/cpp/torch/script.h -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/libglog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/jniLibs/armeabi-v7a/libglog.so -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/res/drawable/ic_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_thumb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/res/drawable/ic_thumb.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumith/AICamera/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------