├── .gitmodules ├── .readthedocs.yaml ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── benchmark └── acc.cpp ├── demo ├── cpp │ ├── Makefile │ ├── README.md │ └── demo.cpp └── python │ ├── README.md │ ├── shakespeare.py │ └── shakespeare_fast.py ├── docs ├── Makefile ├── build │ ├── doctrees │ │ ├── environment.pickle │ │ └── index.doctree │ ├── html │ │ ├── .buildinfo │ │ ├── _sources │ │ │ └── index.rst.txt │ │ ├── _static │ │ │ ├── alabaster.css │ │ │ ├── basic.css │ │ │ ├── custom.css │ │ │ ├── doctools.js │ │ │ ├── documentation_options.js │ │ │ ├── file.png │ │ │ ├── jquery-3.5.1.js │ │ │ ├── jquery.js │ │ │ ├── language_data.js │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── pygments.css │ │ │ ├── searchtools.js │ │ │ ├── underscore-1.12.0.js │ │ │ └── underscore.js │ │ ├── genindex.html │ │ ├── index.html │ │ ├── objects.inv │ │ ├── search.html │ │ └── searchindex.js │ └── latex │ │ ├── LICRcyr2utf8.xdy │ │ ├── LICRlatin2utf8.xdy │ │ ├── LatinRules.xdy │ │ ├── Makefile │ │ ├── footnotehyper-sphinx.sty │ │ ├── latexmkjarc │ │ ├── latexmkrc │ │ ├── make.bat │ │ ├── python.ist │ │ ├── sketch.aux │ │ ├── sketch.fdb_latexmk │ │ ├── sketch.tex │ │ ├── sphinx.sty │ │ ├── sphinx.xdy │ │ ├── sphinxcyrillic.sty │ │ ├── sphinxhighlight.sty │ │ ├── sphinxhowto.cls │ │ ├── sphinxmanual.cls │ │ ├── sphinxmessages.sty │ │ └── sphinxmulticell.sty ├── make.bat ├── requirements.txt └── source │ ├── conf.py │ └── index.rst ├── include ├── aesctr │ ├── aesctr.h │ └── wy.h ├── blaze │ ├── .gitignore │ ├── CMakeLists.txt │ ├── INSTALL │ ├── LICENSE │ ├── README.md │ ├── blaze │ │ ├── Blaze.h │ │ ├── Forward.h │ │ ├── Math.h │ │ ├── Tutorial.h │ │ ├── Util.h │ │ ├── config │ │ │ ├── Alignment.h │ │ │ ├── Assertion.h │ │ │ ├── BLAS.h │ │ │ ├── CacheSize.h │ │ │ ├── Config.h │ │ │ ├── Debugging.h │ │ │ ├── Inline.h │ │ │ ├── MPI.h │ │ │ ├── Optimizations.h │ │ │ ├── Padding.h │ │ │ ├── Random.h │ │ │ ├── Restrict.h │ │ │ ├── SMP.h │ │ │ ├── StorageOrder.h │ │ │ ├── Thresholds.h │ │ │ ├── TransposeFlag.h │ │ │ └── Vectorization.h │ │ ├── math │ │ │ ├── Accuracy.h │ │ │ ├── Aliases.h │ │ │ ├── AlignmentFlag.h │ │ │ ├── BLAS.h │ │ │ ├── Band.h │ │ │ ├── Column.h │ │ │ ├── Columns.h │ │ │ ├── CompressedMatrix.h │ │ │ ├── CompressedVector.h │ │ │ ├── Constraints.h │ │ │ ├── CustomMatrix.h │ │ │ ├── CustomVector.h │ │ │ ├── DenseMatrix.h │ │ │ ├── DenseVector.h │ │ │ ├── DiagonalMatrix.h │ │ │ ├── DynamicMatrix.h │ │ │ ├── DynamicVector.h │ │ │ ├── Elements.h │ │ │ ├── Epsilon.h │ │ │ ├── Exception.h │ │ │ ├── Forward.h │ │ │ ├── Functors.h │ │ │ ├── GroupTag.h │ │ │ ├── HermitianMatrix.h │ │ │ ├── HybridMatrix.h │ │ │ ├── HybridVector.h │ │ │ ├── IdentityMatrix.h │ │ │ ├── Infinity.h │ │ │ ├── InitializerList.h │ │ │ ├── InitializerMatrix.h │ │ │ ├── InitializerVector.h │ │ │ ├── InversionFlag.h │ │ │ ├── LAPACK.h │ │ │ ├── LowerMatrix.h │ │ │ ├── Math.h │ │ │ ├── Matrix.h │ │ │ ├── PaddingFlag.h │ │ │ ├── ReductionFlag.h │ │ │ ├── RelaxationFlag.h │ │ │ ├── Row.h │ │ │ ├── Rows.h │ │ │ ├── SIMD.h │ │ │ ├── SMP.h │ │ │ ├── Serialization.h │ │ │ ├── Shims.h │ │ │ ├── SparseMatrix.h │ │ │ ├── SparseVector.h │ │ │ ├── StaticMatrix.h │ │ │ ├── StaticVector.h │ │ │ ├── StorageOrder.h │ │ │ ├── StrictlyLowerMatrix.h │ │ │ ├── StrictlyUpperMatrix.h │ │ │ ├── Submatrix.h │ │ │ ├── Subvector.h │ │ │ ├── SymmetricMatrix.h │ │ │ ├── Traits.h │ │ │ ├── TransposeFlag.h │ │ │ ├── TypeTraits.h │ │ │ ├── UniLowerMatrix.h │ │ │ ├── UniUpperMatrix.h │ │ │ ├── UniformMatrix.h │ │ │ ├── UniformVector.h │ │ │ ├── UpperMatrix.h │ │ │ ├── Vector.h │ │ │ ├── Views.h │ │ │ ├── ZeroMatrix.h │ │ │ ├── ZeroVector.h │ │ │ ├── adaptors │ │ │ │ ├── Adaptors.h │ │ │ │ ├── DiagonalMatrix.h │ │ │ │ ├── Forward.h │ │ │ │ ├── HermitianMatrix.h │ │ │ │ ├── LowerMatrix.h │ │ │ │ ├── StrictlyLowerMatrix.h │ │ │ │ ├── StrictlyUpperMatrix.h │ │ │ │ ├── SymmetricMatrix.h │ │ │ │ ├── UniLowerMatrix.h │ │ │ │ ├── UniUpperMatrix.h │ │ │ │ ├── UpperMatrix.h │ │ │ │ ├── diagonalmatrix │ │ │ │ │ ├── BaseTemplate.h │ │ │ │ │ ├── Dense.h │ │ │ │ │ ├── DiagonalProxy.h │ │ │ │ │ └── Sparse.h │ │ │ │ ├── hermitianmatrix │ │ │ │ │ ├── BaseTemplate.h │ │ │ │ │ ├── Dense.h │ │ │ │ │ ├── HermitianElement.h │ │ │ │ │ ├── HermitianProxy.h │ │ │ │ │ ├── HermitianValue.h │ │ │ │ │ └── Sparse.h │ │ │ │ ├── lowermatrix │ │ │ │ │ ├── BaseTemplate.h │ │ │ │ │ ├── Dense.h │ │ │ │ │ ├── LowerProxy.h │ │ │ │ │ └── Sparse.h │ │ │ │ ├── strictlylowermatrix │ │ │ │ │ ├── BaseTemplate.h │ │ │ │ │ ├── Dense.h │ │ │ │ │ ├── Sparse.h │ │ │ │ │ └── StrictlyLowerProxy.h │ │ │ │ ├── strictlyuppermatrix │ │ │ │ │ ├── BaseTemplate.h │ │ │ │ │ ├── Dense.h │ │ │ │ │ ├── Sparse.h │ │ │ │ │ └── StrictlyUpperProxy.h │ │ │ │ ├── symmetricmatrix │ │ │ │ │ ├── BaseTemplate.h │ │ │ │ │ ├── DenseNonScalar.h │ │ │ │ │ ├── DenseScalar.h │ │ │ │ │ ├── NonScalarProxy.h │ │ │ │ │ ├── ScalarProxy.h │ │ │ │ │ ├── SharedValue.h │ │ │ │ │ ├── SparseNonScalar.h │ │ │ │ │ ├── SparseScalar.h │ │ │ │ │ ├── SymmetricElement.h │ │ │ │ │ └── SymmetricValue.h │ │ │ │ ├── unilowermatrix │ │ │ │ │ ├── BaseTemplate.h │ │ │ │ │ ├── Dense.h │ │ │ │ │ ├── Sparse.h │ │ │ │ │ ├── UniLowerElement.h │ │ │ │ │ ├── UniLowerProxy.h │ │ │ │ │ └── UniLowerValue.h │ │ │ │ ├── uniuppermatrix │ │ │ │ │ ├── BaseTemplate.h │ │ │ │ │ ├── Dense.h │ │ │ │ │ ├── Sparse.h │ │ │ │ │ ├── UniUpperElement.h │ │ │ │ │ ├── UniUpperProxy.h │ │ │ │ │ └── UniUpperValue.h │ │ │ │ └── uppermatrix │ │ │ │ │ ├── BaseTemplate.h │ │ │ │ │ ├── Dense.h │ │ │ │ │ ├── Sparse.h │ │ │ │ │ └── UpperProxy.h │ │ │ ├── blas │ │ │ │ ├── BLAS.h │ │ │ │ ├── Types.h │ │ │ │ ├── axpy.h │ │ │ │ ├── cblas │ │ │ │ │ ├── axpy.h │ │ │ │ │ ├── dotc.h │ │ │ │ │ ├── dotu.h │ │ │ │ │ ├── gemm.h │ │ │ │ │ ├── gemv.h │ │ │ │ │ ├── trmm.h │ │ │ │ │ ├── trmv.h │ │ │ │ │ └── trsm.h │ │ │ │ ├── dotc.h │ │ │ │ ├── dotu.h │ │ │ │ ├── gemm.h │ │ │ │ ├── gemv.h │ │ │ │ ├── trmm.h │ │ │ │ ├── trmv.h │ │ │ │ └── trsm.h │ │ │ ├── constraints │ │ │ │ ├── Adaptor.h │ │ │ │ ├── AddExpr.h │ │ │ │ ├── Aligned.h │ │ │ │ ├── BLASCompatible.h │ │ │ │ ├── Band.h │ │ │ │ ├── BinaryMapExpr.h │ │ │ │ ├── CUDAAssignable.h │ │ │ │ ├── Clearable.h │ │ │ │ ├── Column.h │ │ │ │ ├── ColumnMajorMatrix.h │ │ │ │ ├── ColumnVector.h │ │ │ │ ├── Columns.h │ │ │ │ ├── Commutative.h │ │ │ │ ├── CompositeType.h │ │ │ │ ├── Computation.h │ │ │ │ ├── ConstDataAccess.h │ │ │ │ ├── Constraints.h │ │ │ │ ├── Contiguous.h │ │ │ │ ├── CrossExpr.h │ │ │ │ ├── Custom.h │ │ │ │ ├── DeclDiagExpr.h │ │ │ │ ├── DeclExpr.h │ │ │ │ ├── DeclHermExpr.h │ │ │ │ ├── DeclLowExpr.h │ │ │ │ ├── DeclStrLowExpr.h │ │ │ │ ├── DeclStrUppExpr.h │ │ │ │ ├── DeclSymExpr.h │ │ │ │ ├── DeclUniLowExpr.h │ │ │ │ ├── DeclUniUppExpr.h │ │ │ │ ├── DeclUppExpr.h │ │ │ │ ├── Declaration.h │ │ │ │ ├── DenseMatrix.h │ │ │ │ ├── DenseVector.h │ │ │ │ ├── Diagonal.h │ │ │ │ ├── DivExpr.h │ │ │ │ ├── EigenExpr.h │ │ │ │ ├── Elements.h │ │ │ │ ├── EvalExpr.h │ │ │ │ ├── ExpandExpr.h │ │ │ │ ├── Expression.h │ │ │ │ ├── GenExpr.h │ │ │ │ ├── General.h │ │ │ │ ├── Hermitian.h │ │ │ │ ├── Identity.h │ │ │ │ ├── Initializer.h │ │ │ │ ├── Invertible.h │ │ │ │ ├── KronExpr.h │ │ │ │ ├── Lower.h │ │ │ │ ├── MatEvalExpr.h │ │ │ │ ├── MatExpExpr.h │ │ │ │ ├── MatGenExpr.h │ │ │ │ ├── MatInvExpr.h │ │ │ │ ├── MatMapExpr.h │ │ │ │ ├── MatMatAddExpr.h │ │ │ │ ├── MatMatKronExpr.h │ │ │ │ ├── MatMatMapExpr.h │ │ │ │ ├── MatMatMultExpr.h │ │ │ │ ├── MatMatSolveExpr.h │ │ │ │ ├── MatMatSubExpr.h │ │ │ │ ├── MatNoAliasExpr.h │ │ │ │ ├── MatNoSIMDExpr.h │ │ │ │ ├── MatReduceExpr.h │ │ │ │ ├── MatRepeatExpr.h │ │ │ │ ├── MatScalarDivExpr.h │ │ │ │ ├── MatScalarMultExpr.h │ │ │ │ ├── MatSerialExpr.h │ │ │ │ ├── MatTransExpr.h │ │ │ │ ├── MatVecMultExpr.h │ │ │ │ ├── MatVecSolveExpr.h │ │ │ │ ├── Matrix.h │ │ │ │ ├── Modification.h │ │ │ │ ├── MultExpr.h │ │ │ │ ├── MutableDataAccess.h │ │ │ │ ├── NoAliasExpr.h │ │ │ │ ├── NoSIMDExpr.h │ │ │ │ ├── Operation.h │ │ │ │ ├── OpposedView.h │ │ │ │ ├── Padded.h │ │ │ │ ├── PaddingEnabled.h │ │ │ │ ├── Proxy.h │ │ │ │ ├── ReduceExpr.h │ │ │ │ ├── RepeatExpr.h │ │ │ │ ├── RequiresEvaluation.h │ │ │ │ ├── Resizable.h │ │ │ │ ├── Restricted.h │ │ │ │ ├── ResultType.h │ │ │ │ ├── Row.h │ │ │ │ ├── RowMajorMatrix.h │ │ │ │ ├── RowVector.h │ │ │ │ ├── Rows.h │ │ │ │ ├── SIMDCombinable.h │ │ │ │ ├── SIMDEnabled.h │ │ │ │ ├── SIMDPack.h │ │ │ │ ├── SMPAssignable.h │ │ │ │ ├── SVDExpr.h │ │ │ │ ├── SameTag.h │ │ │ │ ├── Scalar.h │ │ │ │ ├── SchurExpr.h │ │ │ │ ├── SerialExpr.h │ │ │ │ ├── Shrinkable.h │ │ │ │ ├── SolveExpr.h │ │ │ │ ├── SparseElement.h │ │ │ │ ├── SparseMatrix.h │ │ │ │ ├── SparseVector.h │ │ │ │ ├── Square.h │ │ │ │ ├── Static.h │ │ │ │ ├── StorageOrder.h │ │ │ │ ├── StrictlyLower.h │ │ │ │ ├── StrictlyTriangular.h │ │ │ │ ├── StrictlyUpper.h │ │ │ │ ├── SubExpr.h │ │ │ │ ├── Submatrix.h │ │ │ │ ├── Subvector.h │ │ │ │ ├── Symmetric.h │ │ │ │ ├── TVecMatMultExpr.h │ │ │ │ ├── TransExpr.h │ │ │ │ ├── Transformation.h │ │ │ │ ├── TransposeFlag.h │ │ │ │ ├── Triangular.h │ │ │ │ ├── UnaryMapExpr.h │ │ │ │ ├── UniLower.h │ │ │ │ ├── UniTriangular.h │ │ │ │ ├── UniUpper.h │ │ │ │ ├── Uniform.h │ │ │ │ ├── Upper.h │ │ │ │ ├── VecEvalExpr.h │ │ │ │ ├── VecExpandExpr.h │ │ │ │ ├── VecGenExpr.h │ │ │ │ ├── VecMapExpr.h │ │ │ │ ├── VecNoAliasExpr.h │ │ │ │ ├── VecNoSIMDExpr.h │ │ │ │ ├── VecRepeatExpr.h │ │ │ │ ├── VecScalarDivExpr.h │ │ │ │ ├── VecScalarMultExpr.h │ │ │ │ ├── VecSerialExpr.h │ │ │ │ ├── VecTVecMapExpr.h │ │ │ │ ├── VecTVecMultExpr.h │ │ │ │ ├── VecTransExpr.h │ │ │ │ ├── VecVecAddExpr.h │ │ │ │ ├── VecVecDivExpr.h │ │ │ │ ├── VecVecKronExpr.h │ │ │ │ ├── VecVecMapExpr.h │ │ │ │ ├── VecVecMultExpr.h │ │ │ │ ├── VecVecSubExpr.h │ │ │ │ ├── Vector.h │ │ │ │ ├── View.h │ │ │ │ └── Zero.h │ │ │ ├── dense │ │ │ │ ├── CustomMatrix.h │ │ │ │ ├── CustomVector.h │ │ │ │ ├── DenseIterator.h │ │ │ │ ├── DenseMatrix.h │ │ │ │ ├── DenseVector.h │ │ │ │ ├── DynamicMatrix.h │ │ │ │ ├── DynamicVector.h │ │ │ │ ├── Eigen.h │ │ │ │ ├── Forward.h │ │ │ │ ├── HybridMatrix.h │ │ │ │ ├── HybridVector.h │ │ │ │ ├── InitializerIterator.h │ │ │ │ ├── InitializerMatrix.h │ │ │ │ ├── InitializerVector.h │ │ │ │ ├── Inversion.h │ │ │ │ ├── LLH.h │ │ │ │ ├── LQ.h │ │ │ │ ├── LSE.h │ │ │ │ ├── LU.h │ │ │ │ ├── MMM.h │ │ │ │ ├── PLLHP.h │ │ │ │ ├── QL.h │ │ │ │ ├── QR.h │ │ │ │ ├── RQ.h │ │ │ │ ├── SVD.h │ │ │ │ ├── StaticMatrix.h │ │ │ │ ├── StaticVector.h │ │ │ │ ├── UniformIterator.h │ │ │ │ ├── UniformMatrix.h │ │ │ │ └── UniformVector.h │ │ │ ├── expressions │ │ │ │ ├── AddExpr.h │ │ │ │ ├── BinaryMapExpr.h │ │ │ │ ├── Computation.h │ │ │ │ ├── CrossExpr.h │ │ │ │ ├── DMatDMatAddExpr.h │ │ │ │ ├── DMatDMatEqualExpr.h │ │ │ │ ├── DMatDMatKronExpr.h │ │ │ │ ├── DMatDMatMapExpr.h │ │ │ │ ├── DMatDMatMultExpr.h │ │ │ │ ├── DMatDMatSchurExpr.h │ │ │ │ ├── DMatDMatSolveExpr.h │ │ │ │ ├── DMatDMatSubExpr.h │ │ │ │ ├── DMatDVecMultExpr.h │ │ │ │ ├── DMatDVecSolveExpr.h │ │ │ │ ├── DMatDeclDiagExpr.h │ │ │ │ ├── DMatDeclHermExpr.h │ │ │ │ ├── DMatDeclLowExpr.h │ │ │ │ ├── DMatDeclStrLowExpr.h │ │ │ │ ├── DMatDeclStrUppExpr.h │ │ │ │ ├── DMatDeclSymExpr.h │ │ │ │ ├── DMatDeclUniLowExpr.h │ │ │ │ ├── DMatDeclUniUppExpr.h │ │ │ │ ├── DMatDeclUppExpr.h │ │ │ │ ├── DMatDetExpr.h │ │ │ │ ├── DMatEigenExpr.h │ │ │ │ ├── DMatEvalExpr.h │ │ │ │ ├── DMatExpExpr.h │ │ │ │ ├── DMatFixExpr.h │ │ │ │ ├── DMatGenExpr.h │ │ │ │ ├── DMatInvExpr.h │ │ │ │ ├── DMatMapExpr.h │ │ │ │ ├── DMatMeanExpr.h │ │ │ │ ├── DMatNoAliasExpr.h │ │ │ │ ├── DMatNoSIMDExpr.h │ │ │ │ ├── DMatNormExpr.h │ │ │ │ ├── DMatReduceExpr.h │ │ │ │ ├── DMatRepeatExpr.h │ │ │ │ ├── DMatSMatAddExpr.h │ │ │ │ ├── DMatSMatEqualExpr.h │ │ │ │ ├── DMatSMatKronExpr.h │ │ │ │ ├── DMatSMatMultExpr.h │ │ │ │ ├── DMatSMatSchurExpr.h │ │ │ │ ├── DMatSMatSubExpr.h │ │ │ │ ├── DMatSVDExpr.h │ │ │ │ ├── DMatSVecMultExpr.h │ │ │ │ ├── DMatScalarDivExpr.h │ │ │ │ ├── DMatScalarMultExpr.h │ │ │ │ ├── DMatSerialExpr.h │ │ │ │ ├── DMatSoftmaxExpr.h │ │ │ │ ├── DMatStdDevExpr.h │ │ │ │ ├── DMatTDMatAddExpr.h │ │ │ │ ├── DMatTDMatMapExpr.h │ │ │ │ ├── DMatTDMatMultExpr.h │ │ │ │ ├── DMatTDMatSchurExpr.h │ │ │ │ ├── DMatTDMatSubExpr.h │ │ │ │ ├── DMatTSMatAddExpr.h │ │ │ │ ├── DMatTSMatMultExpr.h │ │ │ │ ├── DMatTSMatSchurExpr.h │ │ │ │ ├── DMatTSMatSubExpr.h │ │ │ │ ├── DMatTransExpr.h │ │ │ │ ├── DMatTransposer.h │ │ │ │ ├── DMatVarExpr.h │ │ │ │ ├── DVecDVecAddExpr.h │ │ │ │ ├── DVecDVecCrossExpr.h │ │ │ │ ├── DVecDVecDivExpr.h │ │ │ │ ├── DVecDVecEqualExpr.h │ │ │ │ ├── DVecDVecInnerExpr.h │ │ │ │ ├── DVecDVecKronExpr.h │ │ │ │ ├── DVecDVecMapExpr.h │ │ │ │ ├── DVecDVecMultExpr.h │ │ │ │ ├── DVecDVecOuterExpr.h │ │ │ │ ├── DVecDVecSubExpr.h │ │ │ │ ├── DVecEvalExpr.h │ │ │ │ ├── DVecExpandExpr.h │ │ │ │ ├── DVecFixExpr.h │ │ │ │ ├── DVecGenExpr.h │ │ │ │ ├── DVecMapExpr.h │ │ │ │ ├── DVecMeanExpr.h │ │ │ │ ├── DVecNoAliasExpr.h │ │ │ │ ├── DVecNoSIMDExpr.h │ │ │ │ ├── DVecNormExpr.h │ │ │ │ ├── DVecReduceExpr.h │ │ │ │ ├── DVecRepeatExpr.h │ │ │ │ ├── DVecSVecAddExpr.h │ │ │ │ ├── DVecSVecCrossExpr.h │ │ │ │ ├── DVecSVecEqualExpr.h │ │ │ │ ├── DVecSVecInnerExpr.h │ │ │ │ ├── DVecSVecKronExpr.h │ │ │ │ ├── DVecSVecMultExpr.h │ │ │ │ ├── DVecSVecOuterExpr.h │ │ │ │ ├── DVecSVecSubExpr.h │ │ │ │ ├── DVecScalarDivExpr.h │ │ │ │ ├── DVecScalarMultExpr.h │ │ │ │ ├── DVecSerialExpr.h │ │ │ │ ├── DVecSoftmaxExpr.h │ │ │ │ ├── DVecStdDevExpr.h │ │ │ │ ├── DVecTransExpr.h │ │ │ │ ├── DVecTransposer.h │ │ │ │ ├── DVecVarExpr.h │ │ │ │ ├── DeclDiagExpr.h │ │ │ │ ├── DeclExpr.h │ │ │ │ ├── DeclHermExpr.h │ │ │ │ ├── DeclLowExpr.h │ │ │ │ ├── DeclStrLowExpr.h │ │ │ │ ├── DeclStrUppExpr.h │ │ │ │ ├── DeclSymExpr.h │ │ │ │ ├── DeclUniLowExpr.h │ │ │ │ ├── DeclUniUppExpr.h │ │ │ │ ├── DeclUppExpr.h │ │ │ │ ├── Declaration.h │ │ │ │ ├── DenseMatrix.h │ │ │ │ ├── DenseVector.h │ │ │ │ ├── DivExpr.h │ │ │ │ ├── EigenExpr.h │ │ │ │ ├── EvalExpr.h │ │ │ │ ├── ExpandExpr.h │ │ │ │ ├── ExpandExprData.h │ │ │ │ ├── Expression.h │ │ │ │ ├── Forward.h │ │ │ │ ├── GenExpr.h │ │ │ │ ├── KronExpr.h │ │ │ │ ├── MatEvalExpr.h │ │ │ │ ├── MatExpExpr.h │ │ │ │ ├── MatGenExpr.h │ │ │ │ ├── MatInvExpr.h │ │ │ │ ├── MatMapExpr.h │ │ │ │ ├── MatMatAddExpr.h │ │ │ │ ├── MatMatKronExpr.h │ │ │ │ ├── MatMatMapExpr.h │ │ │ │ ├── MatMatMultExpr.h │ │ │ │ ├── MatMatSolveExpr.h │ │ │ │ ├── MatMatSubExpr.h │ │ │ │ ├── MatNoAliasExpr.h │ │ │ │ ├── MatNoSIMDExpr.h │ │ │ │ ├── MatReduceExpr.h │ │ │ │ ├── MatRepeatExpr.h │ │ │ │ ├── MatScalarDivExpr.h │ │ │ │ ├── MatScalarMultExpr.h │ │ │ │ ├── MatSerialExpr.h │ │ │ │ ├── MatTransExpr.h │ │ │ │ ├── MatVecMultExpr.h │ │ │ │ ├── MatVecSolveExpr.h │ │ │ │ ├── Matrix.h │ │ │ │ ├── Modification.h │ │ │ │ ├── MultExpr.h │ │ │ │ ├── NoAliasExpr.h │ │ │ │ ├── NoSIMDExpr.h │ │ │ │ ├── Operation.h │ │ │ │ ├── ReduceExpr.h │ │ │ │ ├── RepeatExpr.h │ │ │ │ ├── RepeatExprData.h │ │ │ │ ├── SMatDMatKronExpr.h │ │ │ │ ├── SMatDMatMultExpr.h │ │ │ │ ├── SMatDMatSchurExpr.h │ │ │ │ ├── SMatDMatSubExpr.h │ │ │ │ ├── SMatDVecMultExpr.h │ │ │ │ ├── SMatDeclDiagExpr.h │ │ │ │ ├── SMatDeclHermExpr.h │ │ │ │ ├── SMatDeclLowExpr.h │ │ │ │ ├── SMatDeclStrLowExpr.h │ │ │ │ ├── SMatDeclStrUppExpr.h │ │ │ │ ├── SMatDeclSymExpr.h │ │ │ │ ├── SMatDeclUniLowExpr.h │ │ │ │ ├── SMatDeclUniUppExpr.h │ │ │ │ ├── SMatDeclUppExpr.h │ │ │ │ ├── SMatEvalExpr.h │ │ │ │ ├── SMatFixExpr.h │ │ │ │ ├── SMatMapExpr.h │ │ │ │ ├── SMatMeanExpr.h │ │ │ │ ├── SMatNoAliasExpr.h │ │ │ │ ├── SMatNoSIMDExpr.h │ │ │ │ ├── SMatNormExpr.h │ │ │ │ ├── SMatReduceExpr.h │ │ │ │ ├── SMatRepeatExpr.h │ │ │ │ ├── SMatSMatAddExpr.h │ │ │ │ ├── SMatSMatEqualExpr.h │ │ │ │ ├── SMatSMatKronExpr.h │ │ │ │ ├── SMatSMatMultExpr.h │ │ │ │ ├── SMatSMatSchurExpr.h │ │ │ │ ├── SMatSMatSubExpr.h │ │ │ │ ├── SMatSVecMultExpr.h │ │ │ │ ├── SMatScalarDivExpr.h │ │ │ │ ├── SMatScalarMultExpr.h │ │ │ │ ├── SMatSerialExpr.h │ │ │ │ ├── SMatStdDevExpr.h │ │ │ │ ├── SMatTDMatMultExpr.h │ │ │ │ ├── SMatTDMatSubExpr.h │ │ │ │ ├── SMatTSMatAddExpr.h │ │ │ │ ├── SMatTSMatKronExpr.h │ │ │ │ ├── SMatTSMatMultExpr.h │ │ │ │ ├── SMatTSMatSchurExpr.h │ │ │ │ ├── SMatTSMatSubExpr.h │ │ │ │ ├── SMatTransExpr.h │ │ │ │ ├── SMatTransposer.h │ │ │ │ ├── SMatVarExpr.h │ │ │ │ ├── SVDExpr.h │ │ │ │ ├── SVecDVecCrossExpr.h │ │ │ │ ├── SVecDVecDivExpr.h │ │ │ │ ├── SVecDVecInnerExpr.h │ │ │ │ ├── SVecDVecKronExpr.h │ │ │ │ ├── SVecDVecMultExpr.h │ │ │ │ ├── SVecDVecOuterExpr.h │ │ │ │ ├── SVecDVecSubExpr.h │ │ │ │ ├── SVecEvalExpr.h │ │ │ │ ├── SVecExpandExpr.h │ │ │ │ ├── SVecFixExpr.h │ │ │ │ ├── SVecMapExpr.h │ │ │ │ ├── SVecMeanExpr.h │ │ │ │ ├── SVecNoAliasExpr.h │ │ │ │ ├── SVecNoSIMDExpr.h │ │ │ │ ├── SVecNormExpr.h │ │ │ │ ├── SVecReduceExpr.h │ │ │ │ ├── SVecRepeatExpr.h │ │ │ │ ├── SVecSVecAddExpr.h │ │ │ │ ├── SVecSVecCrossExpr.h │ │ │ │ ├── SVecSVecEqualExpr.h │ │ │ │ ├── SVecSVecInnerExpr.h │ │ │ │ ├── SVecSVecKronExpr.h │ │ │ │ ├── SVecSVecMultExpr.h │ │ │ │ ├── SVecSVecOuterExpr.h │ │ │ │ ├── SVecSVecSubExpr.h │ │ │ │ ├── SVecScalarDivExpr.h │ │ │ │ ├── SVecScalarMultExpr.h │ │ │ │ ├── SVecSerialExpr.h │ │ │ │ ├── SVecStdDevExpr.h │ │ │ │ ├── SVecTransExpr.h │ │ │ │ ├── SVecTransposer.h │ │ │ │ ├── SVecVarExpr.h │ │ │ │ ├── SchurExpr.h │ │ │ │ ├── SerialExpr.h │ │ │ │ ├── SolveExpr.h │ │ │ │ ├── SparseMatrix.h │ │ │ │ ├── SparseVector.h │ │ │ │ ├── SubExpr.h │ │ │ │ ├── TDMatDMatMultExpr.h │ │ │ │ ├── TDMatDVecMultExpr.h │ │ │ │ ├── TDMatSMatAddExpr.h │ │ │ │ ├── TDMatSMatMultExpr.h │ │ │ │ ├── TDMatSMatSubExpr.h │ │ │ │ ├── TDMatSVecMultExpr.h │ │ │ │ ├── TDMatTDMatMultExpr.h │ │ │ │ ├── TDMatTSMatMultExpr.h │ │ │ │ ├── TDVecDMatMultExpr.h │ │ │ │ ├── TDVecSMatMultExpr.h │ │ │ │ ├── TDVecTDMatMultExpr.h │ │ │ │ ├── TDVecTSMatMultExpr.h │ │ │ │ ├── TSMatDMatMultExpr.h │ │ │ │ ├── TSMatDMatSchurExpr.h │ │ │ │ ├── TSMatDMatSubExpr.h │ │ │ │ ├── TSMatDVecMultExpr.h │ │ │ │ ├── TSMatSMatKronExpr.h │ │ │ │ ├── TSMatSMatMultExpr.h │ │ │ │ ├── TSMatSMatSchurExpr.h │ │ │ │ ├── TSMatSMatSubExpr.h │ │ │ │ ├── TSMatSVecMultExpr.h │ │ │ │ ├── TSMatTDMatMultExpr.h │ │ │ │ ├── TSMatTSMatAddExpr.h │ │ │ │ ├── TSMatTSMatKronExpr.h │ │ │ │ ├── TSMatTSMatMultExpr.h │ │ │ │ ├── TSMatTSMatSchurExpr.h │ │ │ │ ├── TSMatTSMatSubExpr.h │ │ │ │ ├── TSVecDMatMultExpr.h │ │ │ │ ├── TSVecSMatMultExpr.h │ │ │ │ ├── TSVecTDMatMultExpr.h │ │ │ │ ├── TSVecTSMatMultExpr.h │ │ │ │ ├── TVecMatMultExpr.h │ │ │ │ ├── TransExpr.h │ │ │ │ ├── Transformation.h │ │ │ │ ├── UnaryMapExpr.h │ │ │ │ ├── VecEvalExpr.h │ │ │ │ ├── VecExpandExpr.h │ │ │ │ ├── VecGenExpr.h │ │ │ │ ├── VecMapExpr.h │ │ │ │ ├── VecNoAliasExpr.h │ │ │ │ ├── VecNoSIMDExpr.h │ │ │ │ ├── VecRepeatExpr.h │ │ │ │ ├── VecScalarDivExpr.h │ │ │ │ ├── VecScalarMultExpr.h │ │ │ │ ├── VecSerialExpr.h │ │ │ │ ├── VecTVecMapExpr.h │ │ │ │ ├── VecTVecMultExpr.h │ │ │ │ ├── VecTransExpr.h │ │ │ │ ├── VecVecAddExpr.h │ │ │ │ ├── VecVecDivExpr.h │ │ │ │ ├── VecVecKronExpr.h │ │ │ │ ├── VecVecMapExpr.h │ │ │ │ ├── VecVecMultExpr.h │ │ │ │ ├── VecVecSubExpr.h │ │ │ │ ├── Vector.h │ │ │ │ └── View.h │ │ │ ├── functors │ │ │ │ ├── Abs.h │ │ │ │ ├── Acos.h │ │ │ │ ├── Acosh.h │ │ │ │ ├── Add.h │ │ │ │ ├── AddAssign.h │ │ │ │ ├── And.h │ │ │ │ ├── AndAssign.h │ │ │ │ ├── Arg.h │ │ │ │ ├── Asin.h │ │ │ │ ├── Asinh.h │ │ │ │ ├── Assign.h │ │ │ │ ├── Atan.h │ │ │ │ ├── Atan2.h │ │ │ │ ├── Atanh.h │ │ │ │ ├── Bind1st.h │ │ │ │ ├── Bind2nd.h │ │ │ │ ├── Bind3rd.h │ │ │ │ ├── Bitand.h │ │ │ │ ├── Bitor.h │ │ │ │ ├── Bitxor.h │ │ │ │ ├── CTrans.h │ │ │ │ ├── Cbrt.h │ │ │ │ ├── Ceil.h │ │ │ │ ├── Clamp.h │ │ │ │ ├── Clear.h │ │ │ │ ├── Conj.h │ │ │ │ ├── Cos.h │ │ │ │ ├── Cosh.h │ │ │ │ ├── DeclDiag.h │ │ │ │ ├── DeclHerm.h │ │ │ │ ├── DeclId.h │ │ │ │ ├── DeclLow.h │ │ │ │ ├── DeclStrLow.h │ │ │ │ ├── DeclStrUpp.h │ │ │ │ ├── DeclSym.h │ │ │ │ ├── DeclUniLow.h │ │ │ │ ├── DeclUniUpp.h │ │ │ │ ├── DeclUpp.h │ │ │ │ ├── DeclZero.h │ │ │ │ ├── Div.h │ │ │ │ ├── DivAssign.h │ │ │ │ ├── Erf.h │ │ │ │ ├── Erfc.h │ │ │ │ ├── Eval.h │ │ │ │ ├── Exp.h │ │ │ │ ├── Exp10.h │ │ │ │ ├── Exp2.h │ │ │ │ ├── Floor.h │ │ │ │ ├── Forward.h │ │ │ │ ├── Functors.h │ │ │ │ ├── Greater.h │ │ │ │ ├── Hypot.h │ │ │ │ ├── Imag.h │ │ │ │ ├── Inv.h │ │ │ │ ├── InvAdd.h │ │ │ │ ├── InvCbrt.h │ │ │ │ ├── InvSqrt.h │ │ │ │ ├── Join.h │ │ │ │ ├── Kron.h │ │ │ │ ├── L1Norm.h │ │ │ │ ├── L2Norm.h │ │ │ │ ├── L3Norm.h │ │ │ │ ├── L4Norm.h │ │ │ │ ├── LGamma.h │ │ │ │ ├── LeftShiftAssign.h │ │ │ │ ├── Less.h │ │ │ │ ├── Log.h │ │ │ │ ├── Log10.h │ │ │ │ ├── Log1p.h │ │ │ │ ├── Log2.h │ │ │ │ ├── LpNorm.h │ │ │ │ ├── MAC.h │ │ │ │ ├── MakePair.h │ │ │ │ ├── Max.h │ │ │ │ ├── Min.h │ │ │ │ ├── Minmax.h │ │ │ │ ├── ModuloAssign.h │ │ │ │ ├── Mult.h │ │ │ │ ├── MultAssign.h │ │ │ │ ├── NoAlias.h │ │ │ │ ├── NoSIMD.h │ │ │ │ ├── Noop.h │ │ │ │ ├── Not.h │ │ │ │ ├── Or.h │ │ │ │ ├── OrAssign.h │ │ │ │ ├── Pow.h │ │ │ │ ├── Pow2.h │ │ │ │ ├── Pow3.h │ │ │ │ ├── Pow4.h │ │ │ │ ├── Qdrt.h │ │ │ │ ├── Real.h │ │ │ │ ├── Reset.h │ │ │ │ ├── RightShiftAssign.h │ │ │ │ ├── Round.h │ │ │ │ ├── Schur.h │ │ │ │ ├── Serial.h │ │ │ │ ├── ShiftLI.h │ │ │ │ ├── ShiftLV.h │ │ │ │ ├── ShiftRI.h │ │ │ │ ├── ShiftRV.h │ │ │ │ ├── Sign.h │ │ │ │ ├── Sin.h │ │ │ │ ├── Sinh.h │ │ │ │ ├── SqrAbs.h │ │ │ │ ├── Sqrt.h │ │ │ │ ├── Sub.h │ │ │ │ ├── SubAssign.h │ │ │ │ ├── Tan.h │ │ │ │ ├── Tanh.h │ │ │ │ ├── Trans.h │ │ │ │ ├── Trunc.h │ │ │ │ └── XorAssign.h │ │ │ ├── lapack │ │ │ │ ├── LAPACK.h │ │ │ │ ├── clapack │ │ │ │ │ ├── geev.h │ │ │ │ │ ├── gelqf.h │ │ │ │ │ ├── geqlf.h │ │ │ │ │ ├── geqp3.h │ │ │ │ │ ├── geqrf.h │ │ │ │ │ ├── gerqf.h │ │ │ │ │ ├── gesdd.h │ │ │ │ │ ├── gesv.h │ │ │ │ │ ├── gesvd.h │ │ │ │ │ ├── gesvdx.h │ │ │ │ │ ├── getrf.h │ │ │ │ │ ├── getri.h │ │ │ │ │ ├── getrs.h │ │ │ │ │ ├── gges.h │ │ │ │ │ ├── heev.h │ │ │ │ │ ├── heevd.h │ │ │ │ │ ├── heevx.h │ │ │ │ │ ├── hesv.h │ │ │ │ │ ├── hetrf.h │ │ │ │ │ ├── hetri.h │ │ │ │ │ ├── hetrs.h │ │ │ │ │ ├── org2l.h │ │ │ │ │ ├── org2r.h │ │ │ │ │ ├── orgl2.h │ │ │ │ │ ├── orglq.h │ │ │ │ │ ├── orgql.h │ │ │ │ │ ├── orgqr.h │ │ │ │ │ ├── orgr2.h │ │ │ │ │ ├── orgrq.h │ │ │ │ │ ├── ormlq.h │ │ │ │ │ ├── ormql.h │ │ │ │ │ ├── ormqr.h │ │ │ │ │ ├── ormrq.h │ │ │ │ │ ├── posv.h │ │ │ │ │ ├── potrf.h │ │ │ │ │ ├── potri.h │ │ │ │ │ ├── potrs.h │ │ │ │ │ ├── pstrf.h │ │ │ │ │ ├── syev.h │ │ │ │ │ ├── syevd.h │ │ │ │ │ ├── syevx.h │ │ │ │ │ ├── sysv.h │ │ │ │ │ ├── sytrf.h │ │ │ │ │ ├── sytri.h │ │ │ │ │ ├── sytrs.h │ │ │ │ │ ├── trsv.h │ │ │ │ │ ├── trtri.h │ │ │ │ │ ├── trtrs.h │ │ │ │ │ ├── ung2l.h │ │ │ │ │ ├── ung2r.h │ │ │ │ │ ├── ungl2.h │ │ │ │ │ ├── unglq.h │ │ │ │ │ ├── ungql.h │ │ │ │ │ ├── ungqr.h │ │ │ │ │ ├── ungr2.h │ │ │ │ │ ├── ungrq.h │ │ │ │ │ ├── unmlq.h │ │ │ │ │ ├── unmql.h │ │ │ │ │ ├── unmqr.h │ │ │ │ │ └── unmrq.h │ │ │ │ ├── geev.h │ │ │ │ ├── gelqf.h │ │ │ │ ├── geqlf.h │ │ │ │ ├── geqp3.h │ │ │ │ ├── geqrf.h │ │ │ │ ├── gerqf.h │ │ │ │ ├── gesdd.h │ │ │ │ ├── gesv.h │ │ │ │ ├── gesvd.h │ │ │ │ ├── gesvdx.h │ │ │ │ ├── getrf.h │ │ │ │ ├── getri.h │ │ │ │ ├── getrs.h │ │ │ │ ├── gges.h │ │ │ │ ├── heev.h │ │ │ │ ├── heevd.h │ │ │ │ ├── heevx.h │ │ │ │ ├── hesv.h │ │ │ │ ├── hetrf.h │ │ │ │ ├── hetri.h │ │ │ │ ├── hetrs.h │ │ │ │ ├── org2l.h │ │ │ │ ├── org2r.h │ │ │ │ ├── orgl2.h │ │ │ │ ├── orglq.h │ │ │ │ ├── orgql.h │ │ │ │ ├── orgqr.h │ │ │ │ ├── orgr2.h │ │ │ │ ├── orgrq.h │ │ │ │ ├── ormlq.h │ │ │ │ ├── ormql.h │ │ │ │ ├── ormqr.h │ │ │ │ ├── ormrq.h │ │ │ │ ├── posv.h │ │ │ │ ├── potrf.h │ │ │ │ ├── potri.h │ │ │ │ ├── potrs.h │ │ │ │ ├── pstrf.h │ │ │ │ ├── syev.h │ │ │ │ ├── syevd.h │ │ │ │ ├── syevx.h │ │ │ │ ├── sysv.h │ │ │ │ ├── sytrf.h │ │ │ │ ├── sytri.h │ │ │ │ ├── sytrs.h │ │ │ │ ├── trsv.h │ │ │ │ ├── trtri.h │ │ │ │ ├── trtrs.h │ │ │ │ ├── ung2l.h │ │ │ │ ├── ung2r.h │ │ │ │ ├── ungl2.h │ │ │ │ ├── unglq.h │ │ │ │ ├── ungql.h │ │ │ │ ├── ungqr.h │ │ │ │ ├── ungr2.h │ │ │ │ ├── ungrq.h │ │ │ │ ├── unmlq.h │ │ │ │ ├── unmql.h │ │ │ │ ├── unmqr.h │ │ │ │ └── unmrq.h │ │ │ ├── proxy │ │ │ │ ├── ComplexProxy.h │ │ │ │ ├── DefaultProxy.h │ │ │ │ ├── DenseMatrixProxy.h │ │ │ │ ├── DenseVectorProxy.h │ │ │ │ ├── Forward.h │ │ │ │ ├── Proxy.h │ │ │ │ ├── SparseMatrixProxy.h │ │ │ │ └── SparseVectorProxy.h │ │ │ ├── serialization │ │ │ │ ├── MatrixSerializer.h │ │ │ │ ├── Serialization.h │ │ │ │ ├── TypeValueMapping.h │ │ │ │ └── VectorSerializer.h │ │ │ ├── shims │ │ │ │ ├── Abs.h │ │ │ │ ├── Acos.h │ │ │ │ ├── Acosh.h │ │ │ │ ├── Add.h │ │ │ │ ├── Arg.h │ │ │ │ ├── Asin.h │ │ │ │ ├── Asinh.h │ │ │ │ ├── Atan.h │ │ │ │ ├── Atan2.h │ │ │ │ ├── Atanh.h │ │ │ │ ├── Cbrt.h │ │ │ │ ├── Ceil.h │ │ │ │ ├── Clamp.h │ │ │ │ ├── Clear.h │ │ │ │ ├── Conjugate.h │ │ │ │ ├── Cos.h │ │ │ │ ├── Cosh.h │ │ │ │ ├── Digits.h │ │ │ │ ├── Div.h │ │ │ │ ├── Equal.h │ │ │ │ ├── Erf.h │ │ │ │ ├── Erfc.h │ │ │ │ ├── Eval.h │ │ │ │ ├── Evaluate.h │ │ │ │ ├── Exp.h │ │ │ │ ├── Exp10.h │ │ │ │ ├── Exp2.h │ │ │ │ ├── Floor.h │ │ │ │ ├── Frexp.h │ │ │ │ ├── Greater.h │ │ │ │ ├── Hypot.h │ │ │ │ ├── Imaginary.h │ │ │ │ ├── InvCbrt.h │ │ │ │ ├── InvSqrt.h │ │ │ │ ├── Invert.h │ │ │ │ ├── IsDefault.h │ │ │ │ ├── IsDivisor.h │ │ │ │ ├── IsFinite.h │ │ │ │ ├── IsInf.h │ │ │ │ ├── IsNaN.h │ │ │ │ ├── IsOne.h │ │ │ │ ├── IsReal.h │ │ │ │ ├── IsZero.h │ │ │ │ ├── LGamma.h │ │ │ │ ├── Less.h │ │ │ │ ├── Log.h │ │ │ │ ├── Log10.h │ │ │ │ ├── Log1p.h │ │ │ │ ├── Log2.h │ │ │ │ ├── Mult.h │ │ │ │ ├── NextMultiple.h │ │ │ │ ├── Pow.h │ │ │ │ ├── Pow2.h │ │ │ │ ├── Pow3.h │ │ │ │ ├── Pow4.h │ │ │ │ ├── PrevMultiple.h │ │ │ │ ├── Qdrt.h │ │ │ │ ├── Real.h │ │ │ │ ├── Reset.h │ │ │ │ ├── Round.h │ │ │ │ ├── Serial.h │ │ │ │ ├── Shims.h │ │ │ │ ├── Sign.h │ │ │ │ ├── Sin.h │ │ │ │ ├── Sinh.h │ │ │ │ ├── Sqrt.h │ │ │ │ ├── Sub.h │ │ │ │ ├── Tan.h │ │ │ │ ├── Tanh.h │ │ │ │ └── Trunc.h │ │ │ ├── simd │ │ │ │ ├── Abs.h │ │ │ │ ├── Acos.h │ │ │ │ ├── Acosh.h │ │ │ │ ├── Add.h │ │ │ │ ├── Asin.h │ │ │ │ ├── Asinh.h │ │ │ │ ├── Atan.h │ │ │ │ ├── Atan2.h │ │ │ │ ├── Atanh.h │ │ │ │ ├── BasicTypes.h │ │ │ │ ├── Bitand.h │ │ │ │ ├── Bitor.h │ │ │ │ ├── Bitxor.h │ │ │ │ ├── Cbrt.h │ │ │ │ ├── Ceil.h │ │ │ │ ├── Conj.h │ │ │ │ ├── Cos.h │ │ │ │ ├── Cosh.h │ │ │ │ ├── DerivedTypes.h │ │ │ │ ├── Div.h │ │ │ │ ├── Equal.h │ │ │ │ ├── Erf.h │ │ │ │ ├── Erfc.h │ │ │ │ ├── Exp.h │ │ │ │ ├── Exp10.h │ │ │ │ ├── Exp2.h │ │ │ │ ├── FMA.h │ │ │ │ ├── Floor.h │ │ │ │ ├── Functions.h │ │ │ │ ├── Hypot.h │ │ │ │ ├── InvCbrt.h │ │ │ │ ├── InvSqrt.h │ │ │ │ ├── LGamma.h │ │ │ │ ├── Loada.h │ │ │ │ ├── Loadu.h │ │ │ │ ├── Log.h │ │ │ │ ├── Log10.h │ │ │ │ ├── Log1p.h │ │ │ │ ├── Log2.h │ │ │ │ ├── Max.h │ │ │ │ ├── Min.h │ │ │ │ ├── Mult.h │ │ │ │ ├── Pow.h │ │ │ │ ├── Prod.h │ │ │ │ ├── Reduce.h │ │ │ │ ├── Round.h │ │ │ │ ├── SIMD.h │ │ │ │ ├── SIMDPack.h │ │ │ │ ├── SIMDTrait.h │ │ │ │ ├── Set.h │ │ │ │ ├── Setall.h │ │ │ │ ├── Setzero.h │ │ │ │ ├── ShiftLI.h │ │ │ │ ├── ShiftLV.h │ │ │ │ ├── ShiftRI.h │ │ │ │ ├── ShiftRV.h │ │ │ │ ├── Sign.h │ │ │ │ ├── Sin.h │ │ │ │ ├── Sinh.h │ │ │ │ ├── Sqrt.h │ │ │ │ ├── Storea.h │ │ │ │ ├── Storeu.h │ │ │ │ ├── Stream.h │ │ │ │ ├── Sub.h │ │ │ │ ├── Sum.h │ │ │ │ ├── Tan.h │ │ │ │ ├── Tanh.h │ │ │ │ └── Trunc.h │ │ │ ├── smp │ │ │ │ ├── DenseMatrix.h │ │ │ │ ├── DenseVector.h │ │ │ │ ├── Functions.h │ │ │ │ ├── ParallelSection.h │ │ │ │ ├── SMP.h │ │ │ │ ├── SerialSection.h │ │ │ │ ├── SparseMatrix.h │ │ │ │ ├── SparseVector.h │ │ │ │ ├── ThreadMapping.h │ │ │ │ ├── default │ │ │ │ │ ├── DenseMatrix.h │ │ │ │ │ ├── DenseVector.h │ │ │ │ │ ├── Functions.h │ │ │ │ │ ├── SparseMatrix.h │ │ │ │ │ └── SparseVector.h │ │ │ │ ├── hpx │ │ │ │ │ ├── DenseMatrix.h │ │ │ │ │ ├── DenseVector.h │ │ │ │ │ └── Functions.h │ │ │ │ ├── openmp │ │ │ │ │ ├── DenseMatrix.h │ │ │ │ │ ├── DenseVector.h │ │ │ │ │ └── Functions.h │ │ │ │ └── threads │ │ │ │ │ ├── DenseMatrix.h │ │ │ │ │ ├── DenseVector.h │ │ │ │ │ ├── Functions.h │ │ │ │ │ └── ThreadBackend.h │ │ │ ├── sparse │ │ │ │ ├── CompressedMatrix.h │ │ │ │ ├── CompressedVector.h │ │ │ │ ├── Forward.h │ │ │ │ ├── IdentityMatrix.h │ │ │ │ ├── MatrixAccessProxy.h │ │ │ │ ├── SparseElement.h │ │ │ │ ├── SparseMatrix.h │ │ │ │ ├── SparseVector.h │ │ │ │ ├── ValueIndexPair.h │ │ │ │ ├── VectorAccessProxy.h │ │ │ │ ├── ZeroMatrix.h │ │ │ │ └── ZeroVector.h │ │ │ ├── traits │ │ │ │ ├── AddTrait.h │ │ │ │ ├── BandTrait.h │ │ │ │ ├── ColumnTrait.h │ │ │ │ ├── ColumnsTrait.h │ │ │ │ ├── CrossTrait.h │ │ │ │ ├── DeclDiagTrait.h │ │ │ │ ├── DeclHermTrait.h │ │ │ │ ├── DeclIdTrait.h │ │ │ │ ├── DeclLowTrait.h │ │ │ │ ├── DeclStrLowTrait.h │ │ │ │ ├── DeclStrUppTrait.h │ │ │ │ ├── DeclSymTrait.h │ │ │ │ ├── DeclUniLowTrait.h │ │ │ │ ├── DeclUniUppTrait.h │ │ │ │ ├── DeclUppTrait.h │ │ │ │ ├── DeclZeroTrait.h │ │ │ │ ├── DerestrictTrait.h │ │ │ │ ├── DivTrait.h │ │ │ │ ├── ElementsTrait.h │ │ │ │ ├── EvaluateTrait.h │ │ │ │ ├── ExpandTrait.h │ │ │ │ ├── KronTrait.h │ │ │ │ ├── MapTrait.h │ │ │ │ ├── MultTrait.h │ │ │ │ ├── ReduceTrait.h │ │ │ │ ├── RepeatTrait.h │ │ │ │ ├── RowTrait.h │ │ │ │ ├── RowsTrait.h │ │ │ │ ├── SchurTrait.h │ │ │ │ ├── SolveTrait.h │ │ │ │ ├── SubTrait.h │ │ │ │ ├── SubmatrixTrait.h │ │ │ │ ├── SubvectorTrait.h │ │ │ │ └── Traits.h │ │ │ ├── typetraits │ │ │ │ ├── CustomOppositeType.h │ │ │ │ ├── CustomTransposeType.h │ │ │ │ ├── DynamicAllocator.h │ │ │ │ ├── GetAllocator.h │ │ │ │ ├── HasAbs.h │ │ │ │ ├── HasAcos.h │ │ │ │ ├── HasAcosh.h │ │ │ │ ├── HasAdd.h │ │ │ │ ├── HasAsin.h │ │ │ │ ├── HasAsinh.h │ │ │ │ ├── HasAtan.h │ │ │ │ ├── HasAtan2.h │ │ │ │ ├── HasAtanh.h │ │ │ │ ├── HasCbrt.h │ │ │ │ ├── HasCeil.h │ │ │ │ ├── HasClamp.h │ │ │ │ ├── HasCompositeType.h │ │ │ │ ├── HasConj.h │ │ │ │ ├── HasConstDataAccess.h │ │ │ │ ├── HasCos.h │ │ │ │ ├── HasCosh.h │ │ │ │ ├── HasDiv.h │ │ │ │ ├── HasErf.h │ │ │ │ ├── HasErfc.h │ │ │ │ ├── HasExp.h │ │ │ │ ├── HasExp10.h │ │ │ │ ├── HasExp2.h │ │ │ │ ├── HasFloor.h │ │ │ │ ├── HasHypot.h │ │ │ │ ├── HasImag.h │ │ │ │ ├── HasInvCbrt.h │ │ │ │ ├── HasInvSqrt.h │ │ │ │ ├── HasLGamma.h │ │ │ │ ├── HasLoad.h │ │ │ │ ├── HasLog.h │ │ │ │ ├── HasLog10.h │ │ │ │ ├── HasLog1p.h │ │ │ │ ├── HasLog2.h │ │ │ │ ├── HasMax.h │ │ │ │ ├── HasMin.h │ │ │ │ ├── HasMult.h │ │ │ │ ├── HasMutableDataAccess.h │ │ │ │ ├── HasPow.h │ │ │ │ ├── HasReal.h │ │ │ │ ├── HasResultType.h │ │ │ │ ├── HasRound.h │ │ │ │ ├── HasSIMDAbs.h │ │ │ │ ├── HasSIMDAcos.h │ │ │ │ ├── HasSIMDAcosh.h │ │ │ │ ├── HasSIMDAdd.h │ │ │ │ ├── HasSIMDAsin.h │ │ │ │ ├── HasSIMDAsinh.h │ │ │ │ ├── HasSIMDAtan.h │ │ │ │ ├── HasSIMDAtan2.h │ │ │ │ ├── HasSIMDAtanh.h │ │ │ │ ├── HasSIMDBitand.h │ │ │ │ ├── HasSIMDBitor.h │ │ │ │ ├── HasSIMDBitxor.h │ │ │ │ ├── HasSIMDCbrt.h │ │ │ │ ├── HasSIMDCeil.h │ │ │ │ ├── HasSIMDConj.h │ │ │ │ ├── HasSIMDCos.h │ │ │ │ ├── HasSIMDCosh.h │ │ │ │ ├── HasSIMDDiv.h │ │ │ │ ├── HasSIMDEqual.h │ │ │ │ ├── HasSIMDErf.h │ │ │ │ ├── HasSIMDErfc.h │ │ │ │ ├── HasSIMDExp.h │ │ │ │ ├── HasSIMDExp10.h │ │ │ │ ├── HasSIMDExp2.h │ │ │ │ ├── HasSIMDFloor.h │ │ │ │ ├── HasSIMDHypot.h │ │ │ │ ├── HasSIMDInvCbrt.h │ │ │ │ ├── HasSIMDInvSqrt.h │ │ │ │ ├── HasSIMDLGamma.h │ │ │ │ ├── HasSIMDLog.h │ │ │ │ ├── HasSIMDLog10.h │ │ │ │ ├── HasSIMDLog1p.h │ │ │ │ ├── HasSIMDLog2.h │ │ │ │ ├── HasSIMDMax.h │ │ │ │ ├── HasSIMDMin.h │ │ │ │ ├── HasSIMDMult.h │ │ │ │ ├── HasSIMDPow.h │ │ │ │ ├── HasSIMDRound.h │ │ │ │ ├── HasSIMDShiftLI.h │ │ │ │ ├── HasSIMDShiftLV.h │ │ │ │ ├── HasSIMDShiftRI.h │ │ │ │ ├── HasSIMDShiftRV.h │ │ │ │ ├── HasSIMDSign.h │ │ │ │ ├── HasSIMDSin.h │ │ │ │ ├── HasSIMDSinh.h │ │ │ │ ├── HasSIMDSqrt.h │ │ │ │ ├── HasSIMDSub.h │ │ │ │ ├── HasSIMDTan.h │ │ │ │ ├── HasSIMDTanh.h │ │ │ │ ├── HasSIMDTrunc.h │ │ │ │ ├── HasSign.h │ │ │ │ ├── HasSin.h │ │ │ │ ├── HasSinh.h │ │ │ │ ├── HasSqrt.h │ │ │ │ ├── HasSub.h │ │ │ │ ├── HasTan.h │ │ │ │ ├── HasTanh.h │ │ │ │ ├── HasTrunc.h │ │ │ │ ├── HighType.h │ │ │ │ ├── IsAdaptor.h │ │ │ │ ├── IsAddExpr.h │ │ │ │ ├── IsAligned.h │ │ │ │ ├── IsBLASCompatible.h │ │ │ │ ├── IsBand.h │ │ │ │ ├── IsBinaryMapExpr.h │ │ │ │ ├── IsCUDAAssignable.h │ │ │ │ ├── IsClearable.h │ │ │ │ ├── IsColumn.h │ │ │ │ ├── IsColumnMajorMatrix.h │ │ │ │ ├── IsColumnVector.h │ │ │ │ ├── IsColumns.h │ │ │ │ ├── IsCommutative.h │ │ │ │ ├── IsComputation.h │ │ │ │ ├── IsContiguous.h │ │ │ │ ├── IsCrossExpr.h │ │ │ │ ├── IsCustom.h │ │ │ │ ├── IsDeclDiagExpr.h │ │ │ │ ├── IsDeclExpr.h │ │ │ │ ├── IsDeclHermExpr.h │ │ │ │ ├── IsDeclLowExpr.h │ │ │ │ ├── IsDeclStrLowExpr.h │ │ │ │ ├── IsDeclStrUppExpr.h │ │ │ │ ├── IsDeclSymExpr.h │ │ │ │ ├── IsDeclUniLowExpr.h │ │ │ │ ├── IsDeclUniUppExpr.h │ │ │ │ ├── IsDeclUppExpr.h │ │ │ │ ├── IsDeclaration.h │ │ │ │ ├── IsDenseMatrix.h │ │ │ │ ├── IsDenseVector.h │ │ │ │ ├── IsDiagonal.h │ │ │ │ ├── IsDivExpr.h │ │ │ │ ├── IsEigenExpr.h │ │ │ │ ├── IsElements.h │ │ │ │ ├── IsEvalExpr.h │ │ │ │ ├── IsExpandExpr.h │ │ │ │ ├── IsExpression.h │ │ │ │ ├── IsGenExpr.h │ │ │ │ ├── IsGeneral.h │ │ │ │ ├── IsHermitian.h │ │ │ │ ├── IsIdentity.h │ │ │ │ ├── IsInitializer.h │ │ │ │ ├── IsInvertible.h │ │ │ │ ├── IsKronExpr.h │ │ │ │ ├── IsLower.h │ │ │ │ ├── IsMatEvalExpr.h │ │ │ │ ├── IsMatExpExpr.h │ │ │ │ ├── IsMatGenExpr.h │ │ │ │ ├── IsMatInvExpr.h │ │ │ │ ├── IsMatMapExpr.h │ │ │ │ ├── IsMatMatAddExpr.h │ │ │ │ ├── IsMatMatKronExpr.h │ │ │ │ ├── IsMatMatMapExpr.h │ │ │ │ ├── IsMatMatMultExpr.h │ │ │ │ ├── IsMatMatSolveExpr.h │ │ │ │ ├── IsMatMatSubExpr.h │ │ │ │ ├── IsMatNoAliasExpr.h │ │ │ │ ├── IsMatNoSIMDExpr.h │ │ │ │ ├── IsMatReduceExpr.h │ │ │ │ ├── IsMatRepeatExpr.h │ │ │ │ ├── IsMatScalarDivExpr.h │ │ │ │ ├── IsMatScalarMultExpr.h │ │ │ │ ├── IsMatSerialExpr.h │ │ │ │ ├── IsMatTransExpr.h │ │ │ │ ├── IsMatVecMultExpr.h │ │ │ │ ├── IsMatVecSolveExpr.h │ │ │ │ ├── IsMatrix.h │ │ │ │ ├── IsModification.h │ │ │ │ ├── IsMultExpr.h │ │ │ │ ├── IsNoAliasExpr.h │ │ │ │ ├── IsNoSIMDExpr.h │ │ │ │ ├── IsOperation.h │ │ │ │ ├── IsOpposedView.h │ │ │ │ ├── IsPadded.h │ │ │ │ ├── IsPaddingEnabled.h │ │ │ │ ├── IsProxy.h │ │ │ │ ├── IsReduceExpr.h │ │ │ │ ├── IsRepeatExpr.h │ │ │ │ ├── IsResizable.h │ │ │ │ ├── IsRestricted.h │ │ │ │ ├── IsRow.h │ │ │ │ ├── IsRowMajorMatrix.h │ │ │ │ ├── IsRowVector.h │ │ │ │ ├── IsRows.h │ │ │ │ ├── IsSIMDCombinable.h │ │ │ │ ├── IsSIMDEnabled.h │ │ │ │ ├── IsSIMDPack.h │ │ │ │ ├── IsSMPAssignable.h │ │ │ │ ├── IsSVDExpr.h │ │ │ │ ├── IsScalar.h │ │ │ │ ├── IsSchurExpr.h │ │ │ │ ├── IsSerialExpr.h │ │ │ │ ├── IsShrinkable.h │ │ │ │ ├── IsSolveExpr.h │ │ │ │ ├── IsSparseElement.h │ │ │ │ ├── IsSparseMatrix.h │ │ │ │ ├── IsSparseVector.h │ │ │ │ ├── IsSquare.h │ │ │ │ ├── IsStatic.h │ │ │ │ ├── IsStrictlyLower.h │ │ │ │ ├── IsStrictlyTriangular.h │ │ │ │ ├── IsStrictlyUpper.h │ │ │ │ ├── IsSubExpr.h │ │ │ │ ├── IsSubmatrix.h │ │ │ │ ├── IsSubvector.h │ │ │ │ ├── IsSymmetric.h │ │ │ │ ├── IsTVecMatMultExpr.h │ │ │ │ ├── IsTemporary.h │ │ │ │ ├── IsTransExpr.h │ │ │ │ ├── IsTransformation.h │ │ │ │ ├── IsTriangular.h │ │ │ │ ├── IsUnaryMapExpr.h │ │ │ │ ├── IsUniLower.h │ │ │ │ ├── IsUniTriangular.h │ │ │ │ ├── IsUniUpper.h │ │ │ │ ├── IsUniform.h │ │ │ │ ├── IsUpper.h │ │ │ │ ├── IsVecEvalExpr.h │ │ │ │ ├── IsVecExpandExpr.h │ │ │ │ ├── IsVecGenExpr.h │ │ │ │ ├── IsVecMapExpr.h │ │ │ │ ├── IsVecNoAliasExpr.h │ │ │ │ ├── IsVecNoSIMDExpr.h │ │ │ │ ├── IsVecRepeatExpr.h │ │ │ │ ├── IsVecScalarDivExpr.h │ │ │ │ ├── IsVecScalarMultExpr.h │ │ │ │ ├── IsVecSerialExpr.h │ │ │ │ ├── IsVecTVecMapExpr.h │ │ │ │ ├── IsVecTVecMultExpr.h │ │ │ │ ├── IsVecTransExpr.h │ │ │ │ ├── IsVecVecAddExpr.h │ │ │ │ ├── IsVecVecDivExpr.h │ │ │ │ ├── IsVecVecKronExpr.h │ │ │ │ ├── IsVecVecMapExpr.h │ │ │ │ ├── IsVecVecMultExpr.h │ │ │ │ ├── IsVecVecSubExpr.h │ │ │ │ ├── IsVector.h │ │ │ │ ├── IsView.h │ │ │ │ ├── IsZero.h │ │ │ │ ├── LowType.h │ │ │ │ ├── MakeComplex.h │ │ │ │ ├── MaxSize.h │ │ │ │ ├── RemoveAdaptor.h │ │ │ │ ├── RequiresEvaluation.h │ │ │ │ ├── Size.h │ │ │ │ ├── StorageOrder.h │ │ │ │ ├── TransposeFlag.h │ │ │ │ ├── TypeTraits.h │ │ │ │ ├── UnderlyingBuiltin.h │ │ │ │ ├── UnderlyingElement.h │ │ │ │ ├── UnderlyingNumeric.h │ │ │ │ ├── UnderlyingScalar.h │ │ │ │ ├── YieldsDiagonal.h │ │ │ │ ├── YieldsHermitian.h │ │ │ │ ├── YieldsIdentity.h │ │ │ │ ├── YieldsLower.h │ │ │ │ ├── YieldsStrictlyLower.h │ │ │ │ ├── YieldsStrictlyTriangular.h │ │ │ │ ├── YieldsStrictlyUpper.h │ │ │ │ ├── YieldsSymmetric.h │ │ │ │ ├── YieldsTriangular.h │ │ │ │ ├── YieldsUniLower.h │ │ │ │ ├── YieldsUniTriangular.h │ │ │ │ ├── YieldsUniUpper.h │ │ │ │ ├── YieldsUniform.h │ │ │ │ ├── YieldsUpper.h │ │ │ │ └── YieldsZero.h │ │ │ └── views │ │ │ │ ├── Band.h │ │ │ │ ├── Check.h │ │ │ │ ├── Column.h │ │ │ │ ├── Columns.h │ │ │ │ ├── Elements.h │ │ │ │ ├── Forward.h │ │ │ │ ├── Row.h │ │ │ │ ├── Rows.h │ │ │ │ ├── Submatrix.h │ │ │ │ ├── Subvector.h │ │ │ │ ├── Views.h │ │ │ │ ├── band │ │ │ │ ├── Band.h │ │ │ │ ├── BandData.h │ │ │ │ ├── BaseTemplate.h │ │ │ │ ├── Dense.h │ │ │ │ └── Sparse.h │ │ │ │ ├── column │ │ │ │ ├── BaseTemplate.h │ │ │ │ ├── Column.h │ │ │ │ ├── ColumnData.h │ │ │ │ ├── Dense.h │ │ │ │ └── Sparse.h │ │ │ │ ├── columns │ │ │ │ ├── BaseTemplate.h │ │ │ │ ├── Columns.h │ │ │ │ ├── ColumnsData.h │ │ │ │ ├── Dense.h │ │ │ │ └── Sparse.h │ │ │ │ ├── elements │ │ │ │ ├── BaseTemplate.h │ │ │ │ ├── Dense.h │ │ │ │ ├── Elements.h │ │ │ │ ├── ElementsData.h │ │ │ │ └── Sparse.h │ │ │ │ ├── row │ │ │ │ ├── BaseTemplate.h │ │ │ │ ├── Dense.h │ │ │ │ ├── Row.h │ │ │ │ ├── RowData.h │ │ │ │ └── Sparse.h │ │ │ │ ├── rows │ │ │ │ ├── BaseTemplate.h │ │ │ │ ├── Dense.h │ │ │ │ ├── Rows.h │ │ │ │ ├── RowsData.h │ │ │ │ └── Sparse.h │ │ │ │ ├── submatrix │ │ │ │ ├── BaseTemplate.h │ │ │ │ ├── Dense.h │ │ │ │ ├── Sparse.h │ │ │ │ ├── Submatrix.h │ │ │ │ └── SubmatrixData.h │ │ │ │ └── subvector │ │ │ │ ├── BaseTemplate.h │ │ │ │ ├── Dense.h │ │ │ │ ├── Dense.h.new │ │ │ │ ├── Sparse.h │ │ │ │ ├── Subvector.h │ │ │ │ └── SubvectorData.h │ │ ├── system │ │ │ ├── Alignment.h │ │ │ ├── Assertion.h │ │ │ ├── BLAS.h │ │ │ ├── Blocking.h │ │ │ ├── CacheSize.h │ │ │ ├── Compiler.h │ │ │ ├── Debugging.h │ │ │ ├── Deprecated.h │ │ │ ├── HostDevice.h │ │ │ ├── Inline.h │ │ │ ├── MPI.h │ │ │ ├── MacroDisable.h │ │ │ ├── NoUniqueAddress.h │ │ │ ├── Optimizations.h │ │ │ ├── Padding.h │ │ │ ├── Platform.h │ │ │ ├── Random.h │ │ │ ├── Restrict.h │ │ │ ├── SMP.h │ │ │ ├── Signature.h │ │ │ ├── Standard.h │ │ │ ├── StorageOrder.h │ │ │ ├── System.h │ │ │ ├── Thresholds.h │ │ │ ├── TransposeFlag.h │ │ │ ├── Vectorization.h │ │ │ ├── Version.h │ │ │ └── WarningDisable.h │ │ └── util │ │ │ ├── Algorithms.h │ │ │ ├── AlignedAllocator.h │ │ │ ├── AlignedArray.h │ │ │ ├── AlignmentCheck.h │ │ │ ├── AsConst.h │ │ │ ├── Assert.h │ │ │ ├── CheckedDelete.h │ │ │ ├── ColorMacros.h │ │ │ ├── Complex.h │ │ │ ├── Constraints.h │ │ │ ├── DimensionOf.h │ │ │ ├── EmptyType.h │ │ │ ├── EnableIf.h │ │ │ ├── Exception.h │ │ │ ├── Forward.h │ │ │ ├── FunctionTrace.h │ │ │ ├── Indices.h │ │ │ ├── InitializerList.h │ │ │ ├── IntegerSequence.h │ │ │ ├── IntegralConstant.h │ │ │ ├── InvalidType.h │ │ │ ├── Limits.h │ │ │ ├── MPL.h │ │ │ ├── MaybeUnused.h │ │ │ ├── Memory.h │ │ │ ├── MemoryPool.h │ │ │ ├── Misalignment.h │ │ │ ├── NonCopyable.h │ │ │ ├── NonCreatable.h │ │ │ ├── NullAllocator.h │ │ │ ├── NullType.h │ │ │ ├── NumericCast.h │ │ │ ├── PointerCast.h │ │ │ ├── Policies.h │ │ │ ├── Random.h │ │ │ ├── Serialization.h │ │ │ ├── Singleton.h │ │ │ ├── SmallArray.h │ │ │ ├── StaticAssert.h │ │ │ ├── Suffix.h │ │ │ ├── Thread.h │ │ │ ├── ThreadPool.h │ │ │ ├── Time.h │ │ │ ├── Timing.h │ │ │ ├── TypeList.h │ │ │ ├── TypeTraits.h │ │ │ ├── Types.h │ │ │ ├── UnsignedValue.h │ │ │ ├── Util.h │ │ │ ├── ValueTraits.h │ │ │ ├── algorithms │ │ │ ├── Algorithms.h │ │ │ ├── ConstructAt.h │ │ │ ├── Destroy.h │ │ │ ├── DestroyAt.h │ │ │ ├── Max.h │ │ │ ├── Min.h │ │ │ ├── Minmax.h │ │ │ ├── Transfer.h │ │ │ ├── UninitializedDefaultConstruct.h │ │ │ ├── UninitializedMove.h │ │ │ ├── UninitializedTransfer.h │ │ │ └── UninitializedValueConstruct.h │ │ │ ├── constraints │ │ │ ├── Arithmetic.h │ │ │ ├── Array.h │ │ │ ├── Assignable.h │ │ │ ├── BaseOf.h │ │ │ ├── Boolean.h │ │ │ ├── Builtin.h │ │ │ ├── Character.h │ │ │ ├── Class.h │ │ │ ├── Comparable.h │ │ │ ├── Complex.h │ │ │ ├── ComplexDouble.h │ │ │ ├── ComplexFloat.h │ │ │ ├── Const.h │ │ │ ├── Constraints.h │ │ │ ├── Constructible.h │ │ │ ├── Convertible.h │ │ │ ├── DerivedFrom.h │ │ │ ├── Destructible.h │ │ │ ├── Double.h │ │ │ ├── Empty.h │ │ │ ├── Enum.h │ │ │ ├── Float.h │ │ │ ├── FloatingPoint.h │ │ │ ├── GreaterThan.h │ │ │ ├── Integer.h │ │ │ ├── Integral.h │ │ │ ├── LValueReference.h │ │ │ ├── LessThan.h │ │ │ ├── Long.h │ │ │ ├── LongDouble.h │ │ │ ├── Numeric.h │ │ │ ├── Object.h │ │ │ ├── Pod.h │ │ │ ├── Pointer.h │ │ │ ├── RValueReference.h │ │ │ ├── Rank.h │ │ │ ├── Reference.h │ │ │ ├── SameSize.h │ │ │ ├── SameType.h │ │ │ ├── Short.h │ │ │ ├── Signed.h │ │ │ ├── Size.h │ │ │ ├── Subscriptable.h │ │ │ ├── TypeRestriction.h │ │ │ ├── Union.h │ │ │ ├── Unsigned.h │ │ │ ├── Valid.h │ │ │ ├── Vectorizable.h │ │ │ ├── Void.h │ │ │ └── Volatile.h │ │ │ ├── functiontrace │ │ │ └── FunctionTrace.h │ │ │ ├── mpl │ │ │ ├── And.h │ │ │ ├── Bools.h │ │ │ ├── Equal.h │ │ │ ├── Greater.h │ │ │ ├── If.h │ │ │ ├── Less.h │ │ │ ├── MPL.h │ │ │ ├── Max.h │ │ │ ├── Min.h │ │ │ ├── Minus.h │ │ │ ├── Modulo.h │ │ │ ├── Nand.h │ │ │ ├── Nor.h │ │ │ ├── Not.h │ │ │ ├── Or.h │ │ │ ├── Plus.h │ │ │ ├── Times.h │ │ │ └── Xor.h │ │ │ ├── policies │ │ │ ├── ArrayDelete.h │ │ │ ├── Deallocate.h │ │ │ ├── DefaultDelete.h │ │ │ ├── NoDelete.h │ │ │ └── PtrDelete.h │ │ │ ├── serialization │ │ │ ├── Archive.h │ │ │ └── Serialization.h │ │ │ ├── singleton │ │ │ ├── Dependency.h │ │ │ └── Singleton.h │ │ │ ├── smallarray │ │ │ └── SmallArrayData.h │ │ │ ├── threadpool │ │ │ ├── Task.h │ │ │ ├── TaskQueue.h │ │ │ └── ThreadPool.h │ │ │ ├── timing │ │ │ ├── CpuPolicy.h │ │ │ ├── CpuTimer.h │ │ │ ├── Timer.h │ │ │ ├── Timing.h │ │ │ ├── WcPolicy.h │ │ │ └── WcTimer.h │ │ │ ├── typelist │ │ │ ├── Append.h │ │ │ ├── Contains.h │ │ │ ├── ContainsRelated.h │ │ │ ├── Erase.h │ │ │ ├── EraseAll.h │ │ │ ├── IndexOf.h │ │ │ ├── Length.h │ │ │ ├── TypeAt.h │ │ │ ├── TypeList.h │ │ │ └── Unique.h │ │ │ ├── typetraits │ │ │ ├── AddCV.h │ │ │ ├── AddConst.h │ │ │ ├── AddLValueReference.h │ │ │ ├── AddPointer.h │ │ │ ├── AddRValueReference.h │ │ │ ├── AddVolatile.h │ │ │ ├── AlignmentOf.h │ │ │ ├── All.h │ │ │ ├── AlwaysFalse.h │ │ │ ├── AlwaysTrue.h │ │ │ ├── Any.h │ │ │ ├── CommonType.h │ │ │ ├── Decay.h │ │ │ ├── Extent.h │ │ │ ├── GetMemberType.h │ │ │ ├── HasGreaterThan.h │ │ │ ├── HasLessThan.h │ │ │ ├── HasMember.h │ │ │ ├── HasSize.h │ │ │ ├── HaveSameSize.h │ │ │ ├── IsArithmetic.h │ │ │ ├── IsArray.h │ │ │ ├── IsAssignable.h │ │ │ ├── IsBaseOf.h │ │ │ ├── IsBoolean.h │ │ │ ├── IsBuiltin.h │ │ │ ├── IsCharacter.h │ │ │ ├── IsClass.h │ │ │ ├── IsComplex.h │ │ │ ├── IsComplexDouble.h │ │ │ ├── IsComplexFloat.h │ │ │ ├── IsConst.h │ │ │ ├── IsConstructible.h │ │ │ ├── IsConvertible.h │ │ │ ├── IsDestructible.h │ │ │ ├── IsDetected.h │ │ │ ├── IsDouble.h │ │ │ ├── IsEmpty.h │ │ │ ├── IsEnum.h │ │ │ ├── IsFloat.h │ │ │ ├── IsFloatingPoint.h │ │ │ ├── IsInteger.h │ │ │ ├── IsIntegral.h │ │ │ ├── IsLValueReference.h │ │ │ ├── IsLong.h │ │ │ ├── IsLongDouble.h │ │ │ ├── IsNumeric.h │ │ │ ├── IsObject.h │ │ │ ├── IsPod.h │ │ │ ├── IsPointer.h │ │ │ ├── IsRValueReference.h │ │ │ ├── IsReference.h │ │ │ ├── IsSame.h │ │ │ ├── IsShort.h │ │ │ ├── IsSigned.h │ │ │ ├── IsUnion.h │ │ │ ├── IsUnsigned.h │ │ │ ├── IsValid.h │ │ │ ├── IsVectorizable.h │ │ │ ├── IsVoid.h │ │ │ ├── IsVolatile.h │ │ │ ├── MakeSigned.h │ │ │ ├── MakeUnsigned.h │ │ │ ├── Rank.h │ │ │ ├── RemoveAllExtents.h │ │ │ ├── RemoveCV.h │ │ │ ├── RemoveCVRef.h │ │ │ ├── RemoveConst.h │ │ │ ├── RemoveExtent.h │ │ │ ├── RemoveLValueReference.h │ │ │ ├── RemovePointer.h │ │ │ ├── RemoveRValueReference.h │ │ │ ├── RemoveReference.h │ │ │ ├── RemoveVolatile.h │ │ │ ├── TypeTraits.h │ │ │ └── Void.h │ │ │ └── valuetraits │ │ │ ├── IsEven.h │ │ │ ├── IsMultipleOf.h │ │ │ ├── IsOdd.h │ │ │ ├── IsPowerOf.h │ │ │ └── ValueTraits.h │ └── cmake │ │ ├── Alignment.h.in │ │ ├── BLAS.h.in │ │ ├── Blaze_Import.cmake │ │ ├── CacheSize.h.in │ │ ├── Inline.h.in │ │ ├── Optimizations.h.in │ │ ├── Padding.h.in │ │ ├── Restrict.h.in │ │ ├── SMP.h.in │ │ ├── StorageOrder.h.in │ │ ├── TransposeFlag.h.in │ │ ├── Vectorization.h.in │ │ └── blaze-config.cmake ├── circularqueue │ └── cq.h ├── compact_vector │ ├── compact_iterator.hpp │ ├── compact_vector.hpp │ ├── const_iterator_traits.hpp │ ├── parallel_iterator_traits.hpp │ └── prefetch_iterator_traits.hpp ├── flat_hash_map │ └── flat_hash_map.hpp ├── libpopcnt │ └── libpopcnt.h ├── sketch │ ├── bbmh.h │ ├── bf.h │ ├── bmh.h │ ├── cbf.h │ ├── ccm.h │ ├── common.h │ ├── count_eq.h │ ├── dd.h │ ├── div.h │ ├── exception.h │ ├── filterhll.h │ ├── fixed_vector.h │ ├── flog.h │ ├── fy.h │ ├── hash.h │ ├── hbb.h │ ├── heap.h │ ├── hedley.h │ ├── hk.h │ ├── hll.h │ ├── hmh.h │ ├── integral.h │ ├── intrinsics.h │ ├── isz.h │ ├── kahan.h │ ├── kthread.h │ ├── lpcqf.h │ ├── macros.h │ ├── median.h │ ├── mh.h │ ├── mod.h │ ├── mult.h │ ├── pc.h │ ├── policy.h │ ├── rnla.h │ ├── setsketch.h │ ├── sketch.h │ ├── sparse.h │ ├── sseutil.h │ ├── ssi.h │ ├── tsg.h │ ├── update.h │ ├── vac.h │ └── wip │ │ └── cuda │ │ └── hll.cuh ├── vec │ ├── stats.h │ ├── vec.h │ └── welford_sd.h └── xxHash │ ├── xxh3.h │ └── xxhash.h ├── kthread.cpp ├── python ├── README.md ├── bbmh.cpp ├── bf.cpp ├── hll.cpp ├── hmh.cpp ├── lsh.cpp ├── pysketch.h ├── pytest.py ├── requirements.txt ├── setup.py ├── sketch_ds │ ├── __init__.py │ └── sketch_test.py ├── ss.cpp └── util.cpp ├── run_tests.sh ├── src └── hllgpu.cu └── testsrc ├── bagminhashtest.cpp ├── bbmhtest.cpp ├── bftest.cpp ├── cmtest.cpp ├── count.cpp ├── cscomp.cpp ├── ddtest.cpp ├── divtest.cpp ├── expsampletest.cpp ├── fhlltest.cpp ├── heaptest.cpp ├── hktest.cpp ├── hllcompresstest.cpp ├── hlltest.cpp ├── hmhtest.cpp ├── lpcqf_approx.cpp ├── lpcqf_test.cpp ├── lpfp.cpp ├── mctest.cpp ├── mhtest.cpp ├── modtest.cpp ├── multtest.cpp ├── omhtest.cpp ├── pctest.cpp ├── policytest.cpp ├── serial_test.cpp ├── sstest.cpp ├── swtest.cpp ├── test_revhash.cpp ├── testcontain.cpp ├── testmhmerge.cpp ├── testsparse.cpp ├── timehash.cpp ├── timerevhash.cpp ├── vactest.cpp ├── version_test.cpp └── xormaskhll.cpp /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/acc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/benchmark/acc.cpp -------------------------------------------------------------------------------- /demo/cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/demo/cpp/Makefile -------------------------------------------------------------------------------- /demo/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/demo/cpp/README.md -------------------------------------------------------------------------------- /demo/cpp/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/demo/cpp/demo.cpp -------------------------------------------------------------------------------- /demo/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/demo/python/README.md -------------------------------------------------------------------------------- /demo/python/shakespeare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/demo/python/shakespeare.py -------------------------------------------------------------------------------- /demo/python/shakespeare_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/demo/python/shakespeare_fast.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/.buildinfo -------------------------------------------------------------------------------- /docs/build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/_static/alabaster.css -------------------------------------------------------------------------------- /docs/build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/_static/basic.css -------------------------------------------------------------------------------- /docs/build/html/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /docs/build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/_static/file.png -------------------------------------------------------------------------------- /docs/build/html/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /docs/build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/build/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/build/html/_static/underscore-1.12.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/_static/underscore-1.12.0.js -------------------------------------------------------------------------------- /docs/build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/genindex.html -------------------------------------------------------------------------------- /docs/build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/index.html -------------------------------------------------------------------------------- /docs/build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/objects.inv -------------------------------------------------------------------------------- /docs/build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/search.html -------------------------------------------------------------------------------- /docs/build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/html/searchindex.js -------------------------------------------------------------------------------- /docs/build/latex/LICRcyr2utf8.xdy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/LICRcyr2utf8.xdy -------------------------------------------------------------------------------- /docs/build/latex/LICRlatin2utf8.xdy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/LICRlatin2utf8.xdy -------------------------------------------------------------------------------- /docs/build/latex/LatinRules.xdy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/LatinRules.xdy -------------------------------------------------------------------------------- /docs/build/latex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/Makefile -------------------------------------------------------------------------------- /docs/build/latex/footnotehyper-sphinx.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/footnotehyper-sphinx.sty -------------------------------------------------------------------------------- /docs/build/latex/latexmkjarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/latexmkjarc -------------------------------------------------------------------------------- /docs/build/latex/latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/latexmkrc -------------------------------------------------------------------------------- /docs/build/latex/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/make.bat -------------------------------------------------------------------------------- /docs/build/latex/python.ist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/python.ist -------------------------------------------------------------------------------- /docs/build/latex/sketch.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | -------------------------------------------------------------------------------- /docs/build/latex/sketch.fdb_latexmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/sketch.fdb_latexmk -------------------------------------------------------------------------------- /docs/build/latex/sketch.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/sketch.tex -------------------------------------------------------------------------------- /docs/build/latex/sphinx.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/sphinx.sty -------------------------------------------------------------------------------- /docs/build/latex/sphinx.xdy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/sphinx.xdy -------------------------------------------------------------------------------- /docs/build/latex/sphinxcyrillic.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/sphinxcyrillic.sty -------------------------------------------------------------------------------- /docs/build/latex/sphinxhighlight.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/sphinxhighlight.sty -------------------------------------------------------------------------------- /docs/build/latex/sphinxhowto.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/sphinxhowto.cls -------------------------------------------------------------------------------- /docs/build/latex/sphinxmanual.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/sphinxmanual.cls -------------------------------------------------------------------------------- /docs/build/latex/sphinxmessages.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/sphinxmessages.sty -------------------------------------------------------------------------------- /docs/build/latex/sphinxmulticell.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/build/latex/sphinxmulticell.sty -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /include/aesctr/aesctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/aesctr/aesctr.h -------------------------------------------------------------------------------- /include/aesctr/wy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/aesctr/wy.h -------------------------------------------------------------------------------- /include/blaze/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile 2 | /*.cfg 3 | .vscode 4 | build 5 | 6 | -------------------------------------------------------------------------------- /include/blaze/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/CMakeLists.txt -------------------------------------------------------------------------------- /include/blaze/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/INSTALL -------------------------------------------------------------------------------- /include/blaze/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/LICENSE -------------------------------------------------------------------------------- /include/blaze/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/README.md -------------------------------------------------------------------------------- /include/blaze/blaze/Blaze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/Blaze.h -------------------------------------------------------------------------------- /include/blaze/blaze/Forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/Forward.h -------------------------------------------------------------------------------- /include/blaze/blaze/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/Math.h -------------------------------------------------------------------------------- /include/blaze/blaze/Tutorial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/Tutorial.h -------------------------------------------------------------------------------- /include/blaze/blaze/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/Util.h -------------------------------------------------------------------------------- /include/blaze/blaze/config/Alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/config/Alignment.h -------------------------------------------------------------------------------- /include/blaze/blaze/config/Assertion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/config/Assertion.h -------------------------------------------------------------------------------- /include/blaze/blaze/config/BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/config/BLAS.h -------------------------------------------------------------------------------- /include/blaze/blaze/config/CacheSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/config/CacheSize.h -------------------------------------------------------------------------------- /include/blaze/blaze/config/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/config/Config.h -------------------------------------------------------------------------------- /include/blaze/blaze/config/Debugging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/config/Debugging.h -------------------------------------------------------------------------------- /include/blaze/blaze/config/Inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/config/Inline.h -------------------------------------------------------------------------------- /include/blaze/blaze/config/MPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/config/MPI.h -------------------------------------------------------------------------------- /include/blaze/blaze/config/Optimizations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/config/Optimizations.h -------------------------------------------------------------------------------- /include/blaze/blaze/config/Padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/config/Padding.h -------------------------------------------------------------------------------- /include/blaze/blaze/config/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/config/Random.h -------------------------------------------------------------------------------- /include/blaze/blaze/config/Restrict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/config/Restrict.h -------------------------------------------------------------------------------- /include/blaze/blaze/config/SMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/config/SMP.h -------------------------------------------------------------------------------- /include/blaze/blaze/config/StorageOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/config/StorageOrder.h -------------------------------------------------------------------------------- /include/blaze/blaze/config/Thresholds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/config/Thresholds.h -------------------------------------------------------------------------------- /include/blaze/blaze/config/TransposeFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/config/TransposeFlag.h -------------------------------------------------------------------------------- /include/blaze/blaze/config/Vectorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/config/Vectorization.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Accuracy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Accuracy.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Aliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Aliases.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/AlignmentFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/AlignmentFlag.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/BLAS.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Band.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Band.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Column.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Column.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Columns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Columns.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/CompressedMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/CompressedMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/CompressedVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/CompressedVector.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Constraints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Constraints.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/CustomMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/CustomMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/CustomVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/CustomVector.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/DenseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/DenseMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/DenseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/DenseVector.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/DiagonalMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/DynamicMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/DynamicMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/DynamicVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/DynamicVector.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Elements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Elements.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Epsilon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Epsilon.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Exception.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Forward.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Functors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Functors.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/GroupTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/GroupTag.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/HermitianMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/HermitianMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/HybridMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/HybridMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/HybridVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/HybridVector.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/IdentityMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/IdentityMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Infinity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Infinity.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/InitializerList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/InitializerList.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/InitializerMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/InitializerMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/InitializerVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/InitializerVector.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/InversionFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/InversionFlag.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/LAPACK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/LAPACK.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/LowerMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/LowerMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Math.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Matrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/PaddingFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/PaddingFlag.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/ReductionFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/ReductionFlag.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/RelaxationFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/RelaxationFlag.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Row.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Rows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Rows.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/SIMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/SIMD.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/SMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/SMP.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Serialization.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Shims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Shims.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/SparseMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/SparseVector.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/StaticMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/StaticMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/StaticVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/StaticVector.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/StorageOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/StorageOrder.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/StrictlyLowerMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/StrictlyLowerMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/StrictlyUpperMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/StrictlyUpperMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Submatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Submatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Subvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Subvector.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/SymmetricMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/SymmetricMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Traits.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/TransposeFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/TransposeFlag.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/TypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/TypeTraits.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/UniLowerMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/UniLowerMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/UniUpperMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/UniUpperMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/UniformMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/UniformMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/UniformVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/UniformVector.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/UpperMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/UpperMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Vector.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/Views.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/Views.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/ZeroMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/ZeroMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/ZeroVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/ZeroVector.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/adaptors/Adaptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/adaptors/Adaptors.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/adaptors/Forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/adaptors/Forward.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/BLAS.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/Types.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/axpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/axpy.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/cblas/axpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/cblas/axpy.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/cblas/dotc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/cblas/dotc.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/cblas/dotu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/cblas/dotu.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/cblas/gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/cblas/gemm.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/cblas/gemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/cblas/gemv.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/cblas/trmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/cblas/trmm.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/cblas/trmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/cblas/trmv.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/cblas/trsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/cblas/trsm.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/dotc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/dotc.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/dotu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/dotu.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/gemm.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/gemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/gemv.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/trmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/trmm.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/trmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/trmv.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/blas/trsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/blas/trsm.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Adaptor.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/AddExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/AddExpr.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Aligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Aligned.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Band.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Band.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Column.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Column.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Columns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Columns.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Custom.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/DivExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/DivExpr.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/GenExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/GenExpr.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/General.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/General.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Lower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Lower.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Matrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Padded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Padded.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Proxy.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Row.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Rows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Rows.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/SVDExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/SVDExpr.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/SameTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/SameTag.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Scalar.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Square.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Static.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/SubExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/SubExpr.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Uniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Uniform.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Upper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Upper.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/View.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/constraints/Zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/constraints/Zero.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/dense/DenseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/dense/DenseMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/dense/DenseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/dense/DenseVector.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/dense/Eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/dense/Eigen.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/dense/Forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/dense/Forward.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/dense/Inversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/dense/Inversion.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/dense/LLH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/dense/LLH.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/dense/LQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/dense/LQ.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/dense/LSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/dense/LSE.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/dense/LU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/dense/LU.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/dense/MMM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/dense/MMM.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/dense/PLLHP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/dense/PLLHP.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/dense/QL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/dense/QL.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/dense/QR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/dense/QR.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/dense/RQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/dense/RQ.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/dense/SVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/dense/SVD.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/expressions/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/expressions/View.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Abs.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Acos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Acos.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Acosh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Acosh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Add.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/And.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/And.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Arg.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Asin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Asin.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Asinh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Asinh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Assign.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Atan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Atan.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Atan2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Atan2.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Atanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Atanh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Bind1st.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Bind1st.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Bind2nd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Bind2nd.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Bind3rd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Bind3rd.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Bitand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Bitand.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Bitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Bitor.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Bitxor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Bitxor.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/CTrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/CTrans.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Cbrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Cbrt.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Ceil.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Clamp.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Clear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Clear.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Conj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Conj.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Cos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Cos.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Cosh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Cosh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/DeclDiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/DeclDiag.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/DeclHerm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/DeclHerm.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/DeclId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/DeclId.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/DeclLow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/DeclLow.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/DeclSym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/DeclSym.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/DeclUpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/DeclUpp.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/DeclZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/DeclZero.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Div.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Erf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Erf.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Erfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Erfc.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Eval.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Exp.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Exp10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Exp10.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Exp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Exp2.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Floor.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Forward.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Functors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Functors.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Greater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Greater.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Hypot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Hypot.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Imag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Imag.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Inv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Inv.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/InvAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/InvAdd.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/InvCbrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/InvCbrt.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/InvSqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/InvSqrt.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Join.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Kron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Kron.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/L1Norm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/L1Norm.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/L2Norm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/L2Norm.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/L3Norm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/L3Norm.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/L4Norm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/L4Norm.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/LGamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/LGamma.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Less.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Less.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Log.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Log10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Log10.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Log1p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Log1p.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Log2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Log2.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/LpNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/LpNorm.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/MAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/MAC.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/MakePair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/MakePair.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Max.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Min.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Minmax.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Mult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Mult.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/NoAlias.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/NoSIMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/NoSIMD.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Noop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Noop.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Not.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Not.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Or.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Or.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/OrAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/OrAssign.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Pow.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Pow2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Pow2.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Pow3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Pow3.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Pow4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Pow4.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Qdrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Qdrt.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Real.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Reset.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Round.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Schur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Schur.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Serial.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/ShiftLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/ShiftLI.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/ShiftLV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/ShiftLV.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/ShiftRI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/ShiftRI.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/ShiftRV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/ShiftRV.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Sign.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Sin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Sin.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Sinh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Sinh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/SqrAbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/SqrAbs.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Sqrt.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Sub.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Tan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Tan.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Tanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Tanh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Trans.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/functors/Trunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/functors/Trunc.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/LAPACK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/LAPACK.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/geev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/geev.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/gelqf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/gelqf.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/geqlf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/geqlf.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/geqp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/geqp3.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/geqrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/geqrf.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/gerqf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/gerqf.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/gesdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/gesdd.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/gesv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/gesv.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/gesvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/gesvd.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/gesvdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/gesvdx.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/getrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/getrf.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/getri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/getri.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/getrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/getrs.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/gges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/gges.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/heev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/heev.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/heevd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/heevd.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/heevx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/heevx.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/hesv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/hesv.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/hetrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/hetrf.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/hetri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/hetri.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/hetrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/hetrs.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/org2l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/org2l.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/org2r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/org2r.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/orgl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/orgl2.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/orglq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/orglq.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/orgql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/orgql.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/orgqr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/orgqr.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/orgr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/orgr2.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/orgrq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/orgrq.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/ormlq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/ormlq.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/ormql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/ormql.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/ormqr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/ormqr.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/ormrq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/ormrq.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/posv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/posv.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/potrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/potrf.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/potri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/potri.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/potrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/potrs.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/pstrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/pstrf.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/syev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/syev.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/syevd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/syevd.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/syevx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/syevx.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/sysv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/sysv.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/sytrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/sytrf.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/sytri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/sytri.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/sytrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/sytrs.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/trsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/trsv.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/trtri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/trtri.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/trtrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/trtrs.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/ung2l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/ung2l.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/ung2r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/ung2r.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/ungl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/ungl2.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/unglq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/unglq.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/ungql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/ungql.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/ungqr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/ungqr.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/ungr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/ungr2.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/ungrq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/ungrq.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/unmlq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/unmlq.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/unmql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/unmql.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/unmqr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/unmqr.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/lapack/unmrq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/lapack/unmrq.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/proxy/Forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/proxy/Forward.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/proxy/Proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/proxy/Proxy.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Abs.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Acos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Acos.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Acosh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Acosh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Add.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Arg.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Asin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Asin.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Asinh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Asinh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Atan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Atan.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Atan2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Atan2.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Atanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Atanh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Cbrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Cbrt.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Ceil.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Clamp.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Clear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Clear.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Conjugate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Conjugate.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Cos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Cos.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Cosh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Cosh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Digits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Digits.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Div.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Equal.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Erf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Erf.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Erfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Erfc.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Eval.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Evaluate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Evaluate.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Exp.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Exp10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Exp10.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Exp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Exp2.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Floor.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Frexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Frexp.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Greater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Greater.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Hypot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Hypot.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Imaginary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Imaginary.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/InvCbrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/InvCbrt.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/InvSqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/InvSqrt.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Invert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Invert.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/IsDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/IsDefault.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/IsDivisor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/IsDivisor.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/IsFinite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/IsFinite.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/IsInf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/IsInf.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/IsNaN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/IsNaN.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/IsOne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/IsOne.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/IsReal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/IsReal.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/IsZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/IsZero.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/LGamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/LGamma.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Less.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Less.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Log.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Log10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Log10.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Log1p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Log1p.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Log2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Log2.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Mult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Mult.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Pow.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Pow2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Pow2.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Pow3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Pow3.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Pow4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Pow4.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Qdrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Qdrt.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Real.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Reset.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Round.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Serial.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Shims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Shims.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Sign.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Sin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Sin.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Sinh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Sinh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Sqrt.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Sub.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Tan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Tan.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Tanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Tanh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/shims/Trunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/shims/Trunc.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Abs.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Acos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Acos.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Acosh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Acosh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Add.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Asin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Asin.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Asinh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Asinh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Atan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Atan.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Atan2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Atan2.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Atanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Atanh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/BasicTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/BasicTypes.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Bitand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Bitand.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Bitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Bitor.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Bitxor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Bitxor.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Cbrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Cbrt.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Ceil.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Conj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Conj.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Cos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Cos.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Cosh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Cosh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/DerivedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/DerivedTypes.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Div.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Equal.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Erf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Erf.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Erfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Erfc.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Exp.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Exp10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Exp10.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Exp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Exp2.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/FMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/FMA.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Floor.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Functions.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Hypot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Hypot.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/InvCbrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/InvCbrt.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/InvSqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/InvSqrt.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/LGamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/LGamma.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Loada.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Loada.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Loadu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Loadu.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Log.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Log10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Log10.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Log1p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Log1p.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Log2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Log2.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Max.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Min.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Mult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Mult.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Pow.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Prod.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Reduce.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Round.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/SIMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/SIMD.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/SIMDPack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/SIMDPack.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/SIMDTrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/SIMDTrait.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Set.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Setall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Setall.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Setzero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Setzero.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/ShiftLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/ShiftLI.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/ShiftLV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/ShiftLV.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/ShiftRI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/ShiftRI.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/ShiftRV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/ShiftRV.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Sign.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Sin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Sin.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Sinh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Sinh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Sqrt.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Storea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Storea.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Storeu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Storeu.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Stream.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Sub.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Sum.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Tan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Tan.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Tanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Tanh.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/simd/Trunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/simd/Trunc.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/smp/DenseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/smp/DenseMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/smp/DenseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/smp/DenseVector.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/smp/Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/smp/Functions.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/smp/SMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/smp/SMP.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/smp/SerialSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/smp/SerialSection.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/smp/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/smp/SparseMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/smp/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/smp/SparseVector.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/smp/ThreadMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/smp/ThreadMapping.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/smp/hpx/Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/smp/hpx/Functions.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/sparse/Forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/sparse/Forward.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/sparse/ZeroMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/sparse/ZeroMatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/sparse/ZeroVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/sparse/ZeroVector.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/traits/AddTrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/traits/AddTrait.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/traits/BandTrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/traits/BandTrait.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/traits/CrossTrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/traits/CrossTrait.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/traits/DivTrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/traits/DivTrait.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/traits/KronTrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/traits/KronTrait.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/traits/MapTrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/traits/MapTrait.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/traits/MultTrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/traits/MultTrait.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/traits/RowTrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/traits/RowTrait.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/traits/RowsTrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/traits/RowsTrait.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/traits/SchurTrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/traits/SchurTrait.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/traits/SolveTrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/traits/SolveTrait.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/traits/SubTrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/traits/SubTrait.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/traits/Traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/traits/Traits.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/HasAbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/HasAbs.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/HasAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/HasAdd.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/HasCos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/HasCos.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/HasDiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/HasDiv.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/HasErf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/HasErf.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/HasExp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/HasExp.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/HasLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/HasLog.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/HasMax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/HasMax.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/HasMin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/HasMin.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/HasPow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/HasPow.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/HasSin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/HasSin.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/HasSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/HasSub.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/HasTan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/HasTan.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/IsBand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/IsBand.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/IsRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/IsRow.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/IsRows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/IsRows.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/IsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/IsView.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/IsZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/IsZero.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/typetraits/Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/typetraits/Size.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/Band.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/Band.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/Check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/Check.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/Column.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/Column.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/Columns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/Columns.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/Elements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/Elements.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/Forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/Forward.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/Row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/Row.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/Rows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/Rows.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/Submatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/Submatrix.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/Subvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/Subvector.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/Views.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/Views.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/band/Band.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/band/Band.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/band/Dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/band/Dense.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/band/Sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/band/Sparse.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/row/Dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/row/Dense.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/row/Row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/row/Row.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/row/RowData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/row/RowData.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/row/Sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/row/Sparse.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/rows/Dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/rows/Dense.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/rows/Rows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/rows/Rows.h -------------------------------------------------------------------------------- /include/blaze/blaze/math/views/rows/Sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/math/views/rows/Sparse.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/Alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/Alignment.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/Assertion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/Assertion.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/BLAS.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/Blocking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/Blocking.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/CacheSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/CacheSize.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/Compiler.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/Debugging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/Debugging.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/Deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/Deprecated.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/HostDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/HostDevice.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/Inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/Inline.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/MPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/MPI.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/MacroDisable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/MacroDisable.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/NoUniqueAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/NoUniqueAddress.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/Optimizations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/Optimizations.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/Padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/Padding.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/Platform.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/Random.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/Restrict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/Restrict.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/SMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/SMP.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/Signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/Signature.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/Standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/Standard.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/StorageOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/StorageOrder.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/System.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/Thresholds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/Thresholds.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/TransposeFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/TransposeFlag.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/Vectorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/Vectorization.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/Version.h -------------------------------------------------------------------------------- /include/blaze/blaze/system/WarningDisable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/system/WarningDisable.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Algorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Algorithms.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/AlignedAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/AlignedAllocator.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/AlignedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/AlignedArray.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/AlignmentCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/AlignmentCheck.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/AsConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/AsConst.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Assert.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/CheckedDelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/CheckedDelete.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/ColorMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/ColorMacros.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Complex.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Constraints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Constraints.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/DimensionOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/DimensionOf.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/EmptyType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/EmptyType.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/EnableIf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/EnableIf.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Exception.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Forward.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/FunctionTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/FunctionTrace.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Indices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Indices.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/InitializerList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/InitializerList.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/IntegerSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/IntegerSequence.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/IntegralConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/IntegralConstant.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/InvalidType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/InvalidType.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Limits.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/MPL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/MPL.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/MaybeUnused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/MaybeUnused.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Memory.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/MemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/MemoryPool.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Misalignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Misalignment.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/NonCopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/NonCopyable.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/NonCreatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/NonCreatable.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/NullAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/NullAllocator.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/NullType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/NullType.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/NumericCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/NumericCast.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/PointerCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/PointerCast.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Policies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Policies.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Random.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Serialization.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Singleton.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/SmallArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/SmallArray.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/StaticAssert.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Suffix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Suffix.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Thread.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/ThreadPool.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Time.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Timing.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/TypeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/TypeList.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/TypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/TypeTraits.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Types.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/UnsignedValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/UnsignedValue.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/Util.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/ValueTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/ValueTraits.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/algorithms/Max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/algorithms/Max.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/algorithms/Min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/algorithms/Min.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/algorithms/Minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/algorithms/Minmax.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/constraints/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/constraints/Array.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/constraints/Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/constraints/Class.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/constraints/Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/constraints/Const.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/constraints/Empty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/constraints/Empty.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/constraints/Enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/constraints/Enum.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/constraints/Float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/constraints/Float.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/constraints/Long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/constraints/Long.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/constraints/Pod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/constraints/Pod.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/constraints/Rank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/constraints/Rank.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/constraints/Short.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/constraints/Short.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/constraints/Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/constraints/Size.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/constraints/Union.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/constraints/Union.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/constraints/Valid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/constraints/Valid.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/constraints/Void.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/constraints/Void.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/And.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/And.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/Bools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/Bools.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/Equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/Equal.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/Greater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/Greater.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/If.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/If.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/Less.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/Less.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/MPL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/MPL.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/Max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/Max.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/Min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/Min.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/Minus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/Minus.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/Modulo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/Modulo.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/Nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/Nand.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/Nor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/Nor.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/Not.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/Not.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/Or.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/Or.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/Plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/Plus.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/Times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/Times.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/mpl/Xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/mpl/Xor.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/policies/NoDelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/policies/NoDelete.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/threadpool/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/threadpool/Task.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/timing/CpuPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/timing/CpuPolicy.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/timing/CpuTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/timing/CpuTimer.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/timing/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/timing/Timer.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/timing/Timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/timing/Timing.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/timing/WcPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/timing/WcPolicy.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/timing/WcTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/timing/WcTimer.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typelist/Append.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typelist/Append.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typelist/Contains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typelist/Contains.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typelist/Erase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typelist/Erase.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typelist/EraseAll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typelist/EraseAll.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typelist/IndexOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typelist/IndexOf.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typelist/Length.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typelist/Length.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typelist/TypeAt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typelist/TypeAt.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typelist/TypeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typelist/TypeList.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typelist/Unique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typelist/Unique.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typetraits/AddCV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typetraits/AddCV.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typetraits/All.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typetraits/All.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typetraits/Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typetraits/Any.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typetraits/Decay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typetraits/Decay.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typetraits/Extent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typetraits/Extent.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typetraits/IsEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typetraits/IsEnum.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typetraits/IsLong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typetraits/IsLong.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typetraits/IsPod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typetraits/IsPod.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typetraits/IsSame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typetraits/IsSame.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typetraits/IsVoid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typetraits/IsVoid.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typetraits/Rank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typetraits/Rank.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/typetraits/Void.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/typetraits/Void.h -------------------------------------------------------------------------------- /include/blaze/blaze/util/valuetraits/IsOdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/blaze/util/valuetraits/IsOdd.h -------------------------------------------------------------------------------- /include/blaze/cmake/Alignment.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/cmake/Alignment.h.in -------------------------------------------------------------------------------- /include/blaze/cmake/BLAS.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/cmake/BLAS.h.in -------------------------------------------------------------------------------- /include/blaze/cmake/Blaze_Import.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/cmake/Blaze_Import.cmake -------------------------------------------------------------------------------- /include/blaze/cmake/CacheSize.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/cmake/CacheSize.h.in -------------------------------------------------------------------------------- /include/blaze/cmake/Inline.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/cmake/Inline.h.in -------------------------------------------------------------------------------- /include/blaze/cmake/Optimizations.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/cmake/Optimizations.h.in -------------------------------------------------------------------------------- /include/blaze/cmake/Padding.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/cmake/Padding.h.in -------------------------------------------------------------------------------- /include/blaze/cmake/Restrict.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/cmake/Restrict.h.in -------------------------------------------------------------------------------- /include/blaze/cmake/SMP.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/cmake/SMP.h.in -------------------------------------------------------------------------------- /include/blaze/cmake/StorageOrder.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/cmake/StorageOrder.h.in -------------------------------------------------------------------------------- /include/blaze/cmake/TransposeFlag.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/cmake/TransposeFlag.h.in -------------------------------------------------------------------------------- /include/blaze/cmake/Vectorization.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/cmake/Vectorization.h.in -------------------------------------------------------------------------------- /include/blaze/cmake/blaze-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/blaze/cmake/blaze-config.cmake -------------------------------------------------------------------------------- /include/circularqueue/cq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/circularqueue/cq.h -------------------------------------------------------------------------------- /include/compact_vector/compact_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/compact_vector/compact_iterator.hpp -------------------------------------------------------------------------------- /include/compact_vector/compact_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/compact_vector/compact_vector.hpp -------------------------------------------------------------------------------- /include/flat_hash_map/flat_hash_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/flat_hash_map/flat_hash_map.hpp -------------------------------------------------------------------------------- /include/libpopcnt/libpopcnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/libpopcnt/libpopcnt.h -------------------------------------------------------------------------------- /include/sketch/bbmh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/bbmh.h -------------------------------------------------------------------------------- /include/sketch/bf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/bf.h -------------------------------------------------------------------------------- /include/sketch/bmh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/bmh.h -------------------------------------------------------------------------------- /include/sketch/cbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/cbf.h -------------------------------------------------------------------------------- /include/sketch/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/ccm.h -------------------------------------------------------------------------------- /include/sketch/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/common.h -------------------------------------------------------------------------------- /include/sketch/count_eq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/count_eq.h -------------------------------------------------------------------------------- /include/sketch/dd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/dd.h -------------------------------------------------------------------------------- /include/sketch/div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/div.h -------------------------------------------------------------------------------- /include/sketch/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/exception.h -------------------------------------------------------------------------------- /include/sketch/filterhll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/filterhll.h -------------------------------------------------------------------------------- /include/sketch/fixed_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/fixed_vector.h -------------------------------------------------------------------------------- /include/sketch/flog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/flog.h -------------------------------------------------------------------------------- /include/sketch/fy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/fy.h -------------------------------------------------------------------------------- /include/sketch/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/hash.h -------------------------------------------------------------------------------- /include/sketch/hbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/hbb.h -------------------------------------------------------------------------------- /include/sketch/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/heap.h -------------------------------------------------------------------------------- /include/sketch/hedley.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/hedley.h -------------------------------------------------------------------------------- /include/sketch/hk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/hk.h -------------------------------------------------------------------------------- /include/sketch/hll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/hll.h -------------------------------------------------------------------------------- /include/sketch/hmh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/hmh.h -------------------------------------------------------------------------------- /include/sketch/integral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/integral.h -------------------------------------------------------------------------------- /include/sketch/intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/intrinsics.h -------------------------------------------------------------------------------- /include/sketch/isz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/isz.h -------------------------------------------------------------------------------- /include/sketch/kahan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/kahan.h -------------------------------------------------------------------------------- /include/sketch/kthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/kthread.h -------------------------------------------------------------------------------- /include/sketch/lpcqf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/lpcqf.h -------------------------------------------------------------------------------- /include/sketch/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/macros.h -------------------------------------------------------------------------------- /include/sketch/median.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/median.h -------------------------------------------------------------------------------- /include/sketch/mh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/mh.h -------------------------------------------------------------------------------- /include/sketch/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/mod.h -------------------------------------------------------------------------------- /include/sketch/mult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/mult.h -------------------------------------------------------------------------------- /include/sketch/pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/pc.h -------------------------------------------------------------------------------- /include/sketch/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/policy.h -------------------------------------------------------------------------------- /include/sketch/rnla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/rnla.h -------------------------------------------------------------------------------- /include/sketch/setsketch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/setsketch.h -------------------------------------------------------------------------------- /include/sketch/sketch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/sketch.h -------------------------------------------------------------------------------- /include/sketch/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/sparse.h -------------------------------------------------------------------------------- /include/sketch/sseutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/sseutil.h -------------------------------------------------------------------------------- /include/sketch/ssi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/ssi.h -------------------------------------------------------------------------------- /include/sketch/tsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/tsg.h -------------------------------------------------------------------------------- /include/sketch/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/update.h -------------------------------------------------------------------------------- /include/sketch/vac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/vac.h -------------------------------------------------------------------------------- /include/sketch/wip/cuda/hll.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/sketch/wip/cuda/hll.cuh -------------------------------------------------------------------------------- /include/vec/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/vec/stats.h -------------------------------------------------------------------------------- /include/vec/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/vec/vec.h -------------------------------------------------------------------------------- /include/vec/welford_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/vec/welford_sd.h -------------------------------------------------------------------------------- /include/xxHash/xxh3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/xxHash/xxh3.h -------------------------------------------------------------------------------- /include/xxHash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/include/xxHash/xxhash.h -------------------------------------------------------------------------------- /kthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/kthread.cpp -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/python/README.md -------------------------------------------------------------------------------- /python/bbmh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/python/bbmh.cpp -------------------------------------------------------------------------------- /python/bf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/python/bf.cpp -------------------------------------------------------------------------------- /python/hll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/python/hll.cpp -------------------------------------------------------------------------------- /python/hmh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/python/hmh.cpp -------------------------------------------------------------------------------- /python/lsh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/python/lsh.cpp -------------------------------------------------------------------------------- /python/pysketch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/python/pysketch.h -------------------------------------------------------------------------------- /python/pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/python/pytest.py -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- 1 | setuptools>=44.0 2 | numpy>=0.17 3 | -------------------------------------------------------------------------------- /python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/python/setup.py -------------------------------------------------------------------------------- /python/sketch_ds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/python/sketch_ds/__init__.py -------------------------------------------------------------------------------- /python/sketch_ds/sketch_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/python/sketch_ds/sketch_test.py -------------------------------------------------------------------------------- /python/ss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/python/ss.cpp -------------------------------------------------------------------------------- /python/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/python/util.cpp -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/run_tests.sh -------------------------------------------------------------------------------- /src/hllgpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/src/hllgpu.cu -------------------------------------------------------------------------------- /testsrc/bagminhashtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/bagminhashtest.cpp -------------------------------------------------------------------------------- /testsrc/bbmhtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/bbmhtest.cpp -------------------------------------------------------------------------------- /testsrc/bftest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/bftest.cpp -------------------------------------------------------------------------------- /testsrc/cmtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/cmtest.cpp -------------------------------------------------------------------------------- /testsrc/count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/count.cpp -------------------------------------------------------------------------------- /testsrc/cscomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/cscomp.cpp -------------------------------------------------------------------------------- /testsrc/ddtest.cpp: -------------------------------------------------------------------------------- 1 | #include "dd.h" 2 | 3 | int main() { 4 | } 5 | -------------------------------------------------------------------------------- /testsrc/divtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/divtest.cpp -------------------------------------------------------------------------------- /testsrc/expsampletest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/expsampletest.cpp -------------------------------------------------------------------------------- /testsrc/fhlltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/fhlltest.cpp -------------------------------------------------------------------------------- /testsrc/heaptest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/heaptest.cpp -------------------------------------------------------------------------------- /testsrc/hktest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/hktest.cpp -------------------------------------------------------------------------------- /testsrc/hllcompresstest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/hllcompresstest.cpp -------------------------------------------------------------------------------- /testsrc/hlltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/hlltest.cpp -------------------------------------------------------------------------------- /testsrc/hmhtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/hmhtest.cpp -------------------------------------------------------------------------------- /testsrc/lpcqf_approx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/lpcqf_approx.cpp -------------------------------------------------------------------------------- /testsrc/lpcqf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/lpcqf_test.cpp -------------------------------------------------------------------------------- /testsrc/lpfp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/lpfp.cpp -------------------------------------------------------------------------------- /testsrc/mctest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/mctest.cpp -------------------------------------------------------------------------------- /testsrc/mhtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/mhtest.cpp -------------------------------------------------------------------------------- /testsrc/modtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/modtest.cpp -------------------------------------------------------------------------------- /testsrc/multtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/multtest.cpp -------------------------------------------------------------------------------- /testsrc/omhtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/omhtest.cpp -------------------------------------------------------------------------------- /testsrc/pctest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/pctest.cpp -------------------------------------------------------------------------------- /testsrc/policytest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/policytest.cpp -------------------------------------------------------------------------------- /testsrc/serial_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/serial_test.cpp -------------------------------------------------------------------------------- /testsrc/sstest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/sstest.cpp -------------------------------------------------------------------------------- /testsrc/swtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/swtest.cpp -------------------------------------------------------------------------------- /testsrc/test_revhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/test_revhash.cpp -------------------------------------------------------------------------------- /testsrc/testcontain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/testcontain.cpp -------------------------------------------------------------------------------- /testsrc/testmhmerge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/testmhmerge.cpp -------------------------------------------------------------------------------- /testsrc/testsparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/testsparse.cpp -------------------------------------------------------------------------------- /testsrc/timehash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/timehash.cpp -------------------------------------------------------------------------------- /testsrc/timerevhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/timerevhash.cpp -------------------------------------------------------------------------------- /testsrc/vactest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/vactest.cpp -------------------------------------------------------------------------------- /testsrc/version_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/version_test.cpp -------------------------------------------------------------------------------- /testsrc/xormaskhll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnbaker/sketch/HEAD/testsrc/xormaskhll.cpp --------------------------------------------------------------------------------