├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── pytorch_ctc ├── __init__.py └── src │ ├── cpu_binding.cpp │ ├── cpu_binding.h │ ├── ctc_beam_entry.h │ ├── ctc_beam_scorer.h │ ├── ctc_beam_scorer_klm.h │ ├── ctc_beam_search.h │ ├── ctc_decoder.h │ ├── ctc_labels.h │ ├── ctc_loss_util.h │ ├── ctc_trie_node.h │ └── util │ ├── macros.h │ ├── status.cpp │ ├── status.h │ └── top_n.h ├── requirements.txt ├── setup.py ├── tests └── test.py └── third_party ├── eigen3 └── Eigen │ ├── Core │ └── src │ ├── Core │ ├── 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 │ ├── 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 │ │ ├── MKL_support.h │ │ ├── Macros.h │ │ ├── Memory.h │ │ ├── Meta.h │ │ ├── NonMPL2.h │ │ ├── ReenableStupidWarnings.h │ │ ├── StaticAssert.h │ │ └── XprHelper.h │ └── plugins │ ├── ArrayCwiseBinaryOps.h │ ├── ArrayCwiseUnaryOps.h │ ├── BlockMethods.h │ ├── CommonCwiseBinaryOps.h │ ├── CommonCwiseUnaryOps.h │ ├── MatrixCwiseBinaryOps.h │ └── MatrixCwiseUnaryOps.h └── utf8 ├── utf8.h └── utf8 ├── checked.h ├── core.h └── unchecked.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/README.md -------------------------------------------------------------------------------- /pytorch_ctc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/pytorch_ctc/__init__.py -------------------------------------------------------------------------------- /pytorch_ctc/src/cpu_binding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/pytorch_ctc/src/cpu_binding.cpp -------------------------------------------------------------------------------- /pytorch_ctc/src/cpu_binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/pytorch_ctc/src/cpu_binding.h -------------------------------------------------------------------------------- /pytorch_ctc/src/ctc_beam_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/pytorch_ctc/src/ctc_beam_entry.h -------------------------------------------------------------------------------- /pytorch_ctc/src/ctc_beam_scorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/pytorch_ctc/src/ctc_beam_scorer.h -------------------------------------------------------------------------------- /pytorch_ctc/src/ctc_beam_scorer_klm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/pytorch_ctc/src/ctc_beam_scorer_klm.h -------------------------------------------------------------------------------- /pytorch_ctc/src/ctc_beam_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/pytorch_ctc/src/ctc_beam_search.h -------------------------------------------------------------------------------- /pytorch_ctc/src/ctc_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/pytorch_ctc/src/ctc_decoder.h -------------------------------------------------------------------------------- /pytorch_ctc/src/ctc_labels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/pytorch_ctc/src/ctc_labels.h -------------------------------------------------------------------------------- /pytorch_ctc/src/ctc_loss_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/pytorch_ctc/src/ctc_loss_util.h -------------------------------------------------------------------------------- /pytorch_ctc/src/ctc_trie_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/pytorch_ctc/src/ctc_trie_node.h -------------------------------------------------------------------------------- /pytorch_ctc/src/util/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/pytorch_ctc/src/util/macros.h -------------------------------------------------------------------------------- /pytorch_ctc/src/util/status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/pytorch_ctc/src/util/status.cpp -------------------------------------------------------------------------------- /pytorch_ctc/src/util/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/pytorch_ctc/src/util/status.h -------------------------------------------------------------------------------- /pytorch_ctc/src/util/top_n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/pytorch_ctc/src/util/top_n.h -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cffi>=1.0.0 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/tests/test.py -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/Core -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/AssignEvaluator.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/ConditionEstimator.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/CwiseTernaryOp.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/MathFunctionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/MathFunctionsImpl.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/ProductEvaluators.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/AVX/Complex.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/AVX/MathFunctions.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/AVX/PacketMath.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/AVX/TypeCasting.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/AVX512/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/AVX512/MathFunctions.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/AVX512/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/AVX512/PacketMath.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/AltiVec/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/AltiVec/MathFunctions.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/CUDA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/CUDA/Complex.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/CUDA/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/CUDA/Half.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/CUDA/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/CUDA/MathFunctions.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/CUDA/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/CUDA/PacketMath.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/CUDA/PacketMathHalf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/CUDA/PacketMathHalf.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/CUDA/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/CUDA/TypeCasting.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/NEON/MathFunctions.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/SSE/TypeCasting.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/ZVector/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/ZVector/Complex.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/ZVector/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/ZVector/MathFunctions.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/arch/ZVector/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/arch/ZVector/PacketMath.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/functors/AssignmentFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/functors/AssignmentFunctors.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/functors/BinaryFunctors.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/functors/NullaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/functors/NullaryFunctors.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/functors/StlFunctors.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/functors/TernaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/functors/TernaryFunctors.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/functors/UnaryFunctors.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/SelfadjointRank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/SelfadjointRank2Update.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/TriangularMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/TriangularMatrixVector.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/TriangularSolverMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/TriangularSolverMatrix.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/products/TriangularSolverVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/products/TriangularSolverVector.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/eigen3/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /third_party/utf8/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/utf8/utf8.h -------------------------------------------------------------------------------- /third_party/utf8/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/utf8/utf8/checked.h -------------------------------------------------------------------------------- /third_party/utf8/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/utf8/utf8/core.h -------------------------------------------------------------------------------- /third_party/utf8/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoliu/pytorch-ctc/HEAD/third_party/utf8/utf8/unchecked.h --------------------------------------------------------------------------------