├── .asf.yaml ├── .gitattributes ├── .github ├── action │ ├── Dockerfile │ └── action.yml ├── dependabot.yml └── workflows │ ├── build-cron.yml │ ├── build.yml │ ├── cleanup-transient-artifacts.yml │ ├── delete_artifacts.py │ ├── docker-cd.yml │ ├── docker-release.yml │ ├── docker-testImage.yml │ ├── documentation.yml │ ├── javaTests.yml │ ├── license.yml │ ├── monitoringUITests.yml │ ├── python.yml │ ├── pythonFormatting.yml │ └── release-scripts.yml ├── .gitignore ├── .gitmodules ├── .mvn └── jvm.config ├── CITATION ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── bin ├── README.md └── systemds ├── codecov.yml ├── conf ├── SystemDS-config-defaults.xml ├── SystemDS-config.xml.template ├── log4j.properties └── log4j.properties.template ├── dev ├── CodeStyle_eclipse.xml └── release │ ├── README.md │ ├── check-release-machine.py │ ├── create-tag.sh │ ├── do-release.sh │ ├── old │ ├── deploy.sh │ ├── old-release-build.sh │ ├── publish.sh │ ├── simple-release-build.sh │ └── svn_dev_upload.sh │ ├── pypi-upload.sh │ ├── release-architecture.svg │ ├── release-build.sh │ ├── release-utils.sh │ ├── simple-release-verify.sh │ ├── src │ └── test │ │ ├── bin │ │ └── verifyBuild.sh │ │ └── java │ │ └── org │ │ └── apache │ │ └── sysds │ │ └── validation │ │ ├── Constants.java │ │ ├── Utility.java │ │ └── ValidateLicAndNotice.java │ └── svn-staging-to-release.sh ├── doap.rdf ├── docker ├── README.md ├── build.sh ├── entrypoint.sh ├── mountFolder │ ├── main.dml │ └── main.py ├── push.sh ├── pythonsysds.Dockerfile ├── sysds.Dockerfile └── testsysds.Dockerfile ├── docs ├── Gemfile ├── README.md ├── _config.yml ├── _includes │ ├── header.html │ └── scripts.html ├── _layouts │ ├── base.html │ └── site.html ├── api │ ├── java │ │ ├── allclasses-index.html │ │ ├── allclasses.html │ │ ├── allpackages-index.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── element-list │ │ ├── help-doc.html │ │ ├── index-all.html │ │ ├── index.html │ │ ├── jquery-ui.overrides.css │ │ ├── jquery │ │ │ ├── external │ │ │ │ └── jquery │ │ │ │ │ └── jquery.js │ │ │ ├── jquery-3.6.1.min.js │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.min.js │ │ │ ├── jszip-utils │ │ │ │ └── dist │ │ │ │ │ ├── jszip-utils-ie.js │ │ │ │ │ ├── jszip-utils-ie.min.js │ │ │ │ │ ├── jszip-utils.js │ │ │ │ │ └── jszip-utils.min.js │ │ │ └── jszip │ │ │ │ └── dist │ │ │ │ ├── jszip.js │ │ │ │ └── jszip.min.js │ │ ├── legal │ │ │ ├── ADDITIONAL_LICENSE_INFO │ │ │ ├── ASSEMBLY_EXCEPTION │ │ │ ├── LICENSE │ │ │ ├── jquery.md │ │ │ ├── jqueryUI.md │ │ │ ├── jszip.md │ │ │ └── pako.md │ │ ├── member-search-index.js │ │ ├── member-search-index.zip │ │ ├── org │ │ │ └── apache │ │ │ │ └── sysds │ │ │ │ ├── api │ │ │ │ ├── ConfigurableAPI.html │ │ │ │ ├── DMLException.html │ │ │ │ ├── DMLOptions.html │ │ │ │ ├── DMLScript.html │ │ │ │ ├── PythonDMLScript.html │ │ │ │ ├── ScriptExecutorUtils.html │ │ │ │ ├── class-use │ │ │ │ │ ├── ConfigurableAPI.html │ │ │ │ │ ├── DMLException.html │ │ │ │ │ ├── DMLOptions.html │ │ │ │ │ ├── DMLScript.html │ │ │ │ │ ├── PythonDMLScript.html │ │ │ │ │ └── ScriptExecutorUtils.html │ │ │ │ ├── jmlc │ │ │ │ │ ├── Connection.html │ │ │ │ │ ├── JMLCUtils.html │ │ │ │ │ ├── PreparedScript.html │ │ │ │ │ ├── ResultVariables.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── Connection.html │ │ │ │ │ │ ├── JMLCUtils.html │ │ │ │ │ │ ├── PreparedScript.html │ │ │ │ │ │ └── ResultVariables.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── mlcontext │ │ │ │ │ ├── Frame.html │ │ │ │ │ ├── FrameFormat.html │ │ │ │ │ ├── FrameMetadata.html │ │ │ │ │ ├── FrameSchema.html │ │ │ │ │ ├── MLContext.ExecutionType.html │ │ │ │ │ ├── MLContext.ExplainLevel.html │ │ │ │ │ ├── MLContext.InternalProxy.html │ │ │ │ │ ├── MLContext.html │ │ │ │ │ ├── MLContextConversionUtil.html │ │ │ │ │ ├── MLContextException.html │ │ │ │ │ ├── MLContextUtil.html │ │ │ │ │ ├── MLResults.html │ │ │ │ │ ├── Matrix.html │ │ │ │ │ ├── MatrixFormat.html │ │ │ │ │ ├── MatrixMetadata.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── ProjectInfo.html │ │ │ │ │ ├── Script.html │ │ │ │ │ ├── ScriptExecutor.html │ │ │ │ │ ├── ScriptFactory.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── Frame.html │ │ │ │ │ │ ├── FrameFormat.html │ │ │ │ │ │ ├── FrameMetadata.html │ │ │ │ │ │ ├── FrameSchema.html │ │ │ │ │ │ ├── MLContext.ExecutionType.html │ │ │ │ │ │ ├── MLContext.ExplainLevel.html │ │ │ │ │ │ ├── MLContext.InternalProxy.html │ │ │ │ │ │ ├── MLContext.html │ │ │ │ │ │ ├── MLContextConversionUtil.html │ │ │ │ │ │ ├── MLContextException.html │ │ │ │ │ │ ├── MLContextUtil.html │ │ │ │ │ │ ├── MLResults.html │ │ │ │ │ │ ├── Matrix.html │ │ │ │ │ │ ├── MatrixFormat.html │ │ │ │ │ │ ├── MatrixMetadata.html │ │ │ │ │ │ ├── Metadata.html │ │ │ │ │ │ ├── ProjectInfo.html │ │ │ │ │ │ ├── Script.html │ │ │ │ │ │ ├── ScriptExecutor.html │ │ │ │ │ │ └── ScriptFactory.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ │ ├── common │ │ │ │ ├── Builtins.html │ │ │ │ ├── InstructionType.html │ │ │ │ ├── Opcodes.html │ │ │ │ ├── Types.AggOp.html │ │ │ │ ├── Types.BlockType.html │ │ │ │ ├── Types.CorrectionLocationType.html │ │ │ │ ├── Types.DataType.html │ │ │ │ ├── Types.Direction.html │ │ │ │ ├── Types.ExecMode.html │ │ │ │ ├── Types.ExecType.html │ │ │ │ ├── Types.FileFormat.html │ │ │ │ ├── Types.FunctionBlock.html │ │ │ │ ├── Types.OpOp1.html │ │ │ │ ├── Types.OpOp2.html │ │ │ │ ├── Types.OpOp3.html │ │ │ │ ├── Types.OpOp4.html │ │ │ │ ├── Types.OpOpDG.html │ │ │ │ ├── Types.OpOpData.html │ │ │ │ ├── Types.OpOpDnn.html │ │ │ │ ├── Types.OpOpN.html │ │ │ │ ├── Types.ParamBuiltinOp.html │ │ │ │ ├── Types.ReOrgOp.html │ │ │ │ ├── Types.ReturnType.html │ │ │ │ ├── Types.ValueType.html │ │ │ │ ├── Types.html │ │ │ │ ├── Warnings.html │ │ │ │ ├── class-use │ │ │ │ │ ├── Builtins.html │ │ │ │ │ ├── InstructionType.html │ │ │ │ │ ├── Opcodes.html │ │ │ │ │ ├── Types.AggOp.html │ │ │ │ │ ├── Types.BlockType.html │ │ │ │ │ ├── Types.CorrectionLocationType.html │ │ │ │ │ ├── Types.DataType.html │ │ │ │ │ ├── Types.Direction.html │ │ │ │ │ ├── Types.ExecMode.html │ │ │ │ │ ├── Types.ExecType.html │ │ │ │ │ ├── Types.FileFormat.html │ │ │ │ │ ├── Types.FunctionBlock.html │ │ │ │ │ ├── Types.OpOp1.html │ │ │ │ │ ├── Types.OpOp2.html │ │ │ │ │ ├── Types.OpOp3.html │ │ │ │ │ ├── Types.OpOp4.html │ │ │ │ │ ├── Types.OpOpDG.html │ │ │ │ │ ├── Types.OpOpData.html │ │ │ │ │ ├── Types.OpOpDnn.html │ │ │ │ │ ├── Types.OpOpN.html │ │ │ │ │ ├── Types.ParamBuiltinOp.html │ │ │ │ │ ├── Types.ReOrgOp.html │ │ │ │ │ ├── Types.ReturnType.html │ │ │ │ │ ├── Types.ValueType.html │ │ │ │ │ ├── Types.html │ │ │ │ │ └── Warnings.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ │ ├── conf │ │ │ │ ├── CompilerConfig.ConfigType.html │ │ │ │ ├── CompilerConfig.html │ │ │ │ ├── ConfigurationManager.html │ │ │ │ ├── DMLConfig.html │ │ │ │ ├── class-use │ │ │ │ │ ├── CompilerConfig.ConfigType.html │ │ │ │ │ ├── CompilerConfig.html │ │ │ │ │ ├── ConfigurationManager.html │ │ │ │ │ └── DMLConfig.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ │ ├── hops │ │ │ │ ├── AggBinaryOp.MMultMethod.html │ │ │ │ ├── AggBinaryOp.SparkAggType.html │ │ │ │ ├── AggBinaryOp.html │ │ │ │ ├── AggUnaryOp.html │ │ │ │ ├── BinaryOp.AppendMethod.html │ │ │ │ ├── BinaryOp.MMBinaryMethod.html │ │ │ │ ├── BinaryOp.html │ │ │ │ ├── DataGenOp.html │ │ │ │ ├── DataOp.html │ │ │ │ ├── DnnOp.html │ │ │ │ ├── FunctionOp.FunctionType.html │ │ │ │ ├── FunctionOp.html │ │ │ │ ├── Hop.html │ │ │ │ ├── HopsException.html │ │ │ │ ├── IndexingOp.html │ │ │ │ ├── LeftIndexingOp.LeftIndexingMethod.html │ │ │ │ ├── LeftIndexingOp.html │ │ │ │ ├── LiteralOp.html │ │ │ │ ├── MemoTable.html │ │ │ │ ├── MultiThreadedHop.html │ │ │ │ ├── NaryOp.html │ │ │ │ ├── OptimizerUtils.MemoryManager.html │ │ │ │ ├── OptimizerUtils.OptimizationLevel.html │ │ │ │ ├── OptimizerUtils.html │ │ │ │ ├── ParameterizedBuiltinOp.html │ │ │ │ ├── QuaternaryOp.html │ │ │ │ ├── ReorgOp.html │ │ │ │ ├── TernaryOp.html │ │ │ │ ├── UnaryOp.html │ │ │ │ ├── class-use │ │ │ │ │ ├── AggBinaryOp.MMultMethod.html │ │ │ │ │ ├── AggBinaryOp.SparkAggType.html │ │ │ │ │ ├── AggBinaryOp.html │ │ │ │ │ ├── AggUnaryOp.html │ │ │ │ │ ├── BinaryOp.AppendMethod.html │ │ │ │ │ ├── BinaryOp.MMBinaryMethod.html │ │ │ │ │ ├── BinaryOp.html │ │ │ │ │ ├── DataGenOp.html │ │ │ │ │ ├── DataOp.html │ │ │ │ │ ├── DnnOp.html │ │ │ │ │ ├── FunctionOp.FunctionType.html │ │ │ │ │ ├── FunctionOp.html │ │ │ │ │ ├── Hop.html │ │ │ │ │ ├── HopsException.html │ │ │ │ │ ├── IndexingOp.html │ │ │ │ │ ├── LeftIndexingOp.LeftIndexingMethod.html │ │ │ │ │ ├── LeftIndexingOp.html │ │ │ │ │ ├── LiteralOp.html │ │ │ │ │ ├── MemoTable.html │ │ │ │ │ ├── MultiThreadedHop.html │ │ │ │ │ ├── NaryOp.html │ │ │ │ │ ├── OptimizerUtils.MemoryManager.html │ │ │ │ │ ├── OptimizerUtils.OptimizationLevel.html │ │ │ │ │ ├── OptimizerUtils.html │ │ │ │ │ ├── ParameterizedBuiltinOp.html │ │ │ │ │ ├── QuaternaryOp.html │ │ │ │ │ ├── ReorgOp.html │ │ │ │ │ ├── TernaryOp.html │ │ │ │ │ └── UnaryOp.html │ │ │ │ ├── codegen │ │ │ │ │ ├── SpoofCompiler.CompilerType.html │ │ │ │ │ ├── SpoofCompiler.GeneratorAPI.html │ │ │ │ │ ├── SpoofCompiler.IntegrationType.html │ │ │ │ │ ├── SpoofCompiler.PlanCachePolicy.html │ │ │ │ │ ├── SpoofCompiler.PlanSelector.html │ │ │ │ │ ├── SpoofCompiler.RegisterAlloc.html │ │ │ │ │ ├── SpoofCompiler.html │ │ │ │ │ ├── SpoofFusedOp.SpoofOutputDimsType.html │ │ │ │ │ ├── SpoofFusedOp.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── SpoofCompiler.CompilerType.html │ │ │ │ │ │ ├── SpoofCompiler.GeneratorAPI.html │ │ │ │ │ │ ├── SpoofCompiler.IntegrationType.html │ │ │ │ │ │ ├── SpoofCompiler.PlanCachePolicy.html │ │ │ │ │ │ ├── SpoofCompiler.PlanSelector.html │ │ │ │ │ │ ├── SpoofCompiler.RegisterAlloc.html │ │ │ │ │ │ ├── SpoofCompiler.html │ │ │ │ │ │ ├── SpoofFusedOp.SpoofOutputDimsType.html │ │ │ │ │ │ └── SpoofFusedOp.html │ │ │ │ │ ├── cplan │ │ │ │ │ │ ├── CNode.html │ │ │ │ │ │ ├── CNodeBinary.BinType.html │ │ │ │ │ │ ├── CNodeBinary.html │ │ │ │ │ │ ├── CNodeCell.html │ │ │ │ │ │ ├── CNodeData.html │ │ │ │ │ │ ├── CNodeMultiAgg.html │ │ │ │ │ │ ├── CNodeNary.NaryType.html │ │ │ │ │ │ ├── CNodeNary.html │ │ │ │ │ │ ├── CNodeOuterProduct.html │ │ │ │ │ │ ├── CNodeRow.html │ │ │ │ │ │ ├── CNodeTernary.TernaryType.html │ │ │ │ │ │ ├── CNodeTernary.html │ │ │ │ │ │ ├── CNodeTpl.html │ │ │ │ │ │ ├── CNodeUnary.UnaryType.html │ │ │ │ │ │ ├── CNodeUnary.html │ │ │ │ │ │ ├── CodeTemplate.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── CNode.html │ │ │ │ │ │ │ ├── CNodeBinary.BinType.html │ │ │ │ │ │ │ ├── CNodeBinary.html │ │ │ │ │ │ │ ├── CNodeCell.html │ │ │ │ │ │ │ ├── CNodeData.html │ │ │ │ │ │ │ ├── CNodeMultiAgg.html │ │ │ │ │ │ │ ├── CNodeNary.NaryType.html │ │ │ │ │ │ │ ├── CNodeNary.html │ │ │ │ │ │ │ ├── CNodeOuterProduct.html │ │ │ │ │ │ │ ├── CNodeRow.html │ │ │ │ │ │ │ ├── CNodeTernary.TernaryType.html │ │ │ │ │ │ │ ├── CNodeTernary.html │ │ │ │ │ │ │ ├── CNodeTpl.html │ │ │ │ │ │ │ ├── CNodeUnary.UnaryType.html │ │ │ │ │ │ │ ├── CNodeUnary.html │ │ │ │ │ │ │ └── CodeTemplate.html │ │ │ │ │ │ ├── cuda │ │ │ │ │ │ │ ├── Binary.html │ │ │ │ │ │ │ ├── Ternary.html │ │ │ │ │ │ │ ├── Unary.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ ├── Binary.html │ │ │ │ │ │ │ │ ├── Ternary.html │ │ │ │ │ │ │ │ └── Unary.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ ├── Binary.html │ │ │ │ │ │ │ ├── Ternary.html │ │ │ │ │ │ │ ├── Unary.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ ├── Binary.html │ │ │ │ │ │ │ │ ├── Ternary.html │ │ │ │ │ │ │ │ └── Unary.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── opt │ │ │ │ │ │ ├── InterestingPoint.DecisionType.html │ │ │ │ │ │ ├── InterestingPoint.html │ │ │ │ │ │ ├── PlanAnalyzer.html │ │ │ │ │ │ ├── PlanPartition.html │ │ │ │ │ │ ├── PlanSelection.VisitMarkCost.html │ │ │ │ │ │ ├── PlanSelection.html │ │ │ │ │ │ ├── PlanSelectionFuseAll.html │ │ │ │ │ │ ├── PlanSelectionFuseCostBased.html │ │ │ │ │ │ ├── PlanSelectionFuseCostBasedV2.html │ │ │ │ │ │ ├── PlanSelectionFuseNoRedundancy.html │ │ │ │ │ │ ├── ReachabilityGraph.SubProblem.html │ │ │ │ │ │ ├── ReachabilityGraph.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── InterestingPoint.DecisionType.html │ │ │ │ │ │ │ ├── InterestingPoint.html │ │ │ │ │ │ │ ├── PlanAnalyzer.html │ │ │ │ │ │ │ ├── PlanPartition.html │ │ │ │ │ │ │ ├── PlanSelection.VisitMarkCost.html │ │ │ │ │ │ │ ├── PlanSelection.html │ │ │ │ │ │ │ ├── PlanSelectionFuseAll.html │ │ │ │ │ │ │ ├── PlanSelectionFuseCostBased.html │ │ │ │ │ │ │ ├── PlanSelectionFuseCostBasedV2.html │ │ │ │ │ │ │ ├── PlanSelectionFuseNoRedundancy.html │ │ │ │ │ │ │ ├── ReachabilityGraph.SubProblem.html │ │ │ │ │ │ │ └── ReachabilityGraph.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ ├── package-use.html │ │ │ │ │ └── template │ │ │ │ │ │ ├── CPlanCSERewriter.html │ │ │ │ │ │ ├── CPlanMemoTable.MemoTableEntry.html │ │ │ │ │ │ ├── CPlanMemoTable.MemoTableEntrySet.html │ │ │ │ │ │ ├── CPlanMemoTable.html │ │ │ │ │ │ ├── CPlanOpRewriter.html │ │ │ │ │ │ ├── TemplateBase.CloseType.html │ │ │ │ │ │ ├── TemplateBase.TemplateType.html │ │ │ │ │ │ ├── TemplateBase.html │ │ │ │ │ │ ├── TemplateCell.HopInputComparator.html │ │ │ │ │ │ ├── TemplateCell.html │ │ │ │ │ │ ├── TemplateMultiAgg.html │ │ │ │ │ │ ├── TemplateOuterProduct.html │ │ │ │ │ │ ├── TemplateRow.HopInputComparator.html │ │ │ │ │ │ ├── TemplateRow.html │ │ │ │ │ │ ├── TemplateUtils.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── CPlanCSERewriter.html │ │ │ │ │ │ ├── CPlanMemoTable.MemoTableEntry.html │ │ │ │ │ │ ├── CPlanMemoTable.MemoTableEntrySet.html │ │ │ │ │ │ ├── CPlanMemoTable.html │ │ │ │ │ │ ├── CPlanOpRewriter.html │ │ │ │ │ │ ├── TemplateBase.CloseType.html │ │ │ │ │ │ ├── TemplateBase.TemplateType.html │ │ │ │ │ │ ├── TemplateBase.html │ │ │ │ │ │ ├── TemplateCell.HopInputComparator.html │ │ │ │ │ │ ├── TemplateCell.html │ │ │ │ │ │ ├── TemplateMultiAgg.html │ │ │ │ │ │ ├── TemplateOuterProduct.html │ │ │ │ │ │ ├── TemplateRow.HopInputComparator.html │ │ │ │ │ │ ├── TemplateRow.html │ │ │ │ │ │ └── TemplateUtils.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ ├── cost │ │ │ │ │ ├── ComputeCost.html │ │ │ │ │ ├── CostEstimationWrapper.CostType.html │ │ │ │ │ ├── CostEstimationWrapper.html │ │ │ │ │ ├── CostEstimator.html │ │ │ │ │ ├── CostEstimatorStaticRuntime.html │ │ │ │ │ ├── VarStats.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── ComputeCost.html │ │ │ │ │ │ ├── CostEstimationWrapper.CostType.html │ │ │ │ │ │ ├── CostEstimationWrapper.html │ │ │ │ │ │ ├── CostEstimator.html │ │ │ │ │ │ ├── CostEstimatorStaticRuntime.html │ │ │ │ │ │ └── VarStats.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── estim │ │ │ │ │ ├── EstimationUtils.html │ │ │ │ │ ├── EstimatorBasicAvg.html │ │ │ │ │ ├── EstimatorBasicWorst.html │ │ │ │ │ ├── EstimatorBitsetMM.BitsetMatrix.html │ │ │ │ │ ├── EstimatorBitsetMM.BitsetMatrix1.html │ │ │ │ │ ├── EstimatorBitsetMM.BitsetMatrix2.html │ │ │ │ │ ├── EstimatorBitsetMM.html │ │ │ │ │ ├── EstimatorDensityMap.DensityMap.html │ │ │ │ │ ├── EstimatorDensityMap.html │ │ │ │ │ ├── EstimatorLayeredGraph.LayeredGraph.html │ │ │ │ │ ├── EstimatorLayeredGraph.html │ │ │ │ │ ├── EstimatorMatrixHistogram.MatrixHistogram.html │ │ │ │ │ ├── EstimatorMatrixHistogram.html │ │ │ │ │ ├── EstimatorSample.html │ │ │ │ │ ├── EstimatorSampleRa.html │ │ │ │ │ ├── MMNode.html │ │ │ │ │ ├── SparsityEstimator.OpCode.html │ │ │ │ │ ├── SparsityEstimator.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── EstimationUtils.html │ │ │ │ │ │ ├── EstimatorBasicAvg.html │ │ │ │ │ │ ├── EstimatorBasicWorst.html │ │ │ │ │ │ ├── EstimatorBitsetMM.BitsetMatrix.html │ │ │ │ │ │ ├── EstimatorBitsetMM.BitsetMatrix1.html │ │ │ │ │ │ ├── EstimatorBitsetMM.BitsetMatrix2.html │ │ │ │ │ │ ├── EstimatorBitsetMM.html │ │ │ │ │ │ ├── EstimatorDensityMap.DensityMap.html │ │ │ │ │ │ ├── EstimatorDensityMap.html │ │ │ │ │ │ ├── EstimatorLayeredGraph.LayeredGraph.html │ │ │ │ │ │ ├── EstimatorLayeredGraph.html │ │ │ │ │ │ ├── EstimatorMatrixHistogram.MatrixHistogram.html │ │ │ │ │ │ ├── EstimatorMatrixHistogram.html │ │ │ │ │ │ ├── EstimatorSample.html │ │ │ │ │ │ ├── EstimatorSampleRa.html │ │ │ │ │ │ ├── MMNode.html │ │ │ │ │ │ ├── SparsityEstimator.OpCode.html │ │ │ │ │ │ └── SparsityEstimator.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── fedplanner │ │ │ │ │ ├── AFederatedPlanner.html │ │ │ │ │ ├── FTypes.AlignType.html │ │ │ │ │ ├── FTypes.FPartitioning.html │ │ │ │ │ ├── FTypes.FReplication.html │ │ │ │ │ ├── FTypes.FType.html │ │ │ │ │ ├── FTypes.FederatedPlanner.html │ │ │ │ │ ├── FTypes.html │ │ │ │ │ ├── FederatedCompilationTimer.TimeEntry.html │ │ │ │ │ ├── FederatedCompilationTimer.html │ │ │ │ │ ├── FederatedMemoTable.FedPlan.html │ │ │ │ │ ├── FederatedMemoTable.FedPlanVariants.html │ │ │ │ │ ├── FederatedMemoTable.HopCommon.html │ │ │ │ │ ├── FederatedMemoTable.html │ │ │ │ │ ├── FederatedMemoTablePrinter.html │ │ │ │ │ ├── FederatedPlanCostEnumerator.html │ │ │ │ │ ├── FederatedPlanCostEstimator.html │ │ │ │ │ ├── FederatedPlannerFedAll.html │ │ │ │ │ ├── FederatedPlannerFedHeuristic.html │ │ │ │ │ ├── FederatedPlannerUtils.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── AFederatedPlanner.html │ │ │ │ │ │ ├── FTypes.AlignType.html │ │ │ │ │ │ ├── FTypes.FPartitioning.html │ │ │ │ │ │ ├── FTypes.FReplication.html │ │ │ │ │ │ ├── FTypes.FType.html │ │ │ │ │ │ ├── FTypes.FederatedPlanner.html │ │ │ │ │ │ ├── FTypes.html │ │ │ │ │ │ ├── FederatedCompilationTimer.TimeEntry.html │ │ │ │ │ │ ├── FederatedCompilationTimer.html │ │ │ │ │ │ ├── FederatedMemoTable.FedPlan.html │ │ │ │ │ │ ├── FederatedMemoTable.FedPlanVariants.html │ │ │ │ │ │ ├── FederatedMemoTable.HopCommon.html │ │ │ │ │ │ ├── FederatedMemoTable.html │ │ │ │ │ │ ├── FederatedMemoTablePrinter.html │ │ │ │ │ │ ├── FederatedPlanCostEnumerator.html │ │ │ │ │ │ ├── FederatedPlanCostEstimator.html │ │ │ │ │ │ ├── FederatedPlannerFedAll.html │ │ │ │ │ │ ├── FederatedPlannerFedHeuristic.html │ │ │ │ │ │ └── FederatedPlannerUtils.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── ipa │ │ │ │ │ ├── FunctionCallGraph.html │ │ │ │ │ ├── FunctionCallSizeInfo.html │ │ │ │ │ ├── IPAPass.html │ │ │ │ │ ├── IPAPassApplyStaticAndDynamicHopRewrites.html │ │ │ │ │ ├── IPAPassCompressionWorkloadAnalysis.html │ │ │ │ │ ├── IPAPassEliminateDeadCode.html │ │ │ │ │ ├── IPAPassFlagFunctionsRecompileOnce.html │ │ │ │ │ ├── IPAPassFlagLoopsRecompileOnce.html │ │ │ │ │ ├── IPAPassFlagNonDeterminism.html │ │ │ │ │ ├── IPAPassForwardFunctionCalls.html │ │ │ │ │ ├── IPAPassInlineFunctions.html │ │ │ │ │ ├── IPAPassPropagateReplaceLiterals.html │ │ │ │ │ ├── IPAPassRemoveConstantBinaryOps.html │ │ │ │ │ ├── IPAPassRemoveUnnecessaryCheckpoints.html │ │ │ │ │ ├── IPAPassRemoveUnusedFunctions.html │ │ │ │ │ ├── IPAPassReplaceEvalFunctionCalls.html │ │ │ │ │ ├── IPAPassRewriteFederatedPlan.html │ │ │ │ │ ├── InterProceduralAnalysis.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── FunctionCallGraph.html │ │ │ │ │ │ ├── FunctionCallSizeInfo.html │ │ │ │ │ │ ├── IPAPass.html │ │ │ │ │ │ ├── IPAPassApplyStaticAndDynamicHopRewrites.html │ │ │ │ │ │ ├── IPAPassCompressionWorkloadAnalysis.html │ │ │ │ │ │ ├── IPAPassEliminateDeadCode.html │ │ │ │ │ │ ├── IPAPassFlagFunctionsRecompileOnce.html │ │ │ │ │ │ ├── IPAPassFlagLoopsRecompileOnce.html │ │ │ │ │ │ ├── IPAPassFlagNonDeterminism.html │ │ │ │ │ │ ├── IPAPassForwardFunctionCalls.html │ │ │ │ │ │ ├── IPAPassInlineFunctions.html │ │ │ │ │ │ ├── IPAPassPropagateReplaceLiterals.html │ │ │ │ │ │ ├── IPAPassRemoveConstantBinaryOps.html │ │ │ │ │ │ ├── IPAPassRemoveUnnecessaryCheckpoints.html │ │ │ │ │ │ ├── IPAPassRemoveUnusedFunctions.html │ │ │ │ │ │ ├── IPAPassReplaceEvalFunctionCalls.html │ │ │ │ │ │ ├── IPAPassRewriteFederatedPlan.html │ │ │ │ │ │ └── InterProceduralAnalysis.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ ├── package-use.html │ │ │ │ ├── recompile │ │ │ │ │ ├── LiteralReplacement.html │ │ │ │ │ ├── RecompileStatus.html │ │ │ │ │ ├── Recompiler.ResetType.html │ │ │ │ │ ├── Recompiler.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── LiteralReplacement.html │ │ │ │ │ │ ├── RecompileStatus.html │ │ │ │ │ │ ├── Recompiler.ResetType.html │ │ │ │ │ │ └── Recompiler.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ └── rewrite │ │ │ │ │ ├── HopDagValidator.html │ │ │ │ │ ├── HopRewriteRule.html │ │ │ │ │ ├── HopRewriteUtils.html │ │ │ │ │ ├── MarkForLineageReuse.html │ │ │ │ │ ├── ProgramRewriteStatus.html │ │ │ │ │ ├── ProgramRewriter.html │ │ │ │ │ ├── RewriteAlgebraicSimplificationDynamic.html │ │ │ │ │ ├── RewriteAlgebraicSimplificationStatic.html │ │ │ │ │ ├── RewriteBlockSizeAndReblock.html │ │ │ │ │ ├── RewriteCommonSubexpressionElimination.html │ │ │ │ │ ├── RewriteCompressedReblock.html │ │ │ │ │ ├── RewriteConstantFolding.html │ │ │ │ │ ├── RewriteElementwiseMultChainOptimization.html │ │ │ │ │ ├── RewriteForLoopVectorization.html │ │ │ │ │ ├── RewriteGPUSpecificOps.html │ │ │ │ │ ├── RewriteHoistLoopInvariantOperations.html │ │ │ │ │ ├── RewriteIndexingVectorization.html │ │ │ │ │ ├── RewriteInjectSparkLoopCheckpointing.html │ │ │ │ │ ├── RewriteInjectSparkPReadCheckpointing.html │ │ │ │ │ ├── RewriteMarkLoopVariablesUpdateInPlace.html │ │ │ │ │ ├── RewriteMatrixMultChainOptimization.html │ │ │ │ │ ├── RewriteMatrixMultChainOptimizationSparse.html │ │ │ │ │ ├── RewriteMatrixMultChainOptimizationTranspose.html │ │ │ │ │ ├── RewriteMergeBlockSequence.html │ │ │ │ │ ├── RewriteNonScalarPrint.html │ │ │ │ │ ├── RewriteRemoveEmptyBasicBlocks.html │ │ │ │ │ ├── RewriteRemoveEmptyForLoops.html │ │ │ │ │ ├── RewriteRemoveForLoopEmptySequence.html │ │ │ │ │ ├── RewriteRemovePersistentReadWrite.html │ │ │ │ │ ├── RewriteRemoveReadAfterWrite.html │ │ │ │ │ ├── RewriteRemoveTransformEncodeMeta.html │ │ │ │ │ ├── RewriteRemoveUnnecessaryBranches.html │ │ │ │ │ ├── RewriteRemoveUnnecessaryCasts.html │ │ │ │ │ ├── RewriteSplitDagDataDependentOperators.html │ │ │ │ │ ├── RewriteSplitDagUnknownCSVRead.html │ │ │ │ │ ├── StatementBlockRewriteRule.html │ │ │ │ │ ├── class-use │ │ │ │ │ ├── HopDagValidator.html │ │ │ │ │ ├── HopRewriteRule.html │ │ │ │ │ ├── HopRewriteUtils.html │ │ │ │ │ ├── MarkForLineageReuse.html │ │ │ │ │ ├── ProgramRewriteStatus.html │ │ │ │ │ ├── ProgramRewriter.html │ │ │ │ │ ├── RewriteAlgebraicSimplificationDynamic.html │ │ │ │ │ ├── RewriteAlgebraicSimplificationStatic.html │ │ │ │ │ ├── RewriteBlockSizeAndReblock.html │ │ │ │ │ ├── RewriteCommonSubexpressionElimination.html │ │ │ │ │ ├── RewriteCompressedReblock.html │ │ │ │ │ ├── RewriteConstantFolding.html │ │ │ │ │ ├── RewriteElementwiseMultChainOptimization.html │ │ │ │ │ ├── RewriteForLoopVectorization.html │ │ │ │ │ ├── RewriteGPUSpecificOps.html │ │ │ │ │ ├── RewriteHoistLoopInvariantOperations.html │ │ │ │ │ ├── RewriteIndexingVectorization.html │ │ │ │ │ ├── RewriteInjectSparkLoopCheckpointing.html │ │ │ │ │ ├── RewriteInjectSparkPReadCheckpointing.html │ │ │ │ │ ├── RewriteMarkLoopVariablesUpdateInPlace.html │ │ │ │ │ ├── RewriteMatrixMultChainOptimization.html │ │ │ │ │ ├── RewriteMatrixMultChainOptimizationSparse.html │ │ │ │ │ ├── RewriteMatrixMultChainOptimizationTranspose.html │ │ │ │ │ ├── RewriteMergeBlockSequence.html │ │ │ │ │ ├── RewriteNonScalarPrint.html │ │ │ │ │ ├── RewriteRemoveEmptyBasicBlocks.html │ │ │ │ │ ├── RewriteRemoveEmptyForLoops.html │ │ │ │ │ ├── RewriteRemoveForLoopEmptySequence.html │ │ │ │ │ ├── RewriteRemovePersistentReadWrite.html │ │ │ │ │ ├── RewriteRemoveReadAfterWrite.html │ │ │ │ │ ├── RewriteRemoveTransformEncodeMeta.html │ │ │ │ │ ├── RewriteRemoveUnnecessaryBranches.html │ │ │ │ │ ├── RewriteRemoveUnnecessaryCasts.html │ │ │ │ │ ├── RewriteSplitDagDataDependentOperators.html │ │ │ │ │ ├── RewriteSplitDagUnknownCSVRead.html │ │ │ │ │ └── StatementBlockRewriteRule.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── lops │ │ │ │ ├── Append.html │ │ │ │ ├── AppendG.html │ │ │ │ ├── AppendGAlignedSP.html │ │ │ │ ├── AppendM.CacheType.html │ │ │ │ ├── AppendM.html │ │ │ │ ├── AppendR.html │ │ │ │ ├── Binary.html │ │ │ │ ├── BinaryM.VectorType.html │ │ │ │ ├── BinaryM.html │ │ │ │ ├── BinaryScalar.html │ │ │ │ ├── BinaryUAggChain.html │ │ │ │ ├── CSVReBlock.html │ │ │ │ ├── CentralMoment.html │ │ │ │ ├── Checkpoint.html │ │ │ │ ├── CoVariance.html │ │ │ │ ├── Compression.CompressConfig.html │ │ │ │ ├── Compression.html │ │ │ │ ├── Ctable.OperationTypes.html │ │ │ │ ├── Ctable.html │ │ │ │ ├── CumulativeOffsetBinary.html │ │ │ │ ├── CumulativePartialAggregate.html │ │ │ │ ├── Data.html │ │ │ │ ├── DataGen.html │ │ │ │ ├── DeCompression.CompressConfig.html │ │ │ │ ├── DeCompression.html │ │ │ │ ├── DnnTransform.html │ │ │ │ ├── Federated.html │ │ │ │ ├── FunctionCallCP.html │ │ │ │ ├── GroupedAggregate.html │ │ │ │ ├── GroupedAggregateM.CacheType.html │ │ │ │ ├── GroupedAggregateM.html │ │ │ │ ├── LeftIndex.LixCacheType.html │ │ │ │ ├── LeftIndex.html │ │ │ │ ├── Local.html │ │ │ │ ├── Lop.SimpleInstType.html │ │ │ │ ├── Lop.Type.html │ │ │ │ ├── Lop.VisitStatus.html │ │ │ │ ├── Lop.html │ │ │ │ ├── LopProperties.html │ │ │ │ ├── LopsException.html │ │ │ │ ├── MMCJ.MMCJType.html │ │ │ │ ├── MMCJ.html │ │ │ │ ├── MMRJ.html │ │ │ │ ├── MMTSJ.MMTSJType.html │ │ │ │ ├── MMTSJ.html │ │ │ │ ├── MMZip.html │ │ │ │ ├── MapMult.CacheType.html │ │ │ │ ├── MapMult.html │ │ │ │ ├── MapMultChain.ChainType.html │ │ │ │ ├── MapMultChain.html │ │ │ │ ├── MatMultCP.html │ │ │ │ ├── Nary.html │ │ │ │ ├── OperatorOrderingUtils.html │ │ │ │ ├── OutputParameters.html │ │ │ │ ├── PMMJ.CacheType.html │ │ │ │ ├── PMMJ.html │ │ │ │ ├── PMapMult.html │ │ │ │ ├── ParameterizedBuiltin.html │ │ │ │ ├── PartialAggregate.html │ │ │ │ ├── PickByCount.OperationTypes.html │ │ │ │ ├── PickByCount.html │ │ │ │ ├── ReBlock.html │ │ │ │ ├── RightIndex.html │ │ │ │ ├── SortKeys.OperationTypes.html │ │ │ │ ├── SortKeys.html │ │ │ │ ├── SpoofFused.html │ │ │ │ ├── Sql.html │ │ │ │ ├── Ternary.html │ │ │ │ ├── TernaryAggregate.html │ │ │ │ ├── Transform.html │ │ │ │ ├── UAggOuterChain.html │ │ │ │ ├── Unary.html │ │ │ │ ├── UnaryCP.html │ │ │ │ ├── WeightedCrossEntropy.WCeMMType.html │ │ │ │ ├── WeightedCrossEntropy.html │ │ │ │ ├── WeightedCrossEntropyR.html │ │ │ │ ├── WeightedDivMM.WDivMMType.html │ │ │ │ ├── WeightedDivMM.html │ │ │ │ ├── WeightedDivMMR.html │ │ │ │ ├── WeightedSigmoid.WSigmoidType.html │ │ │ │ ├── WeightedSigmoid.html │ │ │ │ ├── WeightedSigmoidR.html │ │ │ │ ├── WeightedSquaredLoss.WeightsType.html │ │ │ │ ├── WeightedSquaredLoss.html │ │ │ │ ├── WeightedSquaredLossR.html │ │ │ │ ├── WeightedUnaryMM.WUMMType.html │ │ │ │ ├── WeightedUnaryMM.html │ │ │ │ ├── WeightedUnaryMMR.html │ │ │ │ ├── class-use │ │ │ │ │ ├── Append.html │ │ │ │ │ ├── AppendG.html │ │ │ │ │ ├── AppendGAlignedSP.html │ │ │ │ │ ├── AppendM.CacheType.html │ │ │ │ │ ├── AppendM.html │ │ │ │ │ ├── AppendR.html │ │ │ │ │ ├── Binary.html │ │ │ │ │ ├── BinaryM.VectorType.html │ │ │ │ │ ├── BinaryM.html │ │ │ │ │ ├── BinaryScalar.html │ │ │ │ │ ├── BinaryUAggChain.html │ │ │ │ │ ├── CSVReBlock.html │ │ │ │ │ ├── CentralMoment.html │ │ │ │ │ ├── Checkpoint.html │ │ │ │ │ ├── CoVariance.html │ │ │ │ │ ├── Compression.CompressConfig.html │ │ │ │ │ ├── Compression.html │ │ │ │ │ ├── Ctable.OperationTypes.html │ │ │ │ │ ├── Ctable.html │ │ │ │ │ ├── CumulativeOffsetBinary.html │ │ │ │ │ ├── CumulativePartialAggregate.html │ │ │ │ │ ├── Data.html │ │ │ │ │ ├── DataGen.html │ │ │ │ │ ├── DeCompression.CompressConfig.html │ │ │ │ │ ├── DeCompression.html │ │ │ │ │ ├── DnnTransform.html │ │ │ │ │ ├── Federated.html │ │ │ │ │ ├── FunctionCallCP.html │ │ │ │ │ ├── GroupedAggregate.html │ │ │ │ │ ├── GroupedAggregateM.CacheType.html │ │ │ │ │ ├── GroupedAggregateM.html │ │ │ │ │ ├── LeftIndex.LixCacheType.html │ │ │ │ │ ├── LeftIndex.html │ │ │ │ │ ├── Local.html │ │ │ │ │ ├── Lop.SimpleInstType.html │ │ │ │ │ ├── Lop.Type.html │ │ │ │ │ ├── Lop.VisitStatus.html │ │ │ │ │ ├── Lop.html │ │ │ │ │ ├── LopProperties.html │ │ │ │ │ ├── LopsException.html │ │ │ │ │ ├── MMCJ.MMCJType.html │ │ │ │ │ ├── MMCJ.html │ │ │ │ │ ├── MMRJ.html │ │ │ │ │ ├── MMTSJ.MMTSJType.html │ │ │ │ │ ├── MMTSJ.html │ │ │ │ │ ├── MMZip.html │ │ │ │ │ ├── MapMult.CacheType.html │ │ │ │ │ ├── MapMult.html │ │ │ │ │ ├── MapMultChain.ChainType.html │ │ │ │ │ ├── MapMultChain.html │ │ │ │ │ ├── MatMultCP.html │ │ │ │ │ ├── Nary.html │ │ │ │ │ ├── OperatorOrderingUtils.html │ │ │ │ │ ├── OutputParameters.html │ │ │ │ │ ├── PMMJ.CacheType.html │ │ │ │ │ ├── PMMJ.html │ │ │ │ │ ├── PMapMult.html │ │ │ │ │ ├── ParameterizedBuiltin.html │ │ │ │ │ ├── PartialAggregate.html │ │ │ │ │ ├── PickByCount.OperationTypes.html │ │ │ │ │ ├── PickByCount.html │ │ │ │ │ ├── ReBlock.html │ │ │ │ │ ├── RightIndex.html │ │ │ │ │ ├── SortKeys.OperationTypes.html │ │ │ │ │ ├── SortKeys.html │ │ │ │ │ ├── SpoofFused.html │ │ │ │ │ ├── Sql.html │ │ │ │ │ ├── Ternary.html │ │ │ │ │ ├── TernaryAggregate.html │ │ │ │ │ ├── Transform.html │ │ │ │ │ ├── UAggOuterChain.html │ │ │ │ │ ├── Unary.html │ │ │ │ │ ├── UnaryCP.html │ │ │ │ │ ├── WeightedCrossEntropy.WCeMMType.html │ │ │ │ │ ├── WeightedCrossEntropy.html │ │ │ │ │ ├── WeightedCrossEntropyR.html │ │ │ │ │ ├── WeightedDivMM.WDivMMType.html │ │ │ │ │ ├── WeightedDivMM.html │ │ │ │ │ ├── WeightedDivMMR.html │ │ │ │ │ ├── WeightedSigmoid.WSigmoidType.html │ │ │ │ │ ├── WeightedSigmoid.html │ │ │ │ │ ├── WeightedSigmoidR.html │ │ │ │ │ ├── WeightedSquaredLoss.WeightsType.html │ │ │ │ │ ├── WeightedSquaredLoss.html │ │ │ │ │ ├── WeightedSquaredLossR.html │ │ │ │ │ ├── WeightedUnaryMM.WUMMType.html │ │ │ │ │ ├── WeightedUnaryMM.html │ │ │ │ │ └── WeightedUnaryMMR.html │ │ │ │ ├── compile │ │ │ │ │ ├── Dag.html │ │ │ │ │ ├── LopComparator.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── Dag.html │ │ │ │ │ │ └── LopComparator.html │ │ │ │ │ ├── linearization │ │ │ │ │ │ ├── IDagLinearizer.html │ │ │ │ │ │ ├── IDagLinearizerFactory.DagLinearizer.html │ │ │ │ │ │ ├── IDagLinearizerFactory.html │ │ │ │ │ │ ├── LinearizerBreadthFirst.html │ │ │ │ │ │ ├── LinearizerCostBased.html │ │ │ │ │ │ ├── LinearizerDepthFirst.html │ │ │ │ │ │ ├── LinearizerMaxParallelism.html │ │ │ │ │ │ ├── LinearizerMinIntermediates.html │ │ │ │ │ │ ├── LinearizerPipelineAware.html │ │ │ │ │ │ ├── LinearizerResourceAwareFast.html │ │ │ │ │ │ ├── LinearizerResourceAwareOptimal.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── IDagLinearizer.html │ │ │ │ │ │ │ ├── IDagLinearizerFactory.DagLinearizer.html │ │ │ │ │ │ │ ├── IDagLinearizerFactory.html │ │ │ │ │ │ │ ├── LinearizerBreadthFirst.html │ │ │ │ │ │ │ ├── LinearizerCostBased.html │ │ │ │ │ │ │ ├── LinearizerDepthFirst.html │ │ │ │ │ │ │ ├── LinearizerMaxParallelism.html │ │ │ │ │ │ │ ├── LinearizerMinIntermediates.html │ │ │ │ │ │ │ ├── LinearizerPipelineAware.html │ │ │ │ │ │ │ ├── LinearizerResourceAwareFast.html │ │ │ │ │ │ │ └── LinearizerResourceAwareOptimal.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ ├── package-use.html │ │ │ │ └── rewrite │ │ │ │ │ ├── LopRewriteRule.html │ │ │ │ │ ├── LopRewriter.html │ │ │ │ │ ├── RewriteAddBroadcastLop.html │ │ │ │ │ ├── RewriteAddChkpointInLoop.html │ │ │ │ │ ├── RewriteAddChkpointLop.html │ │ │ │ │ ├── RewriteAddGPUEvictLop.html │ │ │ │ │ ├── RewriteAddPrefetchLop.html │ │ │ │ │ ├── RewriteFixIDs.html │ │ │ │ │ ├── RewriteUpdateGPUPlacements.html │ │ │ │ │ ├── class-use │ │ │ │ │ ├── LopRewriteRule.html │ │ │ │ │ ├── LopRewriter.html │ │ │ │ │ ├── RewriteAddBroadcastLop.html │ │ │ │ │ ├── RewriteAddChkpointInLoop.html │ │ │ │ │ ├── RewriteAddChkpointLop.html │ │ │ │ │ ├── RewriteAddGPUEvictLop.html │ │ │ │ │ ├── RewriteAddPrefetchLop.html │ │ │ │ │ ├── RewriteFixIDs.html │ │ │ │ │ └── RewriteUpdateGPUPlacements.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── parser │ │ │ │ ├── AssignmentStatement.html │ │ │ │ ├── BinaryExpression.html │ │ │ │ ├── BooleanExpression.html │ │ │ │ ├── BooleanIdentifier.html │ │ │ │ ├── BuiltinConstant.html │ │ │ │ ├── BuiltinFunctionExpression.html │ │ │ │ ├── ConditionalPredicate.html │ │ │ │ ├── ConstIdentifier.html │ │ │ │ ├── DMLProgram.html │ │ │ │ ├── DMLTranslator.html │ │ │ │ ├── DataExpression.html │ │ │ │ ├── DataIdentifier.html │ │ │ │ ├── DoubleIdentifier.html │ │ │ │ ├── Expression.BinaryOp.html │ │ │ │ ├── Expression.BooleanOp.html │ │ │ │ ├── Expression.DataOp.html │ │ │ │ ├── Expression.FunctCallOp.html │ │ │ │ ├── Expression.RelationalOp.html │ │ │ │ ├── Expression.html │ │ │ │ ├── ExpressionList.html │ │ │ │ ├── ForStatement.html │ │ │ │ ├── ForStatementBlock.html │ │ │ │ ├── FunctionCallIdentifier.html │ │ │ │ ├── FunctionDictionary.html │ │ │ │ ├── FunctionStatement.html │ │ │ │ ├── FunctionStatementBlock.html │ │ │ │ ├── Identifier.html │ │ │ │ ├── IfStatement.html │ │ │ │ ├── IfStatementBlock.html │ │ │ │ ├── ImportStatement.html │ │ │ │ ├── IndexedIdentifier.html │ │ │ │ ├── IntIdentifier.html │ │ │ │ ├── IterablePredicate.html │ │ │ │ ├── LanguageException.LanguageErrorCodes.html │ │ │ │ ├── LanguageException.html │ │ │ │ ├── ListIdentifier.html │ │ │ │ ├── LiveVariableAnalysis.html │ │ │ │ ├── MultiAssignmentStatement.html │ │ │ │ ├── OutputStatement.html │ │ │ │ ├── ParForStatement.html │ │ │ │ ├── ParForStatementBlock.ResultVar.html │ │ │ │ ├── ParForStatementBlock.html │ │ │ │ ├── ParameterExpression.html │ │ │ │ ├── ParameterizedBuiltinFunctionExpression.html │ │ │ │ ├── ParseException.html │ │ │ │ ├── ParseInfo.html │ │ │ │ ├── ParserFactory.html │ │ │ │ ├── ParserWrapper.html │ │ │ │ ├── PathStatement.html │ │ │ │ ├── PrintStatement.PRINTTYPE.html │ │ │ │ ├── PrintStatement.html │ │ │ │ ├── RelationalExpression.html │ │ │ │ ├── Statement.FederatedPSScheme.html │ │ │ │ ├── Statement.PSCheckpointing.html │ │ │ │ ├── Statement.PSFrequency.html │ │ │ │ ├── Statement.PSModeType.html │ │ │ │ ├── Statement.PSRuntimeBalancing.html │ │ │ │ ├── Statement.PSScheme.html │ │ │ │ ├── Statement.PSUpdateType.html │ │ │ │ ├── Statement.html │ │ │ │ ├── StatementBlock.html │ │ │ │ ├── StringIdentifier.html │ │ │ │ ├── VariableSet.html │ │ │ │ ├── WhileStatement.html │ │ │ │ ├── WhileStatementBlock.html │ │ │ │ ├── class-use │ │ │ │ │ ├── AssignmentStatement.html │ │ │ │ │ ├── BinaryExpression.html │ │ │ │ │ ├── BooleanExpression.html │ │ │ │ │ ├── BooleanIdentifier.html │ │ │ │ │ ├── BuiltinConstant.html │ │ │ │ │ ├── BuiltinFunctionExpression.html │ │ │ │ │ ├── ConditionalPredicate.html │ │ │ │ │ ├── ConstIdentifier.html │ │ │ │ │ ├── DMLProgram.html │ │ │ │ │ ├── DMLTranslator.html │ │ │ │ │ ├── DataExpression.html │ │ │ │ │ ├── DataIdentifier.html │ │ │ │ │ ├── DoubleIdentifier.html │ │ │ │ │ ├── Expression.BinaryOp.html │ │ │ │ │ ├── Expression.BooleanOp.html │ │ │ │ │ ├── Expression.DataOp.html │ │ │ │ │ ├── Expression.FunctCallOp.html │ │ │ │ │ ├── Expression.RelationalOp.html │ │ │ │ │ ├── Expression.html │ │ │ │ │ ├── ExpressionList.html │ │ │ │ │ ├── ForStatement.html │ │ │ │ │ ├── ForStatementBlock.html │ │ │ │ │ ├── FunctionCallIdentifier.html │ │ │ │ │ ├── FunctionDictionary.html │ │ │ │ │ ├── FunctionStatement.html │ │ │ │ │ ├── FunctionStatementBlock.html │ │ │ │ │ ├── Identifier.html │ │ │ │ │ ├── IfStatement.html │ │ │ │ │ ├── IfStatementBlock.html │ │ │ │ │ ├── ImportStatement.html │ │ │ │ │ ├── IndexedIdentifier.html │ │ │ │ │ ├── IntIdentifier.html │ │ │ │ │ ├── IterablePredicate.html │ │ │ │ │ ├── LanguageException.LanguageErrorCodes.html │ │ │ │ │ ├── LanguageException.html │ │ │ │ │ ├── ListIdentifier.html │ │ │ │ │ ├── LiveVariableAnalysis.html │ │ │ │ │ ├── MultiAssignmentStatement.html │ │ │ │ │ ├── OutputStatement.html │ │ │ │ │ ├── ParForStatement.html │ │ │ │ │ ├── ParForStatementBlock.ResultVar.html │ │ │ │ │ ├── ParForStatementBlock.html │ │ │ │ │ ├── ParameterExpression.html │ │ │ │ │ ├── ParameterizedBuiltinFunctionExpression.html │ │ │ │ │ ├── ParseException.html │ │ │ │ │ ├── ParseInfo.html │ │ │ │ │ ├── ParserFactory.html │ │ │ │ │ ├── ParserWrapper.html │ │ │ │ │ ├── PathStatement.html │ │ │ │ │ ├── PrintStatement.PRINTTYPE.html │ │ │ │ │ ├── PrintStatement.html │ │ │ │ │ ├── RelationalExpression.html │ │ │ │ │ ├── Statement.FederatedPSScheme.html │ │ │ │ │ ├── Statement.PSCheckpointing.html │ │ │ │ │ ├── Statement.PSFrequency.html │ │ │ │ │ ├── Statement.PSModeType.html │ │ │ │ │ ├── Statement.PSRuntimeBalancing.html │ │ │ │ │ ├── Statement.PSScheme.html │ │ │ │ │ ├── Statement.PSUpdateType.html │ │ │ │ │ ├── Statement.html │ │ │ │ │ ├── StatementBlock.html │ │ │ │ │ ├── StringIdentifier.html │ │ │ │ │ ├── VariableSet.html │ │ │ │ │ ├── WhileStatement.html │ │ │ │ │ └── WhileStatementBlock.html │ │ │ │ ├── dml │ │ │ │ │ ├── CustomErrorListener.ParseIssue.html │ │ │ │ │ ├── CustomErrorListener.ParseIssueType.html │ │ │ │ │ ├── CustomErrorListener.html │ │ │ │ │ ├── DMLParserWrapper.html │ │ │ │ │ ├── DmlBaseListener.html │ │ │ │ │ ├── DmlLexer.html │ │ │ │ │ ├── DmlListener.html │ │ │ │ │ ├── DmlParser.AccumulatorAssignmentStatementContext.html │ │ │ │ │ ├── DmlParser.AddSubExpressionContext.html │ │ │ │ │ ├── DmlParser.AssignmentStatementContext.html │ │ │ │ │ ├── DmlParser.AtomicExpressionContext.html │ │ │ │ │ ├── DmlParser.BooleanAndExpressionContext.html │ │ │ │ │ ├── DmlParser.BooleanNotExpressionContext.html │ │ │ │ │ ├── DmlParser.BooleanOrExpressionContext.html │ │ │ │ │ ├── DmlParser.BuiltinFunctionExpressionContext.html │ │ │ │ │ ├── DmlParser.CommandlineParamExpressionContext.html │ │ │ │ │ ├── DmlParser.CommandlinePositionExpressionContext.html │ │ │ │ │ ├── DmlParser.ConstDoubleIdExpressionContext.html │ │ │ │ │ ├── DmlParser.ConstFalseExpressionContext.html │ │ │ │ │ ├── DmlParser.ConstIntIdExpressionContext.html │ │ │ │ │ ├── DmlParser.ConstStringIdExpressionContext.html │ │ │ │ │ ├── DmlParser.ConstTrueExpressionContext.html │ │ │ │ │ ├── DmlParser.DataIdExpressionContext.html │ │ │ │ │ ├── DmlParser.DataIdentifierContext.html │ │ │ │ │ ├── DmlParser.DataTypeContext.html │ │ │ │ │ ├── DmlParser.ExpressionContext.html │ │ │ │ │ ├── DmlParser.ExternalFunctionDefExpressionContext.html │ │ │ │ │ ├── DmlParser.ForStatementContext.html │ │ │ │ │ ├── DmlParser.FunctionCallAssignmentStatementContext.html │ │ │ │ │ ├── DmlParser.FunctionCallMultiAssignmentStatementContext.html │ │ │ │ │ ├── DmlParser.FunctionStatementContext.html │ │ │ │ │ ├── DmlParser.IfStatementContext.html │ │ │ │ │ ├── DmlParser.IfdefAssignmentStatementContext.html │ │ │ │ │ ├── DmlParser.ImportStatementContext.html │ │ │ │ │ ├── DmlParser.IndexedExpressionContext.html │ │ │ │ │ ├── DmlParser.InternalFunctionDefExpressionContext.html │ │ │ │ │ ├── DmlParser.IterablePredicateColonExpressionContext.html │ │ │ │ │ ├── DmlParser.IterablePredicateContext.html │ │ │ │ │ ├── DmlParser.IterablePredicateSeqExpressionContext.html │ │ │ │ │ ├── DmlParser.MatrixDataTypeCheckContext.html │ │ │ │ │ ├── DmlParser.MatrixMulExpressionContext.html │ │ │ │ │ ├── DmlParser.Ml_typeContext.html │ │ │ │ │ ├── DmlParser.ModIntDivExpressionContext.html │ │ │ │ │ ├── DmlParser.MultDivExpressionContext.html │ │ │ │ │ ├── DmlParser.MultiIdExpressionContext.html │ │ │ │ │ ├── DmlParser.ParForStatementContext.html │ │ │ │ │ ├── DmlParser.ParameterizedExpressionContext.html │ │ │ │ │ ├── DmlParser.PathStatementContext.html │ │ │ │ │ ├── DmlParser.PowerExpressionContext.html │ │ │ │ │ ├── DmlParser.ProgramrootContext.html │ │ │ │ │ ├── DmlParser.RelationalExpressionContext.html │ │ │ │ │ ├── DmlParser.SimpleDataIdentifierExpressionContext.html │ │ │ │ │ ├── DmlParser.StatementContext.html │ │ │ │ │ ├── DmlParser.StrictParameterizedExpressionContext.html │ │ │ │ │ ├── DmlParser.StrictParameterizedKeyValueStringContext.html │ │ │ │ │ ├── DmlParser.TypedArgAssignContext.html │ │ │ │ │ ├── DmlParser.TypedArgNoAssignContext.html │ │ │ │ │ ├── DmlParser.UnaryExpressionContext.html │ │ │ │ │ ├── DmlParser.ValueTypeContext.html │ │ │ │ │ ├── DmlParser.WhileStatementContext.html │ │ │ │ │ ├── DmlParser.html │ │ │ │ │ ├── DmlPreprocessor.html │ │ │ │ │ ├── DmlSyntacticValidator.ConvertedDMLSyntax.html │ │ │ │ │ ├── DmlSyntacticValidator.html │ │ │ │ │ ├── ExpressionInfo.html │ │ │ │ │ ├── StatementInfo.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── CustomErrorListener.ParseIssue.html │ │ │ │ │ │ ├── CustomErrorListener.ParseIssueType.html │ │ │ │ │ │ ├── CustomErrorListener.html │ │ │ │ │ │ ├── DMLParserWrapper.html │ │ │ │ │ │ ├── DmlBaseListener.html │ │ │ │ │ │ ├── DmlLexer.html │ │ │ │ │ │ ├── DmlListener.html │ │ │ │ │ │ ├── DmlParser.AccumulatorAssignmentStatementContext.html │ │ │ │ │ │ ├── DmlParser.AddSubExpressionContext.html │ │ │ │ │ │ ├── DmlParser.AssignmentStatementContext.html │ │ │ │ │ │ ├── DmlParser.AtomicExpressionContext.html │ │ │ │ │ │ ├── DmlParser.BooleanAndExpressionContext.html │ │ │ │ │ │ ├── DmlParser.BooleanNotExpressionContext.html │ │ │ │ │ │ ├── DmlParser.BooleanOrExpressionContext.html │ │ │ │ │ │ ├── DmlParser.BuiltinFunctionExpressionContext.html │ │ │ │ │ │ ├── DmlParser.CommandlineParamExpressionContext.html │ │ │ │ │ │ ├── DmlParser.CommandlinePositionExpressionContext.html │ │ │ │ │ │ ├── DmlParser.ConstDoubleIdExpressionContext.html │ │ │ │ │ │ ├── DmlParser.ConstFalseExpressionContext.html │ │ │ │ │ │ ├── DmlParser.ConstIntIdExpressionContext.html │ │ │ │ │ │ ├── DmlParser.ConstStringIdExpressionContext.html │ │ │ │ │ │ ├── DmlParser.ConstTrueExpressionContext.html │ │ │ │ │ │ ├── DmlParser.DataIdExpressionContext.html │ │ │ │ │ │ ├── DmlParser.DataIdentifierContext.html │ │ │ │ │ │ ├── DmlParser.DataTypeContext.html │ │ │ │ │ │ ├── DmlParser.ExpressionContext.html │ │ │ │ │ │ ├── DmlParser.ExternalFunctionDefExpressionContext.html │ │ │ │ │ │ ├── DmlParser.ForStatementContext.html │ │ │ │ │ │ ├── DmlParser.FunctionCallAssignmentStatementContext.html │ │ │ │ │ │ ├── DmlParser.FunctionCallMultiAssignmentStatementContext.html │ │ │ │ │ │ ├── DmlParser.FunctionStatementContext.html │ │ │ │ │ │ ├── DmlParser.IfStatementContext.html │ │ │ │ │ │ ├── DmlParser.IfdefAssignmentStatementContext.html │ │ │ │ │ │ ├── DmlParser.ImportStatementContext.html │ │ │ │ │ │ ├── DmlParser.IndexedExpressionContext.html │ │ │ │ │ │ ├── DmlParser.InternalFunctionDefExpressionContext.html │ │ │ │ │ │ ├── DmlParser.IterablePredicateColonExpressionContext.html │ │ │ │ │ │ ├── DmlParser.IterablePredicateContext.html │ │ │ │ │ │ ├── DmlParser.IterablePredicateSeqExpressionContext.html │ │ │ │ │ │ ├── DmlParser.MatrixDataTypeCheckContext.html │ │ │ │ │ │ ├── DmlParser.MatrixMulExpressionContext.html │ │ │ │ │ │ ├── DmlParser.Ml_typeContext.html │ │ │ │ │ │ ├── DmlParser.ModIntDivExpressionContext.html │ │ │ │ │ │ ├── DmlParser.MultDivExpressionContext.html │ │ │ │ │ │ ├── DmlParser.MultiIdExpressionContext.html │ │ │ │ │ │ ├── DmlParser.ParForStatementContext.html │ │ │ │ │ │ ├── DmlParser.ParameterizedExpressionContext.html │ │ │ │ │ │ ├── DmlParser.PathStatementContext.html │ │ │ │ │ │ ├── DmlParser.PowerExpressionContext.html │ │ │ │ │ │ ├── DmlParser.ProgramrootContext.html │ │ │ │ │ │ ├── DmlParser.RelationalExpressionContext.html │ │ │ │ │ │ ├── DmlParser.SimpleDataIdentifierExpressionContext.html │ │ │ │ │ │ ├── DmlParser.StatementContext.html │ │ │ │ │ │ ├── DmlParser.StrictParameterizedExpressionContext.html │ │ │ │ │ │ ├── DmlParser.StrictParameterizedKeyValueStringContext.html │ │ │ │ │ │ ├── DmlParser.TypedArgAssignContext.html │ │ │ │ │ │ ├── DmlParser.TypedArgNoAssignContext.html │ │ │ │ │ │ ├── DmlParser.UnaryExpressionContext.html │ │ │ │ │ │ ├── DmlParser.ValueTypeContext.html │ │ │ │ │ │ ├── DmlParser.WhileStatementContext.html │ │ │ │ │ │ ├── DmlParser.html │ │ │ │ │ │ ├── DmlPreprocessor.html │ │ │ │ │ │ ├── DmlSyntacticValidator.ConvertedDMLSyntax.html │ │ │ │ │ │ ├── DmlSyntacticValidator.html │ │ │ │ │ │ ├── ExpressionInfo.html │ │ │ │ │ │ └── StatementInfo.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ │ ├── resource │ │ │ │ ├── CloudInstance.html │ │ │ │ ├── CloudUtils.CloudProvider.html │ │ │ │ ├── CloudUtils.InstanceFamily.html │ │ │ │ ├── CloudUtils.InstanceSize.html │ │ │ │ ├── CloudUtils.html │ │ │ │ ├── ResourceCompiler.html │ │ │ │ ├── ResourceOptimizer.html │ │ │ │ ├── class-use │ │ │ │ │ ├── CloudInstance.html │ │ │ │ │ ├── CloudUtils.CloudProvider.html │ │ │ │ │ ├── CloudUtils.InstanceFamily.html │ │ │ │ │ ├── CloudUtils.InstanceSize.html │ │ │ │ │ ├── CloudUtils.html │ │ │ │ │ ├── ResourceCompiler.html │ │ │ │ │ └── ResourceOptimizer.html │ │ │ │ ├── cost │ │ │ │ │ ├── CPCostUtils.html │ │ │ │ │ ├── CostEstimationException.html │ │ │ │ │ ├── CostEstimator.html │ │ │ │ │ ├── IOCostUtils.IOMetrics.html │ │ │ │ │ ├── IOCostUtils.html │ │ │ │ │ ├── RDDStats.html │ │ │ │ │ ├── SparkCostUtils.html │ │ │ │ │ ├── VarStats.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── CPCostUtils.html │ │ │ │ │ │ ├── CostEstimationException.html │ │ │ │ │ │ ├── CostEstimator.html │ │ │ │ │ │ ├── IOCostUtils.IOMetrics.html │ │ │ │ │ │ ├── IOCostUtils.html │ │ │ │ │ │ ├── RDDStats.html │ │ │ │ │ │ ├── SparkCostUtils.html │ │ │ │ │ │ └── VarStats.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── enumeration │ │ │ │ │ ├── EnumerationUtils.ConfigurationPoint.html │ │ │ │ │ ├── EnumerationUtils.InstanceSearchSpace.html │ │ │ │ │ ├── EnumerationUtils.SolutionPoint.html │ │ │ │ │ ├── EnumerationUtils.html │ │ │ │ │ ├── Enumerator.Builder.html │ │ │ │ │ ├── Enumerator.EnumerationStrategy.html │ │ │ │ │ ├── Enumerator.OptimizationStrategy.html │ │ │ │ │ ├── Enumerator.html │ │ │ │ │ ├── GridBasedEnumerator.html │ │ │ │ │ ├── InterestBasedEnumerator.html │ │ │ │ │ ├── PruneBasedEnumerator.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── EnumerationUtils.ConfigurationPoint.html │ │ │ │ │ │ ├── EnumerationUtils.InstanceSearchSpace.html │ │ │ │ │ │ ├── EnumerationUtils.SolutionPoint.html │ │ │ │ │ │ ├── EnumerationUtils.html │ │ │ │ │ │ ├── Enumerator.Builder.html │ │ │ │ │ │ ├── Enumerator.EnumerationStrategy.html │ │ │ │ │ │ ├── Enumerator.OptimizationStrategy.html │ │ │ │ │ │ ├── Enumerator.html │ │ │ │ │ │ ├── GridBasedEnumerator.html │ │ │ │ │ │ ├── InterestBasedEnumerator.html │ │ │ │ │ │ └── PruneBasedEnumerator.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ │ ├── runtime │ │ │ │ ├── DMLRuntimeException.html │ │ │ │ ├── DMLScriptException.html │ │ │ │ ├── class-use │ │ │ │ │ ├── DMLRuntimeException.html │ │ │ │ │ └── DMLScriptException.html │ │ │ │ ├── codegen │ │ │ │ │ ├── ByteClassLoader.html │ │ │ │ │ ├── CodegenUtils.html │ │ │ │ │ ├── LibSpoofPrimitives.html │ │ │ │ │ ├── SpoofCUDACellwise.html │ │ │ │ │ ├── SpoofCUDAOperator.PrecisionProxy.html │ │ │ │ │ ├── SpoofCUDAOperator.html │ │ │ │ │ ├── SpoofCUDARowwise.html │ │ │ │ │ ├── SpoofCellwise.AggOp.html │ │ │ │ │ ├── SpoofCellwise.CellType.html │ │ │ │ │ ├── SpoofCellwise.html │ │ │ │ │ ├── SpoofMultiAggregate.html │ │ │ │ │ ├── SpoofOperator.SideInput.html │ │ │ │ │ ├── SpoofOperator.SideInputSparseCell.html │ │ │ │ │ ├── SpoofOperator.SideInputSparseRow.html │ │ │ │ │ ├── SpoofOperator.html │ │ │ │ │ ├── SpoofOuterProduct.OutProdType.html │ │ │ │ │ ├── SpoofOuterProduct.html │ │ │ │ │ ├── SpoofRowwise.RowType.html │ │ │ │ │ ├── SpoofRowwise.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── ByteClassLoader.html │ │ │ │ │ │ ├── CodegenUtils.html │ │ │ │ │ │ ├── LibSpoofPrimitives.html │ │ │ │ │ │ ├── SpoofCUDACellwise.html │ │ │ │ │ │ ├── SpoofCUDAOperator.PrecisionProxy.html │ │ │ │ │ │ ├── SpoofCUDAOperator.html │ │ │ │ │ │ ├── SpoofCUDARowwise.html │ │ │ │ │ │ ├── SpoofCellwise.AggOp.html │ │ │ │ │ │ ├── SpoofCellwise.CellType.html │ │ │ │ │ │ ├── SpoofCellwise.html │ │ │ │ │ │ ├── SpoofMultiAggregate.html │ │ │ │ │ │ ├── SpoofOperator.SideInput.html │ │ │ │ │ │ ├── SpoofOperator.SideInputSparseCell.html │ │ │ │ │ │ ├── SpoofOperator.SideInputSparseRow.html │ │ │ │ │ │ ├── SpoofOperator.html │ │ │ │ │ │ ├── SpoofOuterProduct.OutProdType.html │ │ │ │ │ │ ├── SpoofOuterProduct.html │ │ │ │ │ │ ├── SpoofRowwise.RowType.html │ │ │ │ │ │ └── SpoofRowwise.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── compress │ │ │ │ │ ├── CompressedMatrixBlock.html │ │ │ │ │ ├── CompressedMatrixBlockFactory.html │ │ │ │ │ ├── CompressionSettings.html │ │ │ │ │ ├── CompressionSettingsBuilder.html │ │ │ │ │ ├── CompressionStatistics.html │ │ │ │ │ ├── DMLCompressionException.html │ │ │ │ │ ├── SingletonLookupHashMap.html │ │ │ │ │ ├── bitmap │ │ │ │ │ │ ├── ABitmap.html │ │ │ │ │ │ ├── Bitmap.html │ │ │ │ │ │ ├── BitmapEncoder.html │ │ │ │ │ │ ├── MultiColBitmap.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── ABitmap.html │ │ │ │ │ │ │ ├── Bitmap.html │ │ │ │ │ │ │ ├── BitmapEncoder.html │ │ │ │ │ │ │ └── MultiColBitmap.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── CompressedMatrixBlock.html │ │ │ │ │ │ ├── CompressedMatrixBlockFactory.html │ │ │ │ │ │ ├── CompressionSettings.html │ │ │ │ │ │ ├── CompressionSettingsBuilder.html │ │ │ │ │ │ ├── CompressionStatistics.html │ │ │ │ │ │ ├── DMLCompressionException.html │ │ │ │ │ │ └── SingletonLookupHashMap.html │ │ │ │ │ ├── cocode │ │ │ │ │ │ ├── AColumnCoCoder.html │ │ │ │ │ │ ├── CoCodeBinPacking.html │ │ │ │ │ │ ├── CoCodeGreedy.html │ │ │ │ │ │ ├── CoCodeHybrid.html │ │ │ │ │ │ ├── CoCodePriorityQue.html │ │ │ │ │ │ ├── CoCodeStatic.html │ │ │ │ │ │ ├── CoCoderFactory.PartitionerType.html │ │ │ │ │ │ ├── CoCoderFactory.html │ │ │ │ │ │ ├── ColIndexes.html │ │ │ │ │ │ ├── Memorizer.html │ │ │ │ │ │ ├── MemorizerV2.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── AColumnCoCoder.html │ │ │ │ │ │ │ ├── CoCodeBinPacking.html │ │ │ │ │ │ │ ├── CoCodeGreedy.html │ │ │ │ │ │ │ ├── CoCodeHybrid.html │ │ │ │ │ │ │ ├── CoCodePriorityQue.html │ │ │ │ │ │ │ ├── CoCodeStatic.html │ │ │ │ │ │ │ ├── CoCoderFactory.PartitionerType.html │ │ │ │ │ │ │ ├── CoCoderFactory.html │ │ │ │ │ │ │ ├── ColIndexes.html │ │ │ │ │ │ │ ├── Memorizer.html │ │ │ │ │ │ │ └── MemorizerV2.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── colgroup │ │ │ │ │ │ ├── AColGroup.CompressionType.html │ │ │ │ │ │ ├── AColGroup.html │ │ │ │ │ │ ├── AColGroupCompressed.html │ │ │ │ │ │ ├── AColGroupOffset.html │ │ │ │ │ │ ├── AColGroupValue.html │ │ │ │ │ │ ├── ADictBasedColGroup.html │ │ │ │ │ │ ├── AMorphingMMColGroup.html │ │ │ │ │ │ ├── AOffsetsGroup.html │ │ │ │ │ │ ├── APreAgg.html │ │ │ │ │ │ ├── ASDC.html │ │ │ │ │ │ ├── ASDCZero.html │ │ │ │ │ │ ├── ColGroupConst.html │ │ │ │ │ │ ├── ColGroupDDC.html │ │ │ │ │ │ ├── ColGroupDDCFOR.html │ │ │ │ │ │ ├── ColGroupDeltaDDC.html │ │ │ │ │ │ ├── ColGroupEmpty.html │ │ │ │ │ │ ├── ColGroupFactory.html │ │ │ │ │ │ ├── ColGroupIO.html │ │ │ │ │ │ ├── ColGroupLinearFunctional.html │ │ │ │ │ │ ├── ColGroupOLE.html │ │ │ │ │ │ ├── ColGroupRLE.html │ │ │ │ │ │ ├── ColGroupSDC.html │ │ │ │ │ │ ├── ColGroupSDCFOR.html │ │ │ │ │ │ ├── ColGroupSDCSingle.html │ │ │ │ │ │ ├── ColGroupSDCSingleZeros.html │ │ │ │ │ │ ├── ColGroupSDCZeros.html │ │ │ │ │ │ ├── ColGroupSizes.html │ │ │ │ │ │ ├── ColGroupUncompressed.html │ │ │ │ │ │ ├── ColGroupUncompressedArray.html │ │ │ │ │ │ ├── ColGroupUtils.P.html │ │ │ │ │ │ ├── ColGroupUtils.html │ │ │ │ │ │ ├── IContainADictionary.html │ │ │ │ │ │ ├── IContainDefaultTuple.html │ │ │ │ │ │ ├── IFrameOfReferenceGroup.html │ │ │ │ │ │ ├── IMapToDataGroup.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── AColGroup.CompressionType.html │ │ │ │ │ │ │ ├── AColGroup.html │ │ │ │ │ │ │ ├── AColGroupCompressed.html │ │ │ │ │ │ │ ├── AColGroupOffset.html │ │ │ │ │ │ │ ├── AColGroupValue.html │ │ │ │ │ │ │ ├── ADictBasedColGroup.html │ │ │ │ │ │ │ ├── AMorphingMMColGroup.html │ │ │ │ │ │ │ ├── AOffsetsGroup.html │ │ │ │ │ │ │ ├── APreAgg.html │ │ │ │ │ │ │ ├── ASDC.html │ │ │ │ │ │ │ ├── ASDCZero.html │ │ │ │ │ │ │ ├── ColGroupConst.html │ │ │ │ │ │ │ ├── ColGroupDDC.html │ │ │ │ │ │ │ ├── ColGroupDDCFOR.html │ │ │ │ │ │ │ ├── ColGroupDeltaDDC.html │ │ │ │ │ │ │ ├── ColGroupEmpty.html │ │ │ │ │ │ │ ├── ColGroupFactory.html │ │ │ │ │ │ │ ├── ColGroupIO.html │ │ │ │ │ │ │ ├── ColGroupLinearFunctional.html │ │ │ │ │ │ │ ├── ColGroupOLE.html │ │ │ │ │ │ │ ├── ColGroupRLE.html │ │ │ │ │ │ │ ├── ColGroupSDC.html │ │ │ │ │ │ │ ├── ColGroupSDCFOR.html │ │ │ │ │ │ │ ├── ColGroupSDCSingle.html │ │ │ │ │ │ │ ├── ColGroupSDCSingleZeros.html │ │ │ │ │ │ │ ├── ColGroupSDCZeros.html │ │ │ │ │ │ │ ├── ColGroupSizes.html │ │ │ │ │ │ │ ├── ColGroupUncompressed.html │ │ │ │ │ │ │ ├── ColGroupUncompressedArray.html │ │ │ │ │ │ │ ├── ColGroupUtils.P.html │ │ │ │ │ │ │ ├── ColGroupUtils.html │ │ │ │ │ │ │ ├── IContainADictionary.html │ │ │ │ │ │ │ ├── IContainDefaultTuple.html │ │ │ │ │ │ │ ├── IFrameOfReferenceGroup.html │ │ │ │ │ │ │ └── IMapToDataGroup.html │ │ │ │ │ │ ├── dictionary │ │ │ │ │ │ │ ├── ACachingMBDictionary.html │ │ │ │ │ │ │ ├── ADictionary.html │ │ │ │ │ │ │ ├── AIdentityDictionary.html │ │ │ │ │ │ │ ├── DeltaDictionary.html │ │ │ │ │ │ │ ├── DictLibMatrixMult.html │ │ │ │ │ │ │ ├── Dictionary.html │ │ │ │ │ │ │ ├── DictionaryFactory.Type.html │ │ │ │ │ │ │ ├── DictionaryFactory.html │ │ │ │ │ │ │ ├── IDictionary.DictType.html │ │ │ │ │ │ │ ├── IDictionary.html │ │ │ │ │ │ │ ├── IdentityDictionary.html │ │ │ │ │ │ │ ├── IdentityDictionarySlice.html │ │ │ │ │ │ │ ├── MatrixBlockDictionary.html │ │ │ │ │ │ │ ├── PlaceHolderDict.html │ │ │ │ │ │ │ ├── QDictionary.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ ├── ACachingMBDictionary.html │ │ │ │ │ │ │ │ ├── ADictionary.html │ │ │ │ │ │ │ │ ├── AIdentityDictionary.html │ │ │ │ │ │ │ │ ├── DeltaDictionary.html │ │ │ │ │ │ │ │ ├── DictLibMatrixMult.html │ │ │ │ │ │ │ │ ├── Dictionary.html │ │ │ │ │ │ │ │ ├── DictionaryFactory.Type.html │ │ │ │ │ │ │ │ ├── DictionaryFactory.html │ │ │ │ │ │ │ │ ├── IDictionary.DictType.html │ │ │ │ │ │ │ │ ├── IDictionary.html │ │ │ │ │ │ │ │ ├── IdentityDictionary.html │ │ │ │ │ │ │ │ ├── IdentityDictionarySlice.html │ │ │ │ │ │ │ │ ├── MatrixBlockDictionary.html │ │ │ │ │ │ │ │ ├── PlaceHolderDict.html │ │ │ │ │ │ │ │ └── QDictionary.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── functional │ │ │ │ │ │ │ ├── LinearRegression.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ └── LinearRegression.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── indexes │ │ │ │ │ │ │ ├── AColIndex.html │ │ │ │ │ │ │ ├── ArrayIndex.html │ │ │ │ │ │ │ ├── ColIndexFactory.html │ │ │ │ │ │ │ ├── CombinedIndex.html │ │ │ │ │ │ │ ├── IColIndex.ColIndexType.html │ │ │ │ │ │ │ ├── IColIndex.SliceResult.html │ │ │ │ │ │ │ ├── IColIndex.html │ │ │ │ │ │ │ ├── IIterate.html │ │ │ │ │ │ │ ├── RangeIndex.html │ │ │ │ │ │ │ ├── SingleIndex.html │ │ │ │ │ │ │ ├── TwoIndex.html │ │ │ │ │ │ │ ├── TwoRangesIndex.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ ├── AColIndex.html │ │ │ │ │ │ │ │ ├── ArrayIndex.html │ │ │ │ │ │ │ │ ├── ColIndexFactory.html │ │ │ │ │ │ │ │ ├── CombinedIndex.html │ │ │ │ │ │ │ │ ├── IColIndex.ColIndexType.html │ │ │ │ │ │ │ │ ├── IColIndex.SliceResult.html │ │ │ │ │ │ │ │ ├── IColIndex.html │ │ │ │ │ │ │ │ ├── IIterate.html │ │ │ │ │ │ │ │ ├── RangeIndex.html │ │ │ │ │ │ │ │ ├── SingleIndex.html │ │ │ │ │ │ │ │ ├── TwoIndex.html │ │ │ │ │ │ │ │ └── TwoRangesIndex.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── insertionsort │ │ │ │ │ │ │ ├── AInsertionSorter.html │ │ │ │ │ │ │ ├── InsertionSorterFactory.SORT_TYPE.html │ │ │ │ │ │ │ ├── InsertionSorterFactory.html │ │ │ │ │ │ │ ├── MaterializeSort.html │ │ │ │ │ │ │ ├── MergeSort.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ ├── AInsertionSorter.html │ │ │ │ │ │ │ │ ├── InsertionSorterFactory.SORT_TYPE.html │ │ │ │ │ │ │ │ ├── InsertionSorterFactory.html │ │ │ │ │ │ │ │ ├── MaterializeSort.html │ │ │ │ │ │ │ │ └── MergeSort.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── mapping │ │ │ │ │ │ │ ├── AMapToData.html │ │ │ │ │ │ │ ├── MapToBit.html │ │ │ │ │ │ │ ├── MapToByte.html │ │ │ │ │ │ │ ├── MapToChar.html │ │ │ │ │ │ │ ├── MapToCharPByte.html │ │ │ │ │ │ │ ├── MapToFactory.MAP_TYPE.html │ │ │ │ │ │ │ ├── MapToFactory.html │ │ │ │ │ │ │ ├── MapToInt.html │ │ │ │ │ │ │ ├── MapToUByte.html │ │ │ │ │ │ │ ├── MapToZero.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ ├── AMapToData.html │ │ │ │ │ │ │ │ ├── MapToBit.html │ │ │ │ │ │ │ │ ├── MapToByte.html │ │ │ │ │ │ │ │ ├── MapToChar.html │ │ │ │ │ │ │ │ ├── MapToCharPByte.html │ │ │ │ │ │ │ │ ├── MapToFactory.MAP_TYPE.html │ │ │ │ │ │ │ │ ├── MapToFactory.html │ │ │ │ │ │ │ │ ├── MapToInt.html │ │ │ │ │ │ │ │ ├── MapToUByte.html │ │ │ │ │ │ │ │ └── MapToZero.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── offset │ │ │ │ │ │ │ ├── AIterator.html │ │ │ │ │ │ │ ├── AOffset.OffsetSliceInfo.html │ │ │ │ │ │ │ ├── AOffset.html │ │ │ │ │ │ │ ├── AOffsetByte.html │ │ │ │ │ │ │ ├── AOffsetIterator.html │ │ │ │ │ │ │ ├── ISliceOffset.html │ │ │ │ │ │ │ ├── OffsetByte.html │ │ │ │ │ │ │ ├── OffsetByteNZ.html │ │ │ │ │ │ │ ├── OffsetByteUNZ.html │ │ │ │ │ │ │ ├── OffsetChar.html │ │ │ │ │ │ │ ├── OffsetEmpty.html │ │ │ │ │ │ │ ├── OffsetFactory.OFF_TYPE.html │ │ │ │ │ │ │ ├── OffsetFactory.OFF_TYPE_SPECIALIZATIONS.html │ │ │ │ │ │ │ ├── OffsetFactory.html │ │ │ │ │ │ │ ├── OffsetSingle.html │ │ │ │ │ │ │ ├── OffsetTwo.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ ├── AIterator.html │ │ │ │ │ │ │ │ ├── AOffset.OffsetSliceInfo.html │ │ │ │ │ │ │ │ ├── AOffset.html │ │ │ │ │ │ │ │ ├── AOffsetByte.html │ │ │ │ │ │ │ │ ├── AOffsetIterator.html │ │ │ │ │ │ │ │ ├── ISliceOffset.html │ │ │ │ │ │ │ │ ├── OffsetByte.html │ │ │ │ │ │ │ │ ├── OffsetByteNZ.html │ │ │ │ │ │ │ │ ├── OffsetByteUNZ.html │ │ │ │ │ │ │ │ ├── OffsetChar.html │ │ │ │ │ │ │ │ ├── OffsetEmpty.html │ │ │ │ │ │ │ │ ├── OffsetFactory.OFF_TYPE.html │ │ │ │ │ │ │ │ ├── OffsetFactory.OFF_TYPE_SPECIALIZATIONS.html │ │ │ │ │ │ │ │ ├── OffsetFactory.html │ │ │ │ │ │ │ │ ├── OffsetSingle.html │ │ │ │ │ │ │ │ └── OffsetTwo.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ ├── package-use.html │ │ │ │ │ │ └── scheme │ │ │ │ │ │ │ ├── ACLAScheme.html │ │ │ │ │ │ │ ├── CompressionScheme.html │ │ │ │ │ │ │ ├── ConstScheme.html │ │ │ │ │ │ │ ├── DDCScheme.html │ │ │ │ │ │ │ ├── DDCSchemeMC.html │ │ │ │ │ │ │ ├── DDCSchemeSC.html │ │ │ │ │ │ │ ├── EmptyScheme.html │ │ │ │ │ │ │ ├── ICLAScheme.html │ │ │ │ │ │ │ ├── RLEScheme.html │ │ │ │ │ │ │ ├── SDCScheme.html │ │ │ │ │ │ │ ├── SDCSchemeMC.html │ │ │ │ │ │ │ ├── SDCSchemeSC.html │ │ │ │ │ │ │ ├── SchemeFactory.html │ │ │ │ │ │ │ ├── UncompressedScheme.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── ACLAScheme.html │ │ │ │ │ │ │ ├── CompressionScheme.html │ │ │ │ │ │ │ ├── ConstScheme.html │ │ │ │ │ │ │ ├── DDCScheme.html │ │ │ │ │ │ │ ├── DDCSchemeMC.html │ │ │ │ │ │ │ ├── DDCSchemeSC.html │ │ │ │ │ │ │ ├── EmptyScheme.html │ │ │ │ │ │ │ ├── ICLAScheme.html │ │ │ │ │ │ │ ├── RLEScheme.html │ │ │ │ │ │ │ ├── SDCScheme.html │ │ │ │ │ │ │ ├── SDCSchemeMC.html │ │ │ │ │ │ │ ├── SDCSchemeSC.html │ │ │ │ │ │ │ ├── SchemeFactory.html │ │ │ │ │ │ │ └── UncompressedScheme.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── cost │ │ │ │ │ │ ├── ACostEstimate.html │ │ │ │ │ │ ├── ComputationCostEstimator.html │ │ │ │ │ │ ├── CostEstimatorBuilder.html │ │ │ │ │ │ ├── CostEstimatorFactory.CostType.html │ │ │ │ │ │ ├── CostEstimatorFactory.html │ │ │ │ │ │ ├── DistinctCostEstimator.html │ │ │ │ │ │ ├── HybridCostEstimator.html │ │ │ │ │ │ ├── InstructionTypeCounter.html │ │ │ │ │ │ ├── MemoryCostEstimator.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── ACostEstimate.html │ │ │ │ │ │ │ ├── ComputationCostEstimator.html │ │ │ │ │ │ │ ├── CostEstimatorBuilder.html │ │ │ │ │ │ │ ├── CostEstimatorFactory.CostType.html │ │ │ │ │ │ │ ├── CostEstimatorFactory.html │ │ │ │ │ │ │ ├── DistinctCostEstimator.html │ │ │ │ │ │ │ ├── HybridCostEstimator.html │ │ │ │ │ │ │ ├── InstructionTypeCounter.html │ │ │ │ │ │ │ └── MemoryCostEstimator.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── estim │ │ │ │ │ │ ├── AComEst.html │ │ │ │ │ │ ├── ComEstCompressed.html │ │ │ │ │ │ ├── ComEstCompressedSample.html │ │ │ │ │ │ ├── ComEstExact.html │ │ │ │ │ │ ├── ComEstFactory.html │ │ │ │ │ │ ├── ComEstSample.html │ │ │ │ │ │ ├── CompressedSizeInfo.html │ │ │ │ │ │ ├── CompressedSizeInfoColGroup.html │ │ │ │ │ │ ├── EstimationFactors.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── AComEst.html │ │ │ │ │ │ │ ├── ComEstCompressed.html │ │ │ │ │ │ │ ├── ComEstCompressedSample.html │ │ │ │ │ │ │ ├── ComEstExact.html │ │ │ │ │ │ │ ├── ComEstFactory.html │ │ │ │ │ │ │ ├── ComEstSample.html │ │ │ │ │ │ │ ├── CompressedSizeInfo.html │ │ │ │ │ │ │ ├── CompressedSizeInfoColGroup.html │ │ │ │ │ │ │ └── EstimationFactors.html │ │ │ │ │ │ ├── encoding │ │ │ │ │ │ │ ├── AEncode.html │ │ │ │ │ │ │ ├── ConstEncoding.html │ │ │ │ │ │ │ ├── DenseEncoding.html │ │ │ │ │ │ │ ├── EmptyEncoding.html │ │ │ │ │ │ │ ├── EncodingFactory.html │ │ │ │ │ │ │ ├── IEncode.html │ │ │ │ │ │ │ ├── SparseEncoding.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ ├── AEncode.html │ │ │ │ │ │ │ │ ├── ConstEncoding.html │ │ │ │ │ │ │ │ ├── DenseEncoding.html │ │ │ │ │ │ │ │ ├── EmptyEncoding.html │ │ │ │ │ │ │ │ ├── EncodingFactory.html │ │ │ │ │ │ │ │ ├── IEncode.html │ │ │ │ │ │ │ │ └── SparseEncoding.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ ├── package-use.html │ │ │ │ │ │ └── sample │ │ │ │ │ │ │ ├── HassAndStokes.MethodOfMomentsFunction.html │ │ │ │ │ │ │ ├── HassAndStokes.html │ │ │ │ │ │ │ ├── SampleEstimatorFactory.EstimationType.html │ │ │ │ │ │ │ ├── SampleEstimatorFactory.html │ │ │ │ │ │ │ ├── ShlosserEstimator.html │ │ │ │ │ │ │ ├── ShlosserJackknifeEstimator.CriticalValue.html │ │ │ │ │ │ │ ├── ShlosserJackknifeEstimator.html │ │ │ │ │ │ │ ├── SmoothedJackknifeEstimator.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── HassAndStokes.MethodOfMomentsFunction.html │ │ │ │ │ │ │ ├── HassAndStokes.html │ │ │ │ │ │ │ ├── SampleEstimatorFactory.EstimationType.html │ │ │ │ │ │ │ ├── SampleEstimatorFactory.html │ │ │ │ │ │ │ ├── ShlosserEstimator.html │ │ │ │ │ │ │ ├── ShlosserJackknifeEstimator.CriticalValue.html │ │ │ │ │ │ │ ├── ShlosserJackknifeEstimator.html │ │ │ │ │ │ │ └── SmoothedJackknifeEstimator.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── io │ │ │ │ │ │ ├── CompressUnwrap.html │ │ │ │ │ │ ├── CompressWrap.html │ │ │ │ │ │ ├── CompressedWriteBlock.html │ │ │ │ │ │ ├── DictWritable.K.html │ │ │ │ │ │ ├── DictWritable.html │ │ │ │ │ │ ├── ReaderCompressed.html │ │ │ │ │ │ ├── ReaderSparkCompressed.html │ │ │ │ │ │ ├── WriterCompressed.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── CompressUnwrap.html │ │ │ │ │ │ │ ├── CompressWrap.html │ │ │ │ │ │ │ ├── CompressedWriteBlock.html │ │ │ │ │ │ │ ├── DictWritable.K.html │ │ │ │ │ │ │ ├── DictWritable.html │ │ │ │ │ │ │ ├── ReaderCompressed.html │ │ │ │ │ │ │ ├── ReaderSparkCompressed.html │ │ │ │ │ │ │ └── WriterCompressed.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── CLALibAggTernaryOp.html │ │ │ │ │ │ ├── CLALibBinCompress.html │ │ │ │ │ │ ├── CLALibBinaryCellOp.html │ │ │ │ │ │ ├── CLALibCBind.html │ │ │ │ │ │ ├── CLALibCMOps.html │ │ │ │ │ │ ├── CLALibCombineGroups.html │ │ │ │ │ │ ├── CLALibCompAgg.html │ │ │ │ │ │ ├── CLALibDecompress.html │ │ │ │ │ │ ├── CLALibLeftMultBy.html │ │ │ │ │ │ ├── CLALibMMChain.html │ │ │ │ │ │ ├── CLALibMatrixMult.html │ │ │ │ │ │ ├── CLALibMerge.html │ │ │ │ │ │ ├── CLALibReorg.html │ │ │ │ │ │ ├── CLALibReplace.html │ │ │ │ │ │ ├── CLALibReshape.html │ │ │ │ │ │ ├── CLALibRexpand.html │ │ │ │ │ │ ├── CLALibRightMultBy.html │ │ │ │ │ │ ├── CLALibScalar.html │ │ │ │ │ │ ├── CLALibScheme.html │ │ │ │ │ │ ├── CLALibSelectionMult.html │ │ │ │ │ │ ├── CLALibSeparator.SeparatedGroups.html │ │ │ │ │ │ ├── CLALibSeparator.html │ │ │ │ │ │ ├── CLALibSlice.html │ │ │ │ │ │ ├── CLALibSquash.html │ │ │ │ │ │ ├── CLALibStack.html │ │ │ │ │ │ ├── CLALibTSMM.html │ │ │ │ │ │ ├── CLALibTernaryOp.html │ │ │ │ │ │ ├── CLALibUnary.html │ │ │ │ │ │ ├── CLALibUtils.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── CLALibAggTernaryOp.html │ │ │ │ │ │ │ ├── CLALibBinCompress.html │ │ │ │ │ │ │ ├── CLALibBinaryCellOp.html │ │ │ │ │ │ │ ├── CLALibCBind.html │ │ │ │ │ │ │ ├── CLALibCMOps.html │ │ │ │ │ │ │ ├── CLALibCombineGroups.html │ │ │ │ │ │ │ ├── CLALibCompAgg.html │ │ │ │ │ │ │ ├── CLALibDecompress.html │ │ │ │ │ │ │ ├── CLALibLeftMultBy.html │ │ │ │ │ │ │ ├── CLALibMMChain.html │ │ │ │ │ │ │ ├── CLALibMatrixMult.html │ │ │ │ │ │ │ ├── CLALibMerge.html │ │ │ │ │ │ │ ├── CLALibReorg.html │ │ │ │ │ │ │ ├── CLALibReplace.html │ │ │ │ │ │ │ ├── CLALibReshape.html │ │ │ │ │ │ │ ├── CLALibRexpand.html │ │ │ │ │ │ │ ├── CLALibRightMultBy.html │ │ │ │ │ │ │ ├── CLALibScalar.html │ │ │ │ │ │ │ ├── CLALibScheme.html │ │ │ │ │ │ │ ├── CLALibSelectionMult.html │ │ │ │ │ │ │ ├── CLALibSeparator.SeparatedGroups.html │ │ │ │ │ │ │ ├── CLALibSeparator.html │ │ │ │ │ │ │ ├── CLALibSlice.html │ │ │ │ │ │ │ ├── CLALibSquash.html │ │ │ │ │ │ │ ├── CLALibStack.html │ │ │ │ │ │ │ ├── CLALibTSMM.html │ │ │ │ │ │ │ ├── CLALibTernaryOp.html │ │ │ │ │ │ │ ├── CLALibUnary.html │ │ │ │ │ │ │ └── CLALibUtils.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ ├── package-use.html │ │ │ │ │ ├── plan │ │ │ │ │ │ ├── CompressionPlanFactory.html │ │ │ │ │ │ ├── IPlanEncode.html │ │ │ │ │ │ ├── NaivePlanEncode.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── CompressionPlanFactory.html │ │ │ │ │ │ │ ├── IPlanEncode.html │ │ │ │ │ │ │ └── NaivePlanEncode.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── readers │ │ │ │ │ │ ├── ReaderColumnSelection.html │ │ │ │ │ │ ├── ReaderColumnSelectionDenseMultiBlock.html │ │ │ │ │ │ ├── ReaderColumnSelectionDenseMultiBlockTransposed.html │ │ │ │ │ │ ├── ReaderColumnSelectionDenseSingleBlock.html │ │ │ │ │ │ ├── ReaderColumnSelectionDenseSingleBlockTransposed.html │ │ │ │ │ │ ├── ReaderColumnSelectionEmpty.html │ │ │ │ │ │ ├── ReaderColumnSelectionSparse.html │ │ │ │ │ │ ├── ReaderColumnSelectionSparseTransposed.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── ReaderColumnSelection.html │ │ │ │ │ │ │ ├── ReaderColumnSelectionDenseMultiBlock.html │ │ │ │ │ │ │ ├── ReaderColumnSelectionDenseMultiBlockTransposed.html │ │ │ │ │ │ │ ├── ReaderColumnSelectionDenseSingleBlock.html │ │ │ │ │ │ │ ├── ReaderColumnSelectionDenseSingleBlockTransposed.html │ │ │ │ │ │ │ ├── ReaderColumnSelectionEmpty.html │ │ │ │ │ │ │ ├── ReaderColumnSelectionSparse.html │ │ │ │ │ │ │ └── ReaderColumnSelectionSparseTransposed.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── ACount.DArrCounts.html │ │ │ │ │ │ ├── ACount.DCounts.html │ │ │ │ │ │ ├── ACount.html │ │ │ │ │ │ ├── ACountHashMap.html │ │ │ │ │ │ ├── CompressRDDClean.html │ │ │ │ │ │ ├── DblArray.html │ │ │ │ │ │ ├── DblArrayCountHashMap.html │ │ │ │ │ │ ├── DblArrayIntListHashMap.DArrayIListEntry.html │ │ │ │ │ │ ├── DblArrayIntListHashMap.html │ │ │ │ │ │ ├── DoubleCountHashMap.html │ │ │ │ │ │ ├── DoubleIntListHashMap.DIListEntry.html │ │ │ │ │ │ ├── DoubleIntListHashMap.html │ │ │ │ │ │ ├── HashMapLongInt.KV.html │ │ │ │ │ │ ├── HashMapLongInt.html │ │ │ │ │ │ ├── IntArrayList.html │ │ │ │ │ │ ├── Util.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── ACount.DArrCounts.html │ │ │ │ │ │ │ ├── ACount.DCounts.html │ │ │ │ │ │ │ ├── ACount.html │ │ │ │ │ │ │ ├── ACountHashMap.html │ │ │ │ │ │ │ ├── CompressRDDClean.html │ │ │ │ │ │ │ ├── DblArray.html │ │ │ │ │ │ │ ├── DblArrayCountHashMap.html │ │ │ │ │ │ │ ├── DblArrayIntListHashMap.DArrayIListEntry.html │ │ │ │ │ │ │ ├── DblArrayIntListHashMap.html │ │ │ │ │ │ │ ├── DoubleCountHashMap.html │ │ │ │ │ │ │ ├── DoubleIntListHashMap.DIListEntry.html │ │ │ │ │ │ │ ├── DoubleIntListHashMap.html │ │ │ │ │ │ │ ├── HashMapLongInt.KV.html │ │ │ │ │ │ │ ├── HashMapLongInt.html │ │ │ │ │ │ │ ├── IntArrayList.html │ │ │ │ │ │ │ └── Util.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ └── workload │ │ │ │ │ │ ├── AWTreeNode.WTNodeType.html │ │ │ │ │ │ ├── AWTreeNode.html │ │ │ │ │ │ ├── Op.html │ │ │ │ │ │ ├── OpMetadata.html │ │ │ │ │ │ ├── OpNormal.html │ │ │ │ │ │ ├── OpSided.html │ │ │ │ │ │ ├── WTreeNode.html │ │ │ │ │ │ ├── WTreeRoot.html │ │ │ │ │ │ ├── WorkloadAnalyzer.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── AWTreeNode.WTNodeType.html │ │ │ │ │ │ ├── AWTreeNode.html │ │ │ │ │ │ ├── Op.html │ │ │ │ │ │ ├── OpMetadata.html │ │ │ │ │ │ ├── OpNormal.html │ │ │ │ │ │ ├── OpSided.html │ │ │ │ │ │ ├── WTreeNode.html │ │ │ │ │ │ ├── WTreeRoot.html │ │ │ │ │ │ └── WorkloadAnalyzer.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ ├── controlprogram │ │ │ │ │ ├── BasicProgramBlock.html │ │ │ │ │ ├── ForProgramBlock.html │ │ │ │ │ ├── FunctionProgramBlock.html │ │ │ │ │ ├── IfProgramBlock.html │ │ │ │ │ ├── LocalVariableMap.html │ │ │ │ │ ├── ParForProgramBlock.PDataPartitionFormat.html │ │ │ │ │ ├── ParForProgramBlock.PDataPartitioner.html │ │ │ │ │ ├── ParForProgramBlock.PExecMode.html │ │ │ │ │ ├── ParForProgramBlock.POptMode.html │ │ │ │ │ ├── ParForProgramBlock.PResultMerge.html │ │ │ │ │ ├── ParForProgramBlock.PTaskPartitioner.html │ │ │ │ │ ├── ParForProgramBlock.PartitionFormat.html │ │ │ │ │ ├── ParForProgramBlock.html │ │ │ │ │ ├── Program.html │ │ │ │ │ ├── ProgramBlock.html │ │ │ │ │ ├── WhileProgramBlock.html │ │ │ │ │ ├── caching │ │ │ │ │ │ ├── ByteBuffer.html │ │ │ │ │ │ ├── CacheBlock.html │ │ │ │ │ │ ├── CacheBlockFactory.html │ │ │ │ │ │ ├── CacheDataInput.html │ │ │ │ │ │ ├── CacheDataOutput.html │ │ │ │ │ │ ├── CacheEvictionQueue.html │ │ │ │ │ │ ├── CacheMaintenanceService.html │ │ │ │ │ │ ├── CacheStatistics.html │ │ │ │ │ │ ├── CacheableData.CacheStatus.html │ │ │ │ │ │ ├── CacheableData.html │ │ │ │ │ │ ├── FrameObject.html │ │ │ │ │ │ ├── LazyWriteBuffer.RPolicy.html │ │ │ │ │ │ ├── LazyWriteBuffer.html │ │ │ │ │ │ ├── MatrixObject.UpdateType.html │ │ │ │ │ │ ├── MatrixObject.html │ │ │ │ │ │ ├── PageCache.html │ │ │ │ │ │ ├── TensorObject.html │ │ │ │ │ │ ├── UnifiedMemoryManager.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── ByteBuffer.html │ │ │ │ │ │ │ ├── CacheBlock.html │ │ │ │ │ │ │ ├── CacheBlockFactory.html │ │ │ │ │ │ │ ├── CacheDataInput.html │ │ │ │ │ │ │ ├── CacheDataOutput.html │ │ │ │ │ │ │ ├── CacheEvictionQueue.html │ │ │ │ │ │ │ ├── CacheMaintenanceService.html │ │ │ │ │ │ │ ├── CacheStatistics.html │ │ │ │ │ │ │ ├── CacheableData.CacheStatus.html │ │ │ │ │ │ │ ├── CacheableData.html │ │ │ │ │ │ │ ├── FrameObject.html │ │ │ │ │ │ │ ├── LazyWriteBuffer.RPolicy.html │ │ │ │ │ │ │ ├── LazyWriteBuffer.html │ │ │ │ │ │ │ ├── MatrixObject.UpdateType.html │ │ │ │ │ │ │ ├── MatrixObject.html │ │ │ │ │ │ │ ├── PageCache.html │ │ │ │ │ │ │ ├── TensorObject.html │ │ │ │ │ │ │ └── UnifiedMemoryManager.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── BasicProgramBlock.html │ │ │ │ │ │ ├── ForProgramBlock.html │ │ │ │ │ │ ├── FunctionProgramBlock.html │ │ │ │ │ │ ├── IfProgramBlock.html │ │ │ │ │ │ ├── LocalVariableMap.html │ │ │ │ │ │ ├── ParForProgramBlock.PDataPartitionFormat.html │ │ │ │ │ │ ├── ParForProgramBlock.PDataPartitioner.html │ │ │ │ │ │ ├── ParForProgramBlock.PExecMode.html │ │ │ │ │ │ ├── ParForProgramBlock.POptMode.html │ │ │ │ │ │ ├── ParForProgramBlock.PResultMerge.html │ │ │ │ │ │ ├── ParForProgramBlock.PTaskPartitioner.html │ │ │ │ │ │ ├── ParForProgramBlock.PartitionFormat.html │ │ │ │ │ │ ├── ParForProgramBlock.html │ │ │ │ │ │ ├── Program.html │ │ │ │ │ │ ├── ProgramBlock.html │ │ │ │ │ │ └── WhileProgramBlock.html │ │ │ │ │ ├── context │ │ │ │ │ │ ├── ExecutionContext.html │ │ │ │ │ │ ├── ExecutionContextFactory.html │ │ │ │ │ │ ├── MatrixObjectFuture.html │ │ │ │ │ │ ├── SparkExecutionContext.MemoryManagerParRDDs.html │ │ │ │ │ │ ├── SparkExecutionContext.SparkClusterConfig.html │ │ │ │ │ │ ├── SparkExecutionContext.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── ExecutionContext.html │ │ │ │ │ │ │ ├── ExecutionContextFactory.html │ │ │ │ │ │ │ ├── MatrixObjectFuture.html │ │ │ │ │ │ │ ├── SparkExecutionContext.MemoryManagerParRDDs.html │ │ │ │ │ │ │ ├── SparkExecutionContext.SparkClusterConfig.html │ │ │ │ │ │ │ └── SparkExecutionContext.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── federated │ │ │ │ │ │ ├── ExecutionContextMap.html │ │ │ │ │ │ ├── FederatedData.FederatedRequestEncoder.html │ │ │ │ │ │ ├── FederatedData.html │ │ │ │ │ │ ├── FederatedLocalData.html │ │ │ │ │ │ ├── FederatedLookupTable.html │ │ │ │ │ │ ├── FederatedRange.html │ │ │ │ │ │ ├── FederatedReadCache.ReadCacheEntry.html │ │ │ │ │ │ ├── FederatedReadCache.html │ │ │ │ │ │ ├── FederatedRequest.RequestType.html │ │ │ │ │ │ ├── FederatedRequest.html │ │ │ │ │ │ ├── FederatedResponse.ResponseType.html │ │ │ │ │ │ ├── FederatedResponse.html │ │ │ │ │ │ ├── FederatedSSLUtil.html │ │ │ │ │ │ ├── FederatedStatistics.FedStatsCollectFunction.html │ │ │ │ │ │ ├── FederatedStatistics.FedStatsCollection.html │ │ │ │ │ │ ├── FederatedStatistics.html │ │ │ │ │ │ ├── FederatedUDF.html │ │ │ │ │ │ ├── FederatedWorker.FederatedResponseEncoder.html │ │ │ │ │ │ ├── FederatedWorker.html │ │ │ │ │ │ ├── FederatedWorkerHandler.html │ │ │ │ │ │ ├── FederatedWorkerHandlerException.html │ │ │ │ │ │ ├── FederatedWorkloadAnalyzer.html │ │ │ │ │ │ ├── FederationMap.html │ │ │ │ │ │ ├── FederationUtils.html │ │ │ │ │ │ ├── MatrixLineagePair.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── ExecutionContextMap.html │ │ │ │ │ │ │ ├── FederatedData.FederatedRequestEncoder.html │ │ │ │ │ │ │ ├── FederatedData.html │ │ │ │ │ │ │ ├── FederatedLocalData.html │ │ │ │ │ │ │ ├── FederatedLookupTable.html │ │ │ │ │ │ │ ├── FederatedRange.html │ │ │ │ │ │ │ ├── FederatedReadCache.ReadCacheEntry.html │ │ │ │ │ │ │ ├── FederatedReadCache.html │ │ │ │ │ │ │ ├── FederatedRequest.RequestType.html │ │ │ │ │ │ │ ├── FederatedRequest.html │ │ │ │ │ │ │ ├── FederatedResponse.ResponseType.html │ │ │ │ │ │ │ ├── FederatedResponse.html │ │ │ │ │ │ │ ├── FederatedSSLUtil.html │ │ │ │ │ │ │ ├── FederatedStatistics.FedStatsCollectFunction.html │ │ │ │ │ │ │ ├── FederatedStatistics.FedStatsCollection.html │ │ │ │ │ │ │ ├── FederatedStatistics.html │ │ │ │ │ │ │ ├── FederatedUDF.html │ │ │ │ │ │ │ ├── FederatedWorker.FederatedResponseEncoder.html │ │ │ │ │ │ │ ├── FederatedWorker.html │ │ │ │ │ │ │ ├── FederatedWorkerHandler.html │ │ │ │ │ │ │ ├── FederatedWorkerHandlerException.html │ │ │ │ │ │ │ ├── FederatedWorkloadAnalyzer.html │ │ │ │ │ │ │ ├── FederationMap.html │ │ │ │ │ │ │ ├── FederationUtils.html │ │ │ │ │ │ │ └── MatrixLineagePair.html │ │ │ │ │ │ ├── compression │ │ │ │ │ │ │ ├── CompressionDecoderEndStatisticsHandler.html │ │ │ │ │ │ │ ├── CompressionDecoderStartStatisticsHandler.html │ │ │ │ │ │ │ ├── CompressionEncoderEndStatisticsHandler.html │ │ │ │ │ │ │ ├── CompressionEncoderStartStatisticsHandler.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ ├── CompressionDecoderEndStatisticsHandler.html │ │ │ │ │ │ │ │ ├── CompressionDecoderStartStatisticsHandler.html │ │ │ │ │ │ │ │ ├── CompressionEncoderEndStatisticsHandler.html │ │ │ │ │ │ │ │ └── CompressionEncoderStartStatisticsHandler.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── monitoring │ │ │ │ │ │ │ ├── FederatedMonitoringServer.html │ │ │ │ │ │ │ ├── FederatedMonitoringServerHandler.html │ │ │ │ │ │ │ ├── Request.html │ │ │ │ │ │ │ ├── Response.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ ├── FederatedMonitoringServer.html │ │ │ │ │ │ │ │ ├── FederatedMonitoringServerHandler.html │ │ │ │ │ │ │ │ ├── Request.html │ │ │ │ │ │ │ │ └── Response.html │ │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ │ │ ├── Constants.html │ │ │ │ │ │ │ │ ├── CoordinatorController.html │ │ │ │ │ │ │ │ ├── IController.html │ │ │ │ │ │ │ │ ├── StatisticsController.html │ │ │ │ │ │ │ │ ├── WorkerController.html │ │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ │ ├── Constants.html │ │ │ │ │ │ │ │ │ ├── CoordinatorController.html │ │ │ │ │ │ │ │ │ ├── IController.html │ │ │ │ │ │ │ │ │ ├── StatisticsController.html │ │ │ │ │ │ │ │ │ └── WorkerController.html │ │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ │ ├── BaseModel.html │ │ │ │ │ │ │ │ ├── CoordinatorConnectionModel.html │ │ │ │ │ │ │ │ ├── CoordinatorModel.html │ │ │ │ │ │ │ │ ├── DataObjectModel.html │ │ │ │ │ │ │ │ ├── EventModel.html │ │ │ │ │ │ │ │ ├── EventStageModel.html │ │ │ │ │ │ │ │ ├── HeavyHitterModel.html │ │ │ │ │ │ │ │ ├── RequestModel.html │ │ │ │ │ │ │ │ ├── StatisticsModel.html │ │ │ │ │ │ │ │ ├── StatisticsOptions.html │ │ │ │ │ │ │ │ ├── TrafficModel.html │ │ │ │ │ │ │ │ ├── UtilizationModel.html │ │ │ │ │ │ │ │ ├── WorkerModel.html │ │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ │ ├── BaseModel.html │ │ │ │ │ │ │ │ │ ├── CoordinatorConnectionModel.html │ │ │ │ │ │ │ │ │ ├── CoordinatorModel.html │ │ │ │ │ │ │ │ │ ├── DataObjectModel.html │ │ │ │ │ │ │ │ │ ├── EventModel.html │ │ │ │ │ │ │ │ │ ├── EventStageModel.html │ │ │ │ │ │ │ │ │ ├── HeavyHitterModel.html │ │ │ │ │ │ │ │ │ ├── RequestModel.html │ │ │ │ │ │ │ │ │ ├── StatisticsModel.html │ │ │ │ │ │ │ │ │ ├── StatisticsOptions.html │ │ │ │ │ │ │ │ │ ├── TrafficModel.html │ │ │ │ │ │ │ │ │ ├── UtilizationModel.html │ │ │ │ │ │ │ │ │ └── WorkerModel.html │ │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ ├── package-use.html │ │ │ │ │ │ │ ├── repositories │ │ │ │ │ │ │ │ ├── Constants.html │ │ │ │ │ │ │ │ ├── DerbyRepository.html │ │ │ │ │ │ │ │ ├── IRepository.html │ │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ │ ├── Constants.html │ │ │ │ │ │ │ │ │ ├── DerbyRepository.html │ │ │ │ │ │ │ │ │ └── IRepository.html │ │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ ├── CoordinatorService.html │ │ │ │ │ │ │ │ ├── MapperService.html │ │ │ │ │ │ │ │ ├── StatisticsService.html │ │ │ │ │ │ │ │ ├── WorkerService.html │ │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ ├── CoordinatorService.html │ │ │ │ │ │ │ │ ├── MapperService.html │ │ │ │ │ │ │ │ ├── StatisticsService.html │ │ │ │ │ │ │ │ └── WorkerService.html │ │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ ├── package-use.html │ │ │ │ │ ├── paramserv │ │ │ │ │ │ ├── FederatedPSControlThread.html │ │ │ │ │ │ ├── HEParamServer.html │ │ │ │ │ │ ├── LocalPSWorker.html │ │ │ │ │ │ ├── LocalParamServer.html │ │ │ │ │ │ ├── NativeHEHelper.html │ │ │ │ │ │ ├── NetworkTrafficCounter.html │ │ │ │ │ │ ├── PSWorker.html │ │ │ │ │ │ ├── ParamServer.html │ │ │ │ │ │ ├── ParamservUtils.html │ │ │ │ │ │ ├── SparkPSBody.html │ │ │ │ │ │ ├── SparkPSProxy.html │ │ │ │ │ │ ├── SparkPSWorker.html │ │ │ │ │ │ ├── SparkParamservUtils.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── FederatedPSControlThread.html │ │ │ │ │ │ │ ├── HEParamServer.html │ │ │ │ │ │ │ ├── LocalPSWorker.html │ │ │ │ │ │ │ ├── LocalParamServer.html │ │ │ │ │ │ │ ├── NativeHEHelper.html │ │ │ │ │ │ │ ├── NetworkTrafficCounter.html │ │ │ │ │ │ │ ├── PSWorker.html │ │ │ │ │ │ │ ├── ParamServer.html │ │ │ │ │ │ │ ├── ParamservUtils.html │ │ │ │ │ │ │ ├── SparkPSBody.html │ │ │ │ │ │ │ ├── SparkPSProxy.html │ │ │ │ │ │ │ ├── SparkPSWorker.html │ │ │ │ │ │ │ └── SparkParamservUtils.html │ │ │ │ │ │ ├── dp │ │ │ │ │ │ │ ├── BalanceToAvgFederatedScheme.html │ │ │ │ │ │ │ ├── DCLocalScheme.html │ │ │ │ │ │ │ ├── DCSparkScheme.html │ │ │ │ │ │ │ ├── DRLocalScheme.html │ │ │ │ │ │ │ ├── DRRLocalScheme.html │ │ │ │ │ │ │ ├── DRRSparkScheme.html │ │ │ │ │ │ │ ├── DRSparkScheme.html │ │ │ │ │ │ │ ├── DataPartitionFederatedScheme.BalanceMetrics.html │ │ │ │ │ │ │ ├── DataPartitionFederatedScheme.Result.html │ │ │ │ │ │ │ ├── DataPartitionFederatedScheme.html │ │ │ │ │ │ │ ├── DataPartitionLocalScheme.Result.html │ │ │ │ │ │ │ ├── DataPartitionLocalScheme.html │ │ │ │ │ │ │ ├── DataPartitionSparkScheme.html │ │ │ │ │ │ │ ├── DataPartitionerSparkAggregator.html │ │ │ │ │ │ │ ├── DataPartitionerSparkMapper.html │ │ │ │ │ │ │ ├── FederatedDataPartitioner.html │ │ │ │ │ │ │ ├── KeepDataOnWorkerFederatedScheme.html │ │ │ │ │ │ │ ├── LocalDataPartitioner.html │ │ │ │ │ │ │ ├── ORLocalScheme.html │ │ │ │ │ │ │ ├── ORSparkScheme.html │ │ │ │ │ │ │ ├── ReplicateToMaxFederatedScheme.html │ │ │ │ │ │ │ ├── ShuffleFederatedScheme.html │ │ │ │ │ │ │ ├── SparkDataPartitioner.html │ │ │ │ │ │ │ ├── SubsampleToMinFederatedScheme.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ ├── BalanceToAvgFederatedScheme.html │ │ │ │ │ │ │ │ ├── DCLocalScheme.html │ │ │ │ │ │ │ │ ├── DCSparkScheme.html │ │ │ │ │ │ │ │ ├── DRLocalScheme.html │ │ │ │ │ │ │ │ ├── DRRLocalScheme.html │ │ │ │ │ │ │ │ ├── DRRSparkScheme.html │ │ │ │ │ │ │ │ ├── DRSparkScheme.html │ │ │ │ │ │ │ │ ├── DataPartitionFederatedScheme.BalanceMetrics.html │ │ │ │ │ │ │ │ ├── DataPartitionFederatedScheme.Result.html │ │ │ │ │ │ │ │ ├── DataPartitionFederatedScheme.html │ │ │ │ │ │ │ │ ├── DataPartitionLocalScheme.Result.html │ │ │ │ │ │ │ │ ├── DataPartitionLocalScheme.html │ │ │ │ │ │ │ │ ├── DataPartitionSparkScheme.html │ │ │ │ │ │ │ │ ├── DataPartitionerSparkAggregator.html │ │ │ │ │ │ │ │ ├── DataPartitionerSparkMapper.html │ │ │ │ │ │ │ │ ├── FederatedDataPartitioner.html │ │ │ │ │ │ │ │ ├── KeepDataOnWorkerFederatedScheme.html │ │ │ │ │ │ │ │ ├── LocalDataPartitioner.html │ │ │ │ │ │ │ │ ├── ORLocalScheme.html │ │ │ │ │ │ │ │ ├── ORSparkScheme.html │ │ │ │ │ │ │ │ ├── ReplicateToMaxFederatedScheme.html │ │ │ │ │ │ │ │ ├── ShuffleFederatedScheme.html │ │ │ │ │ │ │ │ ├── SparkDataPartitioner.html │ │ │ │ │ │ │ │ └── SubsampleToMinFederatedScheme.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── homomorphicEncryption │ │ │ │ │ │ │ ├── PublicKey.html │ │ │ │ │ │ │ ├── SEALClient.html │ │ │ │ │ │ │ ├── SEALServer.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ ├── PublicKey.html │ │ │ │ │ │ │ │ ├── SEALClient.html │ │ │ │ │ │ │ │ └── SEALServer.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ ├── package-use.html │ │ │ │ │ │ └── rpc │ │ │ │ │ │ │ ├── PSRpcCall.html │ │ │ │ │ │ │ ├── PSRpcFactory.html │ │ │ │ │ │ │ ├── PSRpcHandler.html │ │ │ │ │ │ │ ├── PSRpcObject.html │ │ │ │ │ │ │ ├── PSRpcResponse.Type.html │ │ │ │ │ │ │ ├── PSRpcResponse.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── PSRpcCall.html │ │ │ │ │ │ │ ├── PSRpcFactory.html │ │ │ │ │ │ │ ├── PSRpcHandler.html │ │ │ │ │ │ │ ├── PSRpcObject.html │ │ │ │ │ │ │ ├── PSRpcResponse.Type.html │ │ │ │ │ │ │ └── PSRpcResponse.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ └── parfor │ │ │ │ │ │ ├── CachedReuseVariables.html │ │ │ │ │ │ ├── DataPartitioner.html │ │ │ │ │ │ ├── DataPartitionerLocal.html │ │ │ │ │ │ ├── DataPartitionerRemoteSpark.html │ │ │ │ │ │ ├── DataPartitionerRemoteSparkMapper.html │ │ │ │ │ │ ├── DataPartitionerRemoteSparkReducer.html │ │ │ │ │ │ ├── LocalParWorker.html │ │ │ │ │ │ ├── LocalTaskQueue.html │ │ │ │ │ │ ├── ParForBody.html │ │ │ │ │ │ ├── ParWorker.html │ │ │ │ │ │ ├── RemoteDPParForSpark.html │ │ │ │ │ │ ├── RemoteDPParForSparkWorker.html │ │ │ │ │ │ ├── RemoteParForJobReturn.html │ │ │ │ │ │ ├── RemoteParForSpark.html │ │ │ │ │ │ ├── RemoteParForSparkWorker.html │ │ │ │ │ │ ├── RemoteParForUtils.html │ │ │ │ │ │ ├── ResultMerge.html │ │ │ │ │ │ ├── ResultMergeFrameLocalMemory.html │ │ │ │ │ │ ├── ResultMergeLocalAutomatic.html │ │ │ │ │ │ ├── ResultMergeLocalFile.html │ │ │ │ │ │ ├── ResultMergeLocalMemory.html │ │ │ │ │ │ ├── ResultMergeMatrix.html │ │ │ │ │ │ ├── ResultMergeRemoteSpark.html │ │ │ │ │ │ ├── ResultMergeRemoteSparkWCompare.html │ │ │ │ │ │ ├── Task.TaskType.html │ │ │ │ │ │ ├── Task.html │ │ │ │ │ │ ├── TaskPartitioner.html │ │ │ │ │ │ ├── TaskPartitionerFactoring.html │ │ │ │ │ │ ├── TaskPartitionerFactoringCmax.html │ │ │ │ │ │ ├── TaskPartitionerFactoringCmin.html │ │ │ │ │ │ ├── TaskPartitionerFactory.html │ │ │ │ │ │ ├── TaskPartitionerFixedsize.html │ │ │ │ │ │ ├── TaskPartitionerNaive.html │ │ │ │ │ │ ├── TaskPartitionerStatic.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── CachedReuseVariables.html │ │ │ │ │ │ ├── DataPartitioner.html │ │ │ │ │ │ ├── DataPartitionerLocal.html │ │ │ │ │ │ ├── DataPartitionerRemoteSpark.html │ │ │ │ │ │ ├── DataPartitionerRemoteSparkMapper.html │ │ │ │ │ │ ├── DataPartitionerRemoteSparkReducer.html │ │ │ │ │ │ ├── LocalParWorker.html │ │ │ │ │ │ ├── LocalTaskQueue.html │ │ │ │ │ │ ├── ParForBody.html │ │ │ │ │ │ ├── ParWorker.html │ │ │ │ │ │ ├── RemoteDPParForSpark.html │ │ │ │ │ │ ├── RemoteDPParForSparkWorker.html │ │ │ │ │ │ ├── RemoteParForJobReturn.html │ │ │ │ │ │ ├── RemoteParForSpark.html │ │ │ │ │ │ ├── RemoteParForSparkWorker.html │ │ │ │ │ │ ├── RemoteParForUtils.html │ │ │ │ │ │ ├── ResultMerge.html │ │ │ │ │ │ ├── ResultMergeFrameLocalMemory.html │ │ │ │ │ │ ├── ResultMergeLocalAutomatic.html │ │ │ │ │ │ ├── ResultMergeLocalFile.html │ │ │ │ │ │ ├── ResultMergeLocalMemory.html │ │ │ │ │ │ ├── ResultMergeMatrix.html │ │ │ │ │ │ ├── ResultMergeRemoteSpark.html │ │ │ │ │ │ ├── ResultMergeRemoteSparkWCompare.html │ │ │ │ │ │ ├── Task.TaskType.html │ │ │ │ │ │ ├── Task.html │ │ │ │ │ │ ├── TaskPartitioner.html │ │ │ │ │ │ ├── TaskPartitionerFactoring.html │ │ │ │ │ │ ├── TaskPartitionerFactoringCmax.html │ │ │ │ │ │ ├── TaskPartitionerFactoringCmin.html │ │ │ │ │ │ ├── TaskPartitionerFactory.html │ │ │ │ │ │ ├── TaskPartitionerFixedsize.html │ │ │ │ │ │ ├── TaskPartitionerNaive.html │ │ │ │ │ │ └── TaskPartitionerStatic.html │ │ │ │ │ │ ├── opt │ │ │ │ │ │ ├── CostEstimator.DataFormat.html │ │ │ │ │ │ ├── CostEstimator.ExcludeType.html │ │ │ │ │ │ ├── CostEstimator.TestMeasure.html │ │ │ │ │ │ ├── CostEstimator.html │ │ │ │ │ │ ├── CostEstimatorHops.html │ │ │ │ │ │ ├── CostEstimatorRuntime.html │ │ │ │ │ │ ├── OptNode.ExecType.html │ │ │ │ │ │ ├── OptNode.NodeType.html │ │ │ │ │ │ ├── OptNode.ParamType.html │ │ │ │ │ │ ├── OptNode.html │ │ │ │ │ │ ├── OptTree.html │ │ │ │ │ │ ├── OptTreeConverter.html │ │ │ │ │ │ ├── OptTreePlanMapping.html │ │ │ │ │ │ ├── OptimizationWrapper.html │ │ │ │ │ │ ├── Optimizer.CostModelType.html │ │ │ │ │ │ ├── Optimizer.html │ │ │ │ │ │ ├── OptimizerConstrained.html │ │ │ │ │ │ ├── OptimizerHeuristic.html │ │ │ │ │ │ ├── OptimizerRuleBased.html │ │ │ │ │ │ ├── ProgramRecompiler.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── CostEstimator.DataFormat.html │ │ │ │ │ │ │ ├── CostEstimator.ExcludeType.html │ │ │ │ │ │ │ ├── CostEstimator.TestMeasure.html │ │ │ │ │ │ │ ├── CostEstimator.html │ │ │ │ │ │ │ ├── CostEstimatorHops.html │ │ │ │ │ │ │ ├── CostEstimatorRuntime.html │ │ │ │ │ │ │ ├── OptNode.ExecType.html │ │ │ │ │ │ │ ├── OptNode.NodeType.html │ │ │ │ │ │ │ ├── OptNode.ParamType.html │ │ │ │ │ │ │ ├── OptNode.html │ │ │ │ │ │ │ ├── OptTree.html │ │ │ │ │ │ │ ├── OptTreeConverter.html │ │ │ │ │ │ │ ├── OptTreePlanMapping.html │ │ │ │ │ │ │ ├── OptimizationWrapper.html │ │ │ │ │ │ │ ├── Optimizer.CostModelType.html │ │ │ │ │ │ │ ├── Optimizer.html │ │ │ │ │ │ │ ├── OptimizerConstrained.html │ │ │ │ │ │ │ ├── OptimizerHeuristic.html │ │ │ │ │ │ │ ├── OptimizerRuleBased.html │ │ │ │ │ │ │ └── ProgramRecompiler.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ ├── package-use.html │ │ │ │ │ │ └── util │ │ │ │ │ │ ├── IDHandler.html │ │ │ │ │ │ ├── IDSequence.html │ │ │ │ │ │ ├── PairWritableBlock.html │ │ │ │ │ │ ├── PairWritableCell.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── IDHandler.html │ │ │ │ │ │ ├── IDSequence.html │ │ │ │ │ │ ├── PairWritableBlock.html │ │ │ │ │ │ └── PairWritableCell.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ ├── data │ │ │ │ │ ├── BasicTensorBlock.html │ │ │ │ │ ├── Block.html │ │ │ │ │ ├── DataTensorBlock.html │ │ │ │ │ ├── DenseBlock.Type.html │ │ │ │ │ ├── DenseBlock.html │ │ │ │ │ ├── DenseBlockBool.html │ │ │ │ │ ├── DenseBlockDRB.html │ │ │ │ │ ├── DenseBlockFP32.html │ │ │ │ │ ├── DenseBlockFP64.html │ │ │ │ │ ├── DenseBlockFP64DEDUP.html │ │ │ │ │ ├── DenseBlockFactory.html │ │ │ │ │ ├── DenseBlockInt32.html │ │ │ │ │ ├── DenseBlockInt64.html │ │ │ │ │ ├── DenseBlockLBool.html │ │ │ │ │ ├── DenseBlockLDRB.html │ │ │ │ │ ├── DenseBlockLFP32.html │ │ │ │ │ ├── DenseBlockLFP64.html │ │ │ │ │ ├── DenseBlockLFP64DEDUP.html │ │ │ │ │ ├── DenseBlockLInt32.html │ │ │ │ │ ├── DenseBlockLInt64.html │ │ │ │ │ ├── DenseBlockLString.html │ │ │ │ │ ├── DenseBlockString.html │ │ │ │ │ ├── IndexedTensorBlock.html │ │ │ │ │ ├── LibTensorAgg.html │ │ │ │ │ ├── LibTensorBincell.html │ │ │ │ │ ├── LibTensorReorg.html │ │ │ │ │ ├── SparseBlock.Type.html │ │ │ │ │ ├── SparseBlock.html │ │ │ │ │ ├── SparseBlockCOO.NonEmptyRowsIteratorCOO.html │ │ │ │ │ ├── SparseBlockCOO.html │ │ │ │ │ ├── SparseBlockCSC.NonEmptyColumnsIteratorCSC.html │ │ │ │ │ ├── SparseBlockCSC.NonEmptyRowsIteratorCSC.html │ │ │ │ │ ├── SparseBlockCSC.html │ │ │ │ │ ├── SparseBlockCSR.NonEmptyRowsIteratorCSR.html │ │ │ │ │ ├── SparseBlockCSR.html │ │ │ │ │ ├── SparseBlockDCSR.NonEmptyRowsIteratorDCSR.html │ │ │ │ │ ├── SparseBlockDCSR.html │ │ │ │ │ ├── SparseBlockFactory.html │ │ │ │ │ ├── SparseBlockMCSC.NonEmptyColumnsIteratorMCSC.html │ │ │ │ │ ├── SparseBlockMCSC.NonEmptyRowsIteratorMCSC.html │ │ │ │ │ ├── SparseBlockMCSC.html │ │ │ │ │ ├── SparseBlockMCSR.NonEmptyRowsIteratorMCSR.html │ │ │ │ │ ├── SparseBlockMCSR.html │ │ │ │ │ ├── SparseRow.html │ │ │ │ │ ├── SparseRowScalar.html │ │ │ │ │ ├── SparseRowVector.html │ │ │ │ │ ├── TensorBlock.html │ │ │ │ │ ├── TensorIndexes.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── BasicTensorBlock.html │ │ │ │ │ │ ├── Block.html │ │ │ │ │ │ ├── DataTensorBlock.html │ │ │ │ │ │ ├── DenseBlock.Type.html │ │ │ │ │ │ ├── DenseBlock.html │ │ │ │ │ │ ├── DenseBlockBool.html │ │ │ │ │ │ ├── DenseBlockDRB.html │ │ │ │ │ │ ├── DenseBlockFP32.html │ │ │ │ │ │ ├── DenseBlockFP64.html │ │ │ │ │ │ ├── DenseBlockFP64DEDUP.html │ │ │ │ │ │ ├── DenseBlockFactory.html │ │ │ │ │ │ ├── DenseBlockInt32.html │ │ │ │ │ │ ├── DenseBlockInt64.html │ │ │ │ │ │ ├── DenseBlockLBool.html │ │ │ │ │ │ ├── DenseBlockLDRB.html │ │ │ │ │ │ ├── DenseBlockLFP32.html │ │ │ │ │ │ ├── DenseBlockLFP64.html │ │ │ │ │ │ ├── DenseBlockLFP64DEDUP.html │ │ │ │ │ │ ├── DenseBlockLInt32.html │ │ │ │ │ │ ├── DenseBlockLInt64.html │ │ │ │ │ │ ├── DenseBlockLString.html │ │ │ │ │ │ ├── DenseBlockString.html │ │ │ │ │ │ ├── IndexedTensorBlock.html │ │ │ │ │ │ ├── LibTensorAgg.html │ │ │ │ │ │ ├── LibTensorBincell.html │ │ │ │ │ │ ├── LibTensorReorg.html │ │ │ │ │ │ ├── SparseBlock.Type.html │ │ │ │ │ │ ├── SparseBlock.html │ │ │ │ │ │ ├── SparseBlockCOO.NonEmptyRowsIteratorCOO.html │ │ │ │ │ │ ├── SparseBlockCOO.html │ │ │ │ │ │ ├── SparseBlockCSC.NonEmptyColumnsIteratorCSC.html │ │ │ │ │ │ ├── SparseBlockCSC.NonEmptyRowsIteratorCSC.html │ │ │ │ │ │ ├── SparseBlockCSC.html │ │ │ │ │ │ ├── SparseBlockCSR.NonEmptyRowsIteratorCSR.html │ │ │ │ │ │ ├── SparseBlockCSR.html │ │ │ │ │ │ ├── SparseBlockDCSR.NonEmptyRowsIteratorDCSR.html │ │ │ │ │ │ ├── SparseBlockDCSR.html │ │ │ │ │ │ ├── SparseBlockFactory.html │ │ │ │ │ │ ├── SparseBlockMCSC.NonEmptyColumnsIteratorMCSC.html │ │ │ │ │ │ ├── SparseBlockMCSC.NonEmptyRowsIteratorMCSC.html │ │ │ │ │ │ ├── SparseBlockMCSC.html │ │ │ │ │ │ ├── SparseBlockMCSR.NonEmptyRowsIteratorMCSR.html │ │ │ │ │ │ ├── SparseBlockMCSR.html │ │ │ │ │ │ ├── SparseRow.html │ │ │ │ │ │ ├── SparseRowScalar.html │ │ │ │ │ │ ├── SparseRowVector.html │ │ │ │ │ │ ├── TensorBlock.html │ │ │ │ │ │ └── TensorIndexes.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── frame │ │ │ │ │ └── data │ │ │ │ │ │ ├── FrameBlock.FrameMapFunction.html │ │ │ │ │ │ ├── FrameBlock.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── FrameBlock.FrameMapFunction.html │ │ │ │ │ │ └── FrameBlock.html │ │ │ │ │ │ ├── columns │ │ │ │ │ │ ├── ABooleanArray.html │ │ │ │ │ │ ├── ACompressedArray.html │ │ │ │ │ │ ├── Array.ArrayIterator.html │ │ │ │ │ │ ├── Array.html │ │ │ │ │ │ ├── ArrayFactory.FrameArrayType.html │ │ │ │ │ │ ├── ArrayFactory.html │ │ │ │ │ │ ├── ArrayWrapper.html │ │ │ │ │ │ ├── BitSetArray.html │ │ │ │ │ │ ├── BooleanArray.html │ │ │ │ │ │ ├── CharArray.html │ │ │ │ │ │ ├── ColumnMetadata.html │ │ │ │ │ │ ├── DDCArray.html │ │ │ │ │ │ ├── DoubleArray.html │ │ │ │ │ │ ├── FloatArray.html │ │ │ │ │ │ ├── HashIntegerArray.html │ │ │ │ │ │ ├── HashLongArray.html │ │ │ │ │ │ ├── HashMapToInt.html │ │ │ │ │ │ ├── IHashArray.html │ │ │ │ │ │ ├── IntegerArray.html │ │ │ │ │ │ ├── LongArray.html │ │ │ │ │ │ ├── OptionalArray.html │ │ │ │ │ │ ├── RaggedArray.html │ │ │ │ │ │ ├── StringArray.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── ABooleanArray.html │ │ │ │ │ │ │ ├── ACompressedArray.html │ │ │ │ │ │ │ ├── Array.ArrayIterator.html │ │ │ │ │ │ │ ├── Array.html │ │ │ │ │ │ │ ├── ArrayFactory.FrameArrayType.html │ │ │ │ │ │ │ ├── ArrayFactory.html │ │ │ │ │ │ │ ├── ArrayWrapper.html │ │ │ │ │ │ │ ├── BitSetArray.html │ │ │ │ │ │ │ ├── BooleanArray.html │ │ │ │ │ │ │ ├── CharArray.html │ │ │ │ │ │ │ ├── ColumnMetadata.html │ │ │ │ │ │ │ ├── DDCArray.html │ │ │ │ │ │ │ ├── DoubleArray.html │ │ │ │ │ │ │ ├── FloatArray.html │ │ │ │ │ │ │ ├── HashIntegerArray.html │ │ │ │ │ │ │ ├── HashLongArray.html │ │ │ │ │ │ │ ├── HashMapToInt.html │ │ │ │ │ │ │ ├── IHashArray.html │ │ │ │ │ │ │ ├── IntegerArray.html │ │ │ │ │ │ │ ├── LongArray.html │ │ │ │ │ │ │ ├── OptionalArray.html │ │ │ │ │ │ │ ├── RaggedArray.html │ │ │ │ │ │ │ └── StringArray.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── compress │ │ │ │ │ │ ├── ArrayCompressionStatistics.html │ │ │ │ │ │ ├── CompressedFrameBlockFactory.html │ │ │ │ │ │ ├── FrameCompressionSettings.html │ │ │ │ │ │ ├── FrameCompressionSettingsBuilder.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── ArrayCompressionStatistics.html │ │ │ │ │ │ │ ├── CompressedFrameBlockFactory.html │ │ │ │ │ │ │ ├── FrameCompressionSettings.html │ │ │ │ │ │ │ └── FrameCompressionSettingsBuilder.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── iterators │ │ │ │ │ │ ├── IteratorFactory.html │ │ │ │ │ │ ├── ObjectRowIterator.html │ │ │ │ │ │ ├── RowIterator.html │ │ │ │ │ │ ├── StringRowIterator.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── IteratorFactory.html │ │ │ │ │ │ │ ├── ObjectRowIterator.html │ │ │ │ │ │ │ ├── RowIterator.html │ │ │ │ │ │ │ └── StringRowIterator.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── FrameFromMatrixBlock.html │ │ │ │ │ │ ├── FrameLibAppend.html │ │ │ │ │ │ ├── FrameLibApplySchema.html │ │ │ │ │ │ ├── FrameLibCompress.html │ │ │ │ │ │ ├── FrameLibDetectSchema.html │ │ │ │ │ │ ├── FrameLibRemoveEmpty.html │ │ │ │ │ │ ├── FrameUtil.html │ │ │ │ │ │ ├── MatrixBlockFromFrame.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── FrameFromMatrixBlock.html │ │ │ │ │ │ │ ├── FrameLibAppend.html │ │ │ │ │ │ │ ├── FrameLibApplySchema.html │ │ │ │ │ │ │ ├── FrameLibCompress.html │ │ │ │ │ │ │ ├── FrameLibDetectSchema.html │ │ │ │ │ │ │ ├── FrameLibRemoveEmpty.html │ │ │ │ │ │ │ ├── FrameUtil.html │ │ │ │ │ │ │ └── MatrixBlockFromFrame.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ ├── functionobjects │ │ │ │ │ ├── And.html │ │ │ │ │ ├── BitwAnd.html │ │ │ │ │ ├── BitwOr.html │ │ │ │ │ ├── BitwShiftL.html │ │ │ │ │ ├── BitwShiftR.html │ │ │ │ │ ├── BitwXor.html │ │ │ │ │ ├── Builtin.BuiltinCode.html │ │ │ │ │ ├── Builtin.html │ │ │ │ │ ├── CM.html │ │ │ │ │ ├── COV.html │ │ │ │ │ ├── CTable.html │ │ │ │ │ ├── DiagIndex.html │ │ │ │ │ ├── Divide.html │ │ │ │ │ ├── Equals.html │ │ │ │ │ ├── FunctionObject.html │ │ │ │ │ ├── GreaterThan.html │ │ │ │ │ ├── GreaterThanEquals.html │ │ │ │ │ ├── IfElse.html │ │ │ │ │ ├── IndexFunction.html │ │ │ │ │ ├── IntegerDivide.html │ │ │ │ │ ├── KahanFunction.html │ │ │ │ │ ├── KahanPlus.html │ │ │ │ │ ├── KahanPlusSq.html │ │ │ │ │ ├── LessThan.html │ │ │ │ │ ├── LessThanEquals.html │ │ │ │ │ ├── Max.html │ │ │ │ │ ├── Mean.html │ │ │ │ │ ├── Min.html │ │ │ │ │ ├── Minus.html │ │ │ │ │ ├── Minus1Multiply.html │ │ │ │ │ ├── MinusMultiply.html │ │ │ │ │ ├── MinusNz.html │ │ │ │ │ ├── Modulus.html │ │ │ │ │ ├── Multiply.html │ │ │ │ │ ├── Multiply2.html │ │ │ │ │ ├── Not.html │ │ │ │ │ ├── NotEquals.html │ │ │ │ │ ├── OffsetColumnIndex.html │ │ │ │ │ ├── Or.html │ │ │ │ │ ├── ParameterizedBuiltin.ParameterizedBuiltinCode.html │ │ │ │ │ ├── ParameterizedBuiltin.ProbabilityDistributionCode.html │ │ │ │ │ ├── ParameterizedBuiltin.html │ │ │ │ │ ├── Plus.html │ │ │ │ │ ├── PlusMultiply.html │ │ │ │ │ ├── Power.html │ │ │ │ │ ├── Power2.html │ │ │ │ │ ├── ReduceAll.html │ │ │ │ │ ├── ReduceCol.html │ │ │ │ │ ├── ReduceDiag.html │ │ │ │ │ ├── ReduceRow.html │ │ │ │ │ ├── RevIndex.html │ │ │ │ │ ├── RollIndex.html │ │ │ │ │ ├── SortIndex.html │ │ │ │ │ ├── SwapIndex.html │ │ │ │ │ ├── TernaryValueFunction.html │ │ │ │ │ ├── ValueComparisonFunction.html │ │ │ │ │ ├── ValueFunction.html │ │ │ │ │ ├── Xor.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── And.html │ │ │ │ │ │ ├── BitwAnd.html │ │ │ │ │ │ ├── BitwOr.html │ │ │ │ │ │ ├── BitwShiftL.html │ │ │ │ │ │ ├── BitwShiftR.html │ │ │ │ │ │ ├── BitwXor.html │ │ │ │ │ │ ├── Builtin.BuiltinCode.html │ │ │ │ │ │ ├── Builtin.html │ │ │ │ │ │ ├── CM.html │ │ │ │ │ │ ├── COV.html │ │ │ │ │ │ ├── CTable.html │ │ │ │ │ │ ├── DiagIndex.html │ │ │ │ │ │ ├── Divide.html │ │ │ │ │ │ ├── Equals.html │ │ │ │ │ │ ├── FunctionObject.html │ │ │ │ │ │ ├── GreaterThan.html │ │ │ │ │ │ ├── GreaterThanEquals.html │ │ │ │ │ │ ├── IfElse.html │ │ │ │ │ │ ├── IndexFunction.html │ │ │ │ │ │ ├── IntegerDivide.html │ │ │ │ │ │ ├── KahanFunction.html │ │ │ │ │ │ ├── KahanPlus.html │ │ │ │ │ │ ├── KahanPlusSq.html │ │ │ │ │ │ ├── LessThan.html │ │ │ │ │ │ ├── LessThanEquals.html │ │ │ │ │ │ ├── Max.html │ │ │ │ │ │ ├── Mean.html │ │ │ │ │ │ ├── Min.html │ │ │ │ │ │ ├── Minus.html │ │ │ │ │ │ ├── Minus1Multiply.html │ │ │ │ │ │ ├── MinusMultiply.html │ │ │ │ │ │ ├── MinusNz.html │ │ │ │ │ │ ├── Modulus.html │ │ │ │ │ │ ├── Multiply.html │ │ │ │ │ │ ├── Multiply2.html │ │ │ │ │ │ ├── Not.html │ │ │ │ │ │ ├── NotEquals.html │ │ │ │ │ │ ├── OffsetColumnIndex.html │ │ │ │ │ │ ├── Or.html │ │ │ │ │ │ ├── ParameterizedBuiltin.ParameterizedBuiltinCode.html │ │ │ │ │ │ ├── ParameterizedBuiltin.ProbabilityDistributionCode.html │ │ │ │ │ │ ├── ParameterizedBuiltin.html │ │ │ │ │ │ ├── Plus.html │ │ │ │ │ │ ├── PlusMultiply.html │ │ │ │ │ │ ├── Power.html │ │ │ │ │ │ ├── Power2.html │ │ │ │ │ │ ├── ReduceAll.html │ │ │ │ │ │ ├── ReduceCol.html │ │ │ │ │ │ ├── ReduceDiag.html │ │ │ │ │ │ ├── ReduceRow.html │ │ │ │ │ │ ├── RevIndex.html │ │ │ │ │ │ ├── RollIndex.html │ │ │ │ │ │ ├── SortIndex.html │ │ │ │ │ │ ├── SwapIndex.html │ │ │ │ │ │ ├── TernaryValueFunction.html │ │ │ │ │ │ ├── ValueComparisonFunction.html │ │ │ │ │ │ ├── ValueFunction.html │ │ │ │ │ │ └── Xor.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── instructions │ │ │ │ │ ├── CPInstructionParser.html │ │ │ │ │ ├── FEDInstructionParser.html │ │ │ │ │ ├── GPUInstructionParser.html │ │ │ │ │ ├── Instruction.IType.html │ │ │ │ │ ├── Instruction.html │ │ │ │ │ ├── InstructionParser.html │ │ │ │ │ ├── InstructionUtils.html │ │ │ │ │ ├── SPInstructionParser.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── CPInstructionParser.html │ │ │ │ │ │ ├── FEDInstructionParser.html │ │ │ │ │ │ ├── GPUInstructionParser.html │ │ │ │ │ │ ├── Instruction.IType.html │ │ │ │ │ │ ├── Instruction.html │ │ │ │ │ │ ├── InstructionParser.html │ │ │ │ │ │ ├── InstructionUtils.html │ │ │ │ │ │ └── SPInstructionParser.html │ │ │ │ │ ├── cp │ │ │ │ │ │ ├── AggregateBinaryCPInstruction.html │ │ │ │ │ │ ├── AggregateTernaryCPInstruction.html │ │ │ │ │ │ ├── AggregateUnaryCPInstruction.AUType.html │ │ │ │ │ │ ├── AggregateUnaryCPInstruction.html │ │ │ │ │ │ ├── AppendCPInstruction.AppendType.html │ │ │ │ │ │ ├── AppendCPInstruction.html │ │ │ │ │ │ ├── BinaryCPInstruction.html │ │ │ │ │ │ ├── BinaryFrameFrameCPInstruction.html │ │ │ │ │ │ ├── BinaryFrameMatrixCPInstruction.html │ │ │ │ │ │ ├── BinaryMatrixMatrixCPInstruction.html │ │ │ │ │ │ ├── BinaryMatrixScalarCPInstruction.html │ │ │ │ │ │ ├── BinaryScalarScalarCPInstruction.html │ │ │ │ │ │ ├── BinaryTensorTensorCPInstruction.html │ │ │ │ │ │ ├── BooleanObject.html │ │ │ │ │ │ ├── BroadcastCPInstruction.html │ │ │ │ │ │ ├── BuiltinNaryCPInstruction.html │ │ │ │ │ │ ├── CM_COV_Object.html │ │ │ │ │ │ ├── CPInstruction.CPType.html │ │ │ │ │ │ ├── CPInstruction.html │ │ │ │ │ │ ├── CPOperand.html │ │ │ │ │ │ ├── CentralMomentCPInstruction.html │ │ │ │ │ │ ├── CiphertextMatrix.html │ │ │ │ │ │ ├── CompressionCPInstruction.html │ │ │ │ │ │ ├── ComputationCPInstruction.html │ │ │ │ │ │ ├── CovarianceCPInstruction.html │ │ │ │ │ │ ├── CtableCPInstruction.html │ │ │ │ │ │ ├── Data.html │ │ │ │ │ │ ├── DataGenCPInstruction.html │ │ │ │ │ │ ├── DeCompressionCPInstruction.html │ │ │ │ │ │ ├── DnnCPInstruction.html │ │ │ │ │ │ ├── DoubleObject.html │ │ │ │ │ │ ├── Encrypted.html │ │ │ │ │ │ ├── EvalNaryCPInstruction.html │ │ │ │ │ │ ├── EvictCPInstruction.html │ │ │ │ │ │ ├── FrameAppendCPInstruction.html │ │ │ │ │ │ ├── FrameIndexingCPInstruction.html │ │ │ │ │ │ ├── FunctionCallCPInstruction.html │ │ │ │ │ │ ├── IndexingCPInstruction.html │ │ │ │ │ │ ├── IntObject.html │ │ │ │ │ │ ├── KahanObject.html │ │ │ │ │ │ ├── ListAppendRemoveCPInstruction.html │ │ │ │ │ │ ├── ListIndexingCPInstruction.html │ │ │ │ │ │ ├── ListObject.html │ │ │ │ │ │ ├── LocalCPInstruction.html │ │ │ │ │ │ ├── MMChainCPInstruction.html │ │ │ │ │ │ ├── MMTSJCPInstruction.html │ │ │ │ │ │ ├── MatrixAppendCPInstruction.html │ │ │ │ │ │ ├── MatrixBuiltinNaryCPInstruction.html │ │ │ │ │ │ ├── MatrixIndexingCPInstruction.html │ │ │ │ │ │ ├── MultiReturnBuiltinCPInstruction.html │ │ │ │ │ │ ├── MultiReturnComplexMatrixBuiltinCPInstruction.html │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinCPInstruction.html │ │ │ │ │ │ ├── PMMJCPInstruction.html │ │ │ │ │ │ ├── ParameterizedBuiltinCPInstruction.html │ │ │ │ │ │ ├── ParamservBuiltinCPInstruction.html │ │ │ │ │ │ ├── PlaintextMatrix.html │ │ │ │ │ │ ├── PrefetchCPInstruction.html │ │ │ │ │ │ ├── QuantilePickCPInstruction.html │ │ │ │ │ │ ├── QuantileSortCPInstruction.html │ │ │ │ │ │ ├── QuaternaryCPInstruction.html │ │ │ │ │ │ ├── ReorgCPInstruction.html │ │ │ │ │ │ ├── ReshapeCPInstruction.html │ │ │ │ │ │ ├── ScalarAppendCPInstruction.html │ │ │ │ │ │ ├── ScalarBuiltinNaryCPInstruction.html │ │ │ │ │ │ ├── ScalarObject.html │ │ │ │ │ │ ├── ScalarObjectFactory.html │ │ │ │ │ │ ├── SpoofCPInstruction.html │ │ │ │ │ │ ├── SqlCPInstruction.html │ │ │ │ │ │ ├── StringInitCPInstruction.html │ │ │ │ │ │ ├── StringObject.html │ │ │ │ │ │ ├── TernaryCPInstruction.html │ │ │ │ │ │ ├── TernaryFrameScalarCPInstruction.html │ │ │ │ │ │ ├── TriggerBroadcastTask.html │ │ │ │ │ │ ├── TriggerCheckpointTask.html │ │ │ │ │ │ ├── TriggerPrefetchTask.html │ │ │ │ │ │ ├── UaggOuterChainCPInstruction.html │ │ │ │ │ │ ├── UnaryCPInstruction.html │ │ │ │ │ │ ├── UnaryFrameCPInstruction.html │ │ │ │ │ │ ├── UnaryMatrixCPInstruction.html │ │ │ │ │ │ ├── UnaryScalarCPInstruction.html │ │ │ │ │ │ ├── VariableCPInstruction.VariableOperationCode.html │ │ │ │ │ │ ├── VariableCPInstruction.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── AggregateBinaryCPInstruction.html │ │ │ │ │ │ │ ├── AggregateTernaryCPInstruction.html │ │ │ │ │ │ │ ├── AggregateUnaryCPInstruction.AUType.html │ │ │ │ │ │ │ ├── AggregateUnaryCPInstruction.html │ │ │ │ │ │ │ ├── AppendCPInstruction.AppendType.html │ │ │ │ │ │ │ ├── AppendCPInstruction.html │ │ │ │ │ │ │ ├── BinaryCPInstruction.html │ │ │ │ │ │ │ ├── BinaryFrameFrameCPInstruction.html │ │ │ │ │ │ │ ├── BinaryFrameMatrixCPInstruction.html │ │ │ │ │ │ │ ├── BinaryMatrixMatrixCPInstruction.html │ │ │ │ │ │ │ ├── BinaryMatrixScalarCPInstruction.html │ │ │ │ │ │ │ ├── BinaryScalarScalarCPInstruction.html │ │ │ │ │ │ │ ├── BinaryTensorTensorCPInstruction.html │ │ │ │ │ │ │ ├── BooleanObject.html │ │ │ │ │ │ │ ├── BroadcastCPInstruction.html │ │ │ │ │ │ │ ├── BuiltinNaryCPInstruction.html │ │ │ │ │ │ │ ├── CM_COV_Object.html │ │ │ │ │ │ │ ├── CPInstruction.CPType.html │ │ │ │ │ │ │ ├── CPInstruction.html │ │ │ │ │ │ │ ├── CPOperand.html │ │ │ │ │ │ │ ├── CentralMomentCPInstruction.html │ │ │ │ │ │ │ ├── CiphertextMatrix.html │ │ │ │ │ │ │ ├── CompressionCPInstruction.html │ │ │ │ │ │ │ ├── ComputationCPInstruction.html │ │ │ │ │ │ │ ├── CovarianceCPInstruction.html │ │ │ │ │ │ │ ├── CtableCPInstruction.html │ │ │ │ │ │ │ ├── Data.html │ │ │ │ │ │ │ ├── DataGenCPInstruction.html │ │ │ │ │ │ │ ├── DeCompressionCPInstruction.html │ │ │ │ │ │ │ ├── DnnCPInstruction.html │ │ │ │ │ │ │ ├── DoubleObject.html │ │ │ │ │ │ │ ├── Encrypted.html │ │ │ │ │ │ │ ├── EvalNaryCPInstruction.html │ │ │ │ │ │ │ ├── EvictCPInstruction.html │ │ │ │ │ │ │ ├── FrameAppendCPInstruction.html │ │ │ │ │ │ │ ├── FrameIndexingCPInstruction.html │ │ │ │ │ │ │ ├── FunctionCallCPInstruction.html │ │ │ │ │ │ │ ├── IndexingCPInstruction.html │ │ │ │ │ │ │ ├── IntObject.html │ │ │ │ │ │ │ ├── KahanObject.html │ │ │ │ │ │ │ ├── ListAppendRemoveCPInstruction.html │ │ │ │ │ │ │ ├── ListIndexingCPInstruction.html │ │ │ │ │ │ │ ├── ListObject.html │ │ │ │ │ │ │ ├── LocalCPInstruction.html │ │ │ │ │ │ │ ├── MMChainCPInstruction.html │ │ │ │ │ │ │ ├── MMTSJCPInstruction.html │ │ │ │ │ │ │ ├── MatrixAppendCPInstruction.html │ │ │ │ │ │ │ ├── MatrixBuiltinNaryCPInstruction.html │ │ │ │ │ │ │ ├── MatrixIndexingCPInstruction.html │ │ │ │ │ │ │ ├── MultiReturnBuiltinCPInstruction.html │ │ │ │ │ │ │ ├── MultiReturnComplexMatrixBuiltinCPInstruction.html │ │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinCPInstruction.html │ │ │ │ │ │ │ ├── PMMJCPInstruction.html │ │ │ │ │ │ │ ├── ParameterizedBuiltinCPInstruction.html │ │ │ │ │ │ │ ├── ParamservBuiltinCPInstruction.html │ │ │ │ │ │ │ ├── PlaintextMatrix.html │ │ │ │ │ │ │ ├── PrefetchCPInstruction.html │ │ │ │ │ │ │ ├── QuantilePickCPInstruction.html │ │ │ │ │ │ │ ├── QuantileSortCPInstruction.html │ │ │ │ │ │ │ ├── QuaternaryCPInstruction.html │ │ │ │ │ │ │ ├── ReorgCPInstruction.html │ │ │ │ │ │ │ ├── ReshapeCPInstruction.html │ │ │ │ │ │ │ ├── ScalarAppendCPInstruction.html │ │ │ │ │ │ │ ├── ScalarBuiltinNaryCPInstruction.html │ │ │ │ │ │ │ ├── ScalarObject.html │ │ │ │ │ │ │ ├── ScalarObjectFactory.html │ │ │ │ │ │ │ ├── SpoofCPInstruction.html │ │ │ │ │ │ │ ├── SqlCPInstruction.html │ │ │ │ │ │ │ ├── StringInitCPInstruction.html │ │ │ │ │ │ │ ├── StringObject.html │ │ │ │ │ │ │ ├── TernaryCPInstruction.html │ │ │ │ │ │ │ ├── TernaryFrameScalarCPInstruction.html │ │ │ │ │ │ │ ├── TriggerBroadcastTask.html │ │ │ │ │ │ │ ├── TriggerCheckpointTask.html │ │ │ │ │ │ │ ├── TriggerPrefetchTask.html │ │ │ │ │ │ │ ├── UaggOuterChainCPInstruction.html │ │ │ │ │ │ │ ├── UnaryCPInstruction.html │ │ │ │ │ │ │ ├── UnaryFrameCPInstruction.html │ │ │ │ │ │ │ ├── UnaryMatrixCPInstruction.html │ │ │ │ │ │ │ ├── UnaryScalarCPInstruction.html │ │ │ │ │ │ │ ├── VariableCPInstruction.VariableOperationCode.html │ │ │ │ │ │ │ └── VariableCPInstruction.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── cpfile │ │ │ │ │ │ ├── MatrixIndexingCPFileInstruction.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ └── MatrixIndexingCPFileInstruction.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── fed │ │ │ │ │ │ ├── AggregateBinaryFEDInstruction.html │ │ │ │ │ │ ├── AggregateTernaryFEDInstruction.html │ │ │ │ │ │ ├── AggregateUnaryFEDInstruction.html │ │ │ │ │ │ ├── AppendFEDInstruction.html │ │ │ │ │ │ ├── BinaryFEDInstruction.html │ │ │ │ │ │ ├── BinaryMatrixMatrixFEDInstruction.html │ │ │ │ │ │ ├── BinaryMatrixScalarFEDInstruction.html │ │ │ │ │ │ ├── CastFEDInstruction.html │ │ │ │ │ │ ├── CentralMomentFEDInstruction.html │ │ │ │ │ │ ├── ComputationFEDInstruction.html │ │ │ │ │ │ ├── CovarianceFEDInstruction.html │ │ │ │ │ │ ├── CtableFEDInstruction.html │ │ │ │ │ │ ├── CumulativeOffsetFEDInstruction.html │ │ │ │ │ │ ├── FEDInstruction.FEDType.html │ │ │ │ │ │ ├── FEDInstruction.FederatedOutput.html │ │ │ │ │ │ ├── FEDInstruction.html │ │ │ │ │ │ ├── FEDInstructionUtils.html │ │ │ │ │ │ ├── IndexingFEDInstruction.html │ │ │ │ │ │ ├── InitFEDInstruction.html │ │ │ │ │ │ ├── MMChainFEDInstruction.html │ │ │ │ │ │ ├── MMFEDInstruction.html │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinFEDInstruction.CreateFrameEncoder.html │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinFEDInstruction.ExecuteFrameEncoder.html │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinFEDInstruction.html │ │ │ │ │ │ ├── ParameterizedBuiltinFEDInstruction.DecodeMatrix.html │ │ │ │ │ │ ├── ParameterizedBuiltinFEDInstruction.html │ │ │ │ │ │ ├── QuantilePickFEDInstruction.CreateMatrixFromFrame.html │ │ │ │ │ │ ├── QuantilePickFEDInstruction.GetHistogram.html │ │ │ │ │ │ ├── QuantilePickFEDInstruction.GetValuesInRange.html │ │ │ │ │ │ ├── QuantilePickFEDInstruction.GetValuesInRanges.html │ │ │ │ │ │ ├── QuantilePickFEDInstruction.MinMax.html │ │ │ │ │ │ ├── QuantilePickFEDInstruction.html │ │ │ │ │ │ ├── QuantileSortFEDInstruction.html │ │ │ │ │ │ ├── QuaternaryFEDInstruction.html │ │ │ │ │ │ ├── QuaternaryWCeMMFEDInstruction.html │ │ │ │ │ │ ├── QuaternaryWDivMMFEDInstruction.html │ │ │ │ │ │ ├── QuaternaryWSLossFEDInstruction.html │ │ │ │ │ │ ├── QuaternaryWSigmoidFEDInstruction.html │ │ │ │ │ │ ├── QuaternaryWUMMFEDInstruction.html │ │ │ │ │ │ ├── ReblockFEDInstruction.html │ │ │ │ │ │ ├── ReorgFEDInstruction.DiagMatrix.html │ │ │ │ │ │ ├── ReorgFEDInstruction.Rdiag.html │ │ │ │ │ │ ├── ReorgFEDInstruction.SliceMatrix.html │ │ │ │ │ │ ├── ReorgFEDInstruction.html │ │ │ │ │ │ ├── ReshapeFEDInstruction.html │ │ │ │ │ │ ├── SpoofFEDInstruction.html │ │ │ │ │ │ ├── TernaryFEDInstruction.html │ │ │ │ │ │ ├── TernaryFrameScalarFEDInstruction.html │ │ │ │ │ │ ├── TsmmFEDInstruction.html │ │ │ │ │ │ ├── UnaryFEDInstruction.html │ │ │ │ │ │ ├── UnaryMatrixFEDInstruction.html │ │ │ │ │ │ ├── VariableFEDInstruction.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── AggregateBinaryFEDInstruction.html │ │ │ │ │ │ │ ├── AggregateTernaryFEDInstruction.html │ │ │ │ │ │ │ ├── AggregateUnaryFEDInstruction.html │ │ │ │ │ │ │ ├── AppendFEDInstruction.html │ │ │ │ │ │ │ ├── BinaryFEDInstruction.html │ │ │ │ │ │ │ ├── BinaryMatrixMatrixFEDInstruction.html │ │ │ │ │ │ │ ├── BinaryMatrixScalarFEDInstruction.html │ │ │ │ │ │ │ ├── CastFEDInstruction.html │ │ │ │ │ │ │ ├── CentralMomentFEDInstruction.html │ │ │ │ │ │ │ ├── ComputationFEDInstruction.html │ │ │ │ │ │ │ ├── CovarianceFEDInstruction.html │ │ │ │ │ │ │ ├── CtableFEDInstruction.html │ │ │ │ │ │ │ ├── CumulativeOffsetFEDInstruction.html │ │ │ │ │ │ │ ├── FEDInstruction.FEDType.html │ │ │ │ │ │ │ ├── FEDInstruction.FederatedOutput.html │ │ │ │ │ │ │ ├── FEDInstruction.html │ │ │ │ │ │ │ ├── FEDInstructionUtils.html │ │ │ │ │ │ │ ├── IndexingFEDInstruction.html │ │ │ │ │ │ │ ├── InitFEDInstruction.html │ │ │ │ │ │ │ ├── MMChainFEDInstruction.html │ │ │ │ │ │ │ ├── MMFEDInstruction.html │ │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinFEDInstruction.CreateFrameEncoder.html │ │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinFEDInstruction.ExecuteFrameEncoder.html │ │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinFEDInstruction.html │ │ │ │ │ │ │ ├── ParameterizedBuiltinFEDInstruction.DecodeMatrix.html │ │ │ │ │ │ │ ├── ParameterizedBuiltinFEDInstruction.html │ │ │ │ │ │ │ ├── QuantilePickFEDInstruction.CreateMatrixFromFrame.html │ │ │ │ │ │ │ ├── QuantilePickFEDInstruction.GetHistogram.html │ │ │ │ │ │ │ ├── QuantilePickFEDInstruction.GetValuesInRange.html │ │ │ │ │ │ │ ├── QuantilePickFEDInstruction.GetValuesInRanges.html │ │ │ │ │ │ │ ├── QuantilePickFEDInstruction.MinMax.html │ │ │ │ │ │ │ ├── QuantilePickFEDInstruction.html │ │ │ │ │ │ │ ├── QuantileSortFEDInstruction.html │ │ │ │ │ │ │ ├── QuaternaryFEDInstruction.html │ │ │ │ │ │ │ ├── QuaternaryWCeMMFEDInstruction.html │ │ │ │ │ │ │ ├── QuaternaryWDivMMFEDInstruction.html │ │ │ │ │ │ │ ├── QuaternaryWSLossFEDInstruction.html │ │ │ │ │ │ │ ├── QuaternaryWSigmoidFEDInstruction.html │ │ │ │ │ │ │ ├── QuaternaryWUMMFEDInstruction.html │ │ │ │ │ │ │ ├── ReblockFEDInstruction.html │ │ │ │ │ │ │ ├── ReorgFEDInstruction.DiagMatrix.html │ │ │ │ │ │ │ ├── ReorgFEDInstruction.Rdiag.html │ │ │ │ │ │ │ ├── ReorgFEDInstruction.SliceMatrix.html │ │ │ │ │ │ │ ├── ReorgFEDInstruction.html │ │ │ │ │ │ │ ├── ReshapeFEDInstruction.html │ │ │ │ │ │ │ ├── SpoofFEDInstruction.html │ │ │ │ │ │ │ ├── TernaryFEDInstruction.html │ │ │ │ │ │ │ ├── TernaryFrameScalarFEDInstruction.html │ │ │ │ │ │ │ ├── TsmmFEDInstruction.html │ │ │ │ │ │ │ ├── UnaryFEDInstruction.html │ │ │ │ │ │ │ ├── UnaryMatrixFEDInstruction.html │ │ │ │ │ │ │ └── VariableFEDInstruction.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── gpu │ │ │ │ │ │ ├── AggregateBinaryGPUInstruction.html │ │ │ │ │ │ ├── AggregateUnaryGPUInstruction.html │ │ │ │ │ │ ├── ArithmeticBinaryGPUInstruction.html │ │ │ │ │ │ ├── BuiltinBinaryGPUInstruction.html │ │ │ │ │ │ ├── BuiltinUnaryGPUInstruction.html │ │ │ │ │ │ ├── DnnGPUInstruction.html │ │ │ │ │ │ ├── GPUInstruction.GPUINSTRUCTION_TYPE.html │ │ │ │ │ │ ├── GPUInstruction.html │ │ │ │ │ │ ├── MMTSJGPUInstruction.html │ │ │ │ │ │ ├── MatrixAppendGPUInstruction.html │ │ │ │ │ │ ├── MatrixBuiltinGPUInstruction.html │ │ │ │ │ │ ├── MatrixIndexingGPUInstruction.html │ │ │ │ │ │ ├── MatrixMatrixArithmeticGPUInstruction.html │ │ │ │ │ │ ├── MatrixMatrixAxpyGPUInstruction.html │ │ │ │ │ │ ├── MatrixMatrixBuiltinGPUInstruction.html │ │ │ │ │ │ ├── MatrixMatrixRelationalBinaryGPUInstruction.html │ │ │ │ │ │ ├── MatrixReshapeGPUInstruction.html │ │ │ │ │ │ ├── RelationalBinaryGPUInstruction.html │ │ │ │ │ │ ├── ReorgGPUInstruction.html │ │ │ │ │ │ ├── ScalarMatrixArithmeticGPUInstruction.html │ │ │ │ │ │ ├── ScalarMatrixBuiltinGPUInstruction.html │ │ │ │ │ │ ├── ScalarMatrixRelationalBinaryGPUInstruction.html │ │ │ │ │ │ ├── SpoofCUDAInstruction.DoublePrecision.html │ │ │ │ │ │ ├── SpoofCUDAInstruction.SinglePrecision.html │ │ │ │ │ │ ├── SpoofCUDAInstruction.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── AggregateBinaryGPUInstruction.html │ │ │ │ │ │ │ ├── AggregateUnaryGPUInstruction.html │ │ │ │ │ │ │ ├── ArithmeticBinaryGPUInstruction.html │ │ │ │ │ │ │ ├── BuiltinBinaryGPUInstruction.html │ │ │ │ │ │ │ ├── BuiltinUnaryGPUInstruction.html │ │ │ │ │ │ │ ├── DnnGPUInstruction.html │ │ │ │ │ │ │ ├── GPUInstruction.GPUINSTRUCTION_TYPE.html │ │ │ │ │ │ │ ├── GPUInstruction.html │ │ │ │ │ │ │ ├── MMTSJGPUInstruction.html │ │ │ │ │ │ │ ├── MatrixAppendGPUInstruction.html │ │ │ │ │ │ │ ├── MatrixBuiltinGPUInstruction.html │ │ │ │ │ │ │ ├── MatrixIndexingGPUInstruction.html │ │ │ │ │ │ │ ├── MatrixMatrixArithmeticGPUInstruction.html │ │ │ │ │ │ │ ├── MatrixMatrixAxpyGPUInstruction.html │ │ │ │ │ │ │ ├── MatrixMatrixBuiltinGPUInstruction.html │ │ │ │ │ │ │ ├── MatrixMatrixRelationalBinaryGPUInstruction.html │ │ │ │ │ │ │ ├── MatrixReshapeGPUInstruction.html │ │ │ │ │ │ │ ├── RelationalBinaryGPUInstruction.html │ │ │ │ │ │ │ ├── ReorgGPUInstruction.html │ │ │ │ │ │ │ ├── ScalarMatrixArithmeticGPUInstruction.html │ │ │ │ │ │ │ ├── ScalarMatrixBuiltinGPUInstruction.html │ │ │ │ │ │ │ ├── ScalarMatrixRelationalBinaryGPUInstruction.html │ │ │ │ │ │ │ ├── SpoofCUDAInstruction.DoublePrecision.html │ │ │ │ │ │ │ ├── SpoofCUDAInstruction.SinglePrecision.html │ │ │ │ │ │ │ └── SpoofCUDAInstruction.html │ │ │ │ │ │ ├── context │ │ │ │ │ │ │ ├── CSRPointer.html │ │ │ │ │ │ │ ├── CudaMemoryAllocator.html │ │ │ │ │ │ │ ├── ExecutionConfig.html │ │ │ │ │ │ │ ├── GPUContext.html │ │ │ │ │ │ │ ├── GPUContextPool.html │ │ │ │ │ │ │ ├── GPULazyCudaFreeMemoryManager.html │ │ │ │ │ │ │ ├── GPUMatrixMemoryManager.html │ │ │ │ │ │ │ ├── GPUMemoryAllocator.html │ │ │ │ │ │ │ ├── GPUMemoryEviction.html │ │ │ │ │ │ │ ├── GPUMemoryManager.EvictionPolicyBasedComparator.html │ │ │ │ │ │ │ ├── GPUMemoryManager.html │ │ │ │ │ │ │ ├── GPUObject.html │ │ │ │ │ │ │ ├── JCudaKernels.html │ │ │ │ │ │ │ ├── ShadowBuffer.html │ │ │ │ │ │ │ ├── UnifiedMemoryAllocator.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ ├── CSRPointer.html │ │ │ │ │ │ │ │ ├── CudaMemoryAllocator.html │ │ │ │ │ │ │ │ ├── ExecutionConfig.html │ │ │ │ │ │ │ │ ├── GPUContext.html │ │ │ │ │ │ │ │ ├── GPUContextPool.html │ │ │ │ │ │ │ │ ├── GPULazyCudaFreeMemoryManager.html │ │ │ │ │ │ │ │ ├── GPUMatrixMemoryManager.html │ │ │ │ │ │ │ │ ├── GPUMemoryAllocator.html │ │ │ │ │ │ │ │ ├── GPUMemoryEviction.html │ │ │ │ │ │ │ │ ├── GPUMemoryManager.EvictionPolicyBasedComparator.html │ │ │ │ │ │ │ │ ├── GPUMemoryManager.html │ │ │ │ │ │ │ │ ├── GPUObject.html │ │ │ │ │ │ │ │ ├── JCudaKernels.html │ │ │ │ │ │ │ │ ├── ShadowBuffer.html │ │ │ │ │ │ │ │ └── UnifiedMemoryAllocator.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ ├── package-use.html │ │ │ │ │ └── spark │ │ │ │ │ │ ├── AggregateBinarySPInstruction.html │ │ │ │ │ │ ├── AggregateTernarySPInstruction.html │ │ │ │ │ │ ├── AggregateUnarySPInstruction.RDDUAggFunction2.html │ │ │ │ │ │ ├── AggregateUnarySPInstruction.RDDUTensorAggFunction2.html │ │ │ │ │ │ ├── AggregateUnarySPInstruction.html │ │ │ │ │ │ ├── AggregateUnarySketchSPInstruction.html │ │ │ │ │ │ ├── AppendGAlignedSPInstruction.ShiftColumnIndex.html │ │ │ │ │ │ ├── AppendGAlignedSPInstruction.html │ │ │ │ │ │ ├── AppendGSPInstruction.MergeWithShiftedBlocks.html │ │ │ │ │ │ ├── AppendGSPInstruction.ShiftMatrix.html │ │ │ │ │ │ ├── AppendGSPInstruction.html │ │ │ │ │ │ ├── AppendMSPInstruction.html │ │ │ │ │ │ ├── AppendRSPInstruction.html │ │ │ │ │ │ ├── AppendSPInstruction.html │ │ │ │ │ │ ├── BinUaggChainSPInstruction.RDDBinUaggChainFunction.html │ │ │ │ │ │ ├── BinUaggChainSPInstruction.html │ │ │ │ │ │ ├── BinaryFrameFrameSPInstruction.html │ │ │ │ │ │ ├── BinaryFrameMatrixSPInstruction.html │ │ │ │ │ │ ├── BinaryMatrixBVectorSPInstruction.html │ │ │ │ │ │ ├── BinaryMatrixMatrixSPInstruction.html │ │ │ │ │ │ ├── BinaryMatrixScalarSPInstruction.html │ │ │ │ │ │ ├── BinarySPInstruction.html │ │ │ │ │ │ ├── BinaryTensorTensorBroadcastSPInstruction.html │ │ │ │ │ │ ├── BinaryTensorTensorSPInstruction.html │ │ │ │ │ │ ├── BuiltinNarySPInstruction.PadBlocksFunction.html │ │ │ │ │ │ ├── BuiltinNarySPInstruction.html │ │ │ │ │ │ ├── CSVReblockSPInstruction.html │ │ │ │ │ │ ├── CastSPInstruction.html │ │ │ │ │ │ ├── CentralMomentSPInstruction.html │ │ │ │ │ │ ├── CheckpointSPInstruction.html │ │ │ │ │ │ ├── CompressionSPInstruction.CompressionFunction.html │ │ │ │ │ │ ├── CompressionSPInstruction.CompressionWorkloadFunction.html │ │ │ │ │ │ ├── CompressionSPInstruction.SizeFunction.html │ │ │ │ │ │ ├── CompressionSPInstruction.html │ │ │ │ │ │ ├── ComputationSPInstruction.html │ │ │ │ │ │ ├── CovarianceSPInstruction.html │ │ │ │ │ │ ├── CpmmSPInstruction.html │ │ │ │ │ │ ├── CtableSPInstruction.MapJoinSignature1.html │ │ │ │ │ │ ├── CtableSPInstruction.MapJoinSignature2.html │ │ │ │ │ │ ├── CtableSPInstruction.MapJoinSignature3.html │ │ │ │ │ │ ├── CtableSPInstruction.html │ │ │ │ │ │ ├── CumulativeAggregateSPInstruction.html │ │ │ │ │ │ ├── CumulativeOffsetSPInstruction.html │ │ │ │ │ │ ├── DeCompressionSPInstruction.DeCompressionFunction.html │ │ │ │ │ │ ├── DeCompressionSPInstruction.html │ │ │ │ │ │ ├── DnnSPInstruction.html │ │ │ │ │ │ ├── FrameAppendMSPInstruction.html │ │ │ │ │ │ ├── FrameAppendRSPInstruction.html │ │ │ │ │ │ ├── FrameIndexingSPInstruction.html │ │ │ │ │ │ ├── IndexingSPInstruction.html │ │ │ │ │ │ ├── LIBSVMReblockSPInstruction.html │ │ │ │ │ │ ├── MapmmChainSPInstruction.html │ │ │ │ │ │ ├── MapmmSPInstruction.html │ │ │ │ │ │ ├── MatrixAppendMSPInstruction.html │ │ │ │ │ │ ├── MatrixAppendRSPInstruction.html │ │ │ │ │ │ ├── MatrixIndexingSPInstruction.html │ │ │ │ │ │ ├── MatrixReshapeSPInstruction.html │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinSPInstruction.TransformEncodeBuild2Function.html │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinSPInstruction.TransformEncodeBuildFunction.html │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinSPInstruction.TransformEncodeGroup2Function.html │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinSPInstruction.TransformEncodeGroupFunction.html │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinSPInstruction.html │ │ │ │ │ │ ├── PMapmmSPInstruction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.CreateMatrixCell.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDContainsFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDContainsVectFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDFrameReplaceFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDMapGroupedAggFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDMapGroupedAggFunction2.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDRExpandFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDRemoveEmptyFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDRemoveEmptyFunctionInMem.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDReplaceFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDTokenizeFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDTransformApplyFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDTransformApplyFunction2.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDTransformApplyOffsetFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDTransformDecodeExpandFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDTransformDecodeFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.html │ │ │ │ │ │ ├── PmmSPInstruction.html │ │ │ │ │ │ ├── QuantilePickSPInstruction.html │ │ │ │ │ │ ├── QuantileSortSPInstruction.html │ │ │ │ │ │ ├── QuaternarySPInstruction.html │ │ │ │ │ │ ├── RandSPInstruction.html │ │ │ │ │ │ ├── ReblockSPInstruction.html │ │ │ │ │ │ ├── ReorgSPInstruction.html │ │ │ │ │ │ ├── RmmSPInstruction.html │ │ │ │ │ │ ├── SPInstruction.SPType.html │ │ │ │ │ │ ├── SPInstruction.html │ │ │ │ │ │ ├── SpoofSPInstruction.ReplicateRightFactorFunction.html │ │ │ │ │ │ ├── SpoofSPInstruction.html │ │ │ │ │ │ ├── TernaryFrameScalarSPInstruction.html │ │ │ │ │ │ ├── TernarySPInstruction.html │ │ │ │ │ │ ├── Tsmm2SPInstruction.html │ │ │ │ │ │ ├── TsmmSPInstruction.html │ │ │ │ │ │ ├── UaggOuterChainSPInstruction.html │ │ │ │ │ │ ├── UnaryFrameSPInstruction.html │ │ │ │ │ │ ├── UnaryMatrixSPInstruction.html │ │ │ │ │ │ ├── UnarySPInstruction.html │ │ │ │ │ │ ├── WriteSPInstruction.html │ │ │ │ │ │ ├── ZipmmSPInstruction.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── AggregateBinarySPInstruction.html │ │ │ │ │ │ ├── AggregateTernarySPInstruction.html │ │ │ │ │ │ ├── AggregateUnarySPInstruction.RDDUAggFunction2.html │ │ │ │ │ │ ├── AggregateUnarySPInstruction.RDDUTensorAggFunction2.html │ │ │ │ │ │ ├── AggregateUnarySPInstruction.html │ │ │ │ │ │ ├── AggregateUnarySketchSPInstruction.html │ │ │ │ │ │ ├── AppendGAlignedSPInstruction.ShiftColumnIndex.html │ │ │ │ │ │ ├── AppendGAlignedSPInstruction.html │ │ │ │ │ │ ├── AppendGSPInstruction.MergeWithShiftedBlocks.html │ │ │ │ │ │ ├── AppendGSPInstruction.ShiftMatrix.html │ │ │ │ │ │ ├── AppendGSPInstruction.html │ │ │ │ │ │ ├── AppendMSPInstruction.html │ │ │ │ │ │ ├── AppendRSPInstruction.html │ │ │ │ │ │ ├── AppendSPInstruction.html │ │ │ │ │ │ ├── BinUaggChainSPInstruction.RDDBinUaggChainFunction.html │ │ │ │ │ │ ├── BinUaggChainSPInstruction.html │ │ │ │ │ │ ├── BinaryFrameFrameSPInstruction.html │ │ │ │ │ │ ├── BinaryFrameMatrixSPInstruction.html │ │ │ │ │ │ ├── BinaryMatrixBVectorSPInstruction.html │ │ │ │ │ │ ├── BinaryMatrixMatrixSPInstruction.html │ │ │ │ │ │ ├── BinaryMatrixScalarSPInstruction.html │ │ │ │ │ │ ├── BinarySPInstruction.html │ │ │ │ │ │ ├── BinaryTensorTensorBroadcastSPInstruction.html │ │ │ │ │ │ ├── BinaryTensorTensorSPInstruction.html │ │ │ │ │ │ ├── BuiltinNarySPInstruction.PadBlocksFunction.html │ │ │ │ │ │ ├── BuiltinNarySPInstruction.html │ │ │ │ │ │ ├── CSVReblockSPInstruction.html │ │ │ │ │ │ ├── CastSPInstruction.html │ │ │ │ │ │ ├── CentralMomentSPInstruction.html │ │ │ │ │ │ ├── CheckpointSPInstruction.html │ │ │ │ │ │ ├── CompressionSPInstruction.CompressionFunction.html │ │ │ │ │ │ ├── CompressionSPInstruction.CompressionWorkloadFunction.html │ │ │ │ │ │ ├── CompressionSPInstruction.SizeFunction.html │ │ │ │ │ │ ├── CompressionSPInstruction.html │ │ │ │ │ │ ├── ComputationSPInstruction.html │ │ │ │ │ │ ├── CovarianceSPInstruction.html │ │ │ │ │ │ ├── CpmmSPInstruction.html │ │ │ │ │ │ ├── CtableSPInstruction.MapJoinSignature1.html │ │ │ │ │ │ ├── CtableSPInstruction.MapJoinSignature2.html │ │ │ │ │ │ ├── CtableSPInstruction.MapJoinSignature3.html │ │ │ │ │ │ ├── CtableSPInstruction.html │ │ │ │ │ │ ├── CumulativeAggregateSPInstruction.html │ │ │ │ │ │ ├── CumulativeOffsetSPInstruction.html │ │ │ │ │ │ ├── DeCompressionSPInstruction.DeCompressionFunction.html │ │ │ │ │ │ ├── DeCompressionSPInstruction.html │ │ │ │ │ │ ├── DnnSPInstruction.html │ │ │ │ │ │ ├── FrameAppendMSPInstruction.html │ │ │ │ │ │ ├── FrameAppendRSPInstruction.html │ │ │ │ │ │ ├── FrameIndexingSPInstruction.html │ │ │ │ │ │ ├── IndexingSPInstruction.html │ │ │ │ │ │ ├── LIBSVMReblockSPInstruction.html │ │ │ │ │ │ ├── MapmmChainSPInstruction.html │ │ │ │ │ │ ├── MapmmSPInstruction.html │ │ │ │ │ │ ├── MatrixAppendMSPInstruction.html │ │ │ │ │ │ ├── MatrixAppendRSPInstruction.html │ │ │ │ │ │ ├── MatrixIndexingSPInstruction.html │ │ │ │ │ │ ├── MatrixReshapeSPInstruction.html │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinSPInstruction.TransformEncodeBuild2Function.html │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinSPInstruction.TransformEncodeBuildFunction.html │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinSPInstruction.TransformEncodeGroup2Function.html │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinSPInstruction.TransformEncodeGroupFunction.html │ │ │ │ │ │ ├── MultiReturnParameterizedBuiltinSPInstruction.html │ │ │ │ │ │ ├── PMapmmSPInstruction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.CreateMatrixCell.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDContainsFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDContainsVectFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDFrameReplaceFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDMapGroupedAggFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDMapGroupedAggFunction2.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDRExpandFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDRemoveEmptyFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDRemoveEmptyFunctionInMem.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDReplaceFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDTokenizeFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDTransformApplyFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDTransformApplyFunction2.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDTransformApplyOffsetFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDTransformDecodeExpandFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.RDDTransformDecodeFunction.html │ │ │ │ │ │ ├── ParameterizedBuiltinSPInstruction.html │ │ │ │ │ │ ├── PmmSPInstruction.html │ │ │ │ │ │ ├── QuantilePickSPInstruction.html │ │ │ │ │ │ ├── QuantileSortSPInstruction.html │ │ │ │ │ │ ├── QuaternarySPInstruction.html │ │ │ │ │ │ ├── RandSPInstruction.html │ │ │ │ │ │ ├── ReblockSPInstruction.html │ │ │ │ │ │ ├── ReorgSPInstruction.html │ │ │ │ │ │ ├── RmmSPInstruction.html │ │ │ │ │ │ ├── SPInstruction.SPType.html │ │ │ │ │ │ ├── SPInstruction.html │ │ │ │ │ │ ├── SpoofSPInstruction.ReplicateRightFactorFunction.html │ │ │ │ │ │ ├── SpoofSPInstruction.html │ │ │ │ │ │ ├── TernaryFrameScalarSPInstruction.html │ │ │ │ │ │ ├── TernarySPInstruction.html │ │ │ │ │ │ ├── Tsmm2SPInstruction.html │ │ │ │ │ │ ├── TsmmSPInstruction.html │ │ │ │ │ │ ├── UaggOuterChainSPInstruction.html │ │ │ │ │ │ ├── UnaryFrameSPInstruction.html │ │ │ │ │ │ ├── UnaryMatrixSPInstruction.html │ │ │ │ │ │ ├── UnarySPInstruction.html │ │ │ │ │ │ ├── WriteSPInstruction.html │ │ │ │ │ │ └── ZipmmSPInstruction.html │ │ │ │ │ │ ├── data │ │ │ │ │ │ ├── BlockPartitioner.html │ │ │ │ │ │ ├── BroadcastObject.html │ │ │ │ │ │ ├── CorrMatrixBlock.html │ │ │ │ │ │ ├── DatasetObject.html │ │ │ │ │ │ ├── FrameReblockBuffer.html │ │ │ │ │ │ ├── IndexedMatrixValue.html │ │ │ │ │ │ ├── LazyIterableIterator.html │ │ │ │ │ │ ├── LineageObject.html │ │ │ │ │ │ ├── PartitionedBlock.html │ │ │ │ │ │ ├── PartitionedBroadcast.html │ │ │ │ │ │ ├── RDDObject.html │ │ │ │ │ │ ├── ReblockBuffer.html │ │ │ │ │ │ ├── RowMatrixBlock.html │ │ │ │ │ │ ├── SerLongWritable.html │ │ │ │ │ │ ├── SerText.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── BlockPartitioner.html │ │ │ │ │ │ │ ├── BroadcastObject.html │ │ │ │ │ │ │ ├── CorrMatrixBlock.html │ │ │ │ │ │ │ ├── DatasetObject.html │ │ │ │ │ │ │ ├── FrameReblockBuffer.html │ │ │ │ │ │ │ ├── IndexedMatrixValue.html │ │ │ │ │ │ │ ├── LazyIterableIterator.html │ │ │ │ │ │ │ ├── LineageObject.html │ │ │ │ │ │ │ ├── PartitionedBlock.html │ │ │ │ │ │ │ ├── PartitionedBroadcast.html │ │ │ │ │ │ │ ├── RDDObject.html │ │ │ │ │ │ │ ├── ReblockBuffer.html │ │ │ │ │ │ │ ├── RowMatrixBlock.html │ │ │ │ │ │ │ ├── SerLongWritable.html │ │ │ │ │ │ │ └── SerText.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── functions │ │ │ │ │ │ ├── AggregateDropCorrectionFunction.html │ │ │ │ │ │ ├── ComputeBinaryBlockNnzFunction.html │ │ │ │ │ │ ├── ConvertFrameBlockToIJVLines.html │ │ │ │ │ │ ├── ConvertMatrixBlockToIJVLines.html │ │ │ │ │ │ ├── ConvertStringToLongTextPair.html │ │ │ │ │ │ ├── CopyBinaryCellFunction.html │ │ │ │ │ │ ├── CopyFrameBlockFunction.html │ │ │ │ │ │ ├── CopyFrameBlockPairFunction.html │ │ │ │ │ │ ├── CopyMatrixBlockFunction.html │ │ │ │ │ │ ├── CopyMatrixBlockPairFunction.html │ │ │ │ │ │ ├── CopyTensorBlockFunction.html │ │ │ │ │ │ ├── CopyTensorBlockPairFunction.html │ │ │ │ │ │ ├── CopyTextInputFunction.html │ │ │ │ │ │ ├── CreateSparseBlockFunction.html │ │ │ │ │ │ ├── ExtractBlockForBinaryReblock.html │ │ │ │ │ │ ├── ExtractGroup.ExtractGroupBroadcast.html │ │ │ │ │ │ ├── ExtractGroup.ExtractGroupJoin.html │ │ │ │ │ │ ├── ExtractGroup.html │ │ │ │ │ │ ├── ExtractGroupNWeights.html │ │ │ │ │ │ ├── FilterDiagMatrixBlocksFunction.html │ │ │ │ │ │ ├── FilterNonEmptyBlocksFunction.html │ │ │ │ │ │ ├── FilterNonEmptyBlocksFunction2.html │ │ │ │ │ │ ├── IsBlockInList.html │ │ │ │ │ │ ├── IsBlockInRange.html │ │ │ │ │ │ ├── IsFrameBlockInRange.html │ │ │ │ │ │ ├── MapInputSignature.html │ │ │ │ │ │ ├── MapJoinSignature.html │ │ │ │ │ │ ├── MatrixMatrixBinaryOpFunction.html │ │ │ │ │ │ ├── MatrixScalarUnaryFunction.html │ │ │ │ │ │ ├── MatrixVectorBinaryOpPartitionFunction.html │ │ │ │ │ │ ├── OuterVectorBinaryOpFunction.html │ │ │ │ │ │ ├── PerformGroupByAggInCombiner.html │ │ │ │ │ │ ├── PerformGroupByAggInReducer.html │ │ │ │ │ │ ├── ReblockTensorFunction.html │ │ │ │ │ │ ├── RecomputeNnzFunction.html │ │ │ │ │ │ ├── ReorgMapFunction.html │ │ │ │ │ │ ├── ReplicateBlockFunction.html │ │ │ │ │ │ ├── ReplicateTensorFunction.html │ │ │ │ │ │ ├── ReplicateVectorFunction.html │ │ │ │ │ │ ├── TensorTensorBinaryOpFunction.html │ │ │ │ │ │ ├── TensorTensorBinaryOpPartitionFunction.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── AggregateDropCorrectionFunction.html │ │ │ │ │ │ │ ├── ComputeBinaryBlockNnzFunction.html │ │ │ │ │ │ │ ├── ConvertFrameBlockToIJVLines.html │ │ │ │ │ │ │ ├── ConvertMatrixBlockToIJVLines.html │ │ │ │ │ │ │ ├── ConvertStringToLongTextPair.html │ │ │ │ │ │ │ ├── CopyBinaryCellFunction.html │ │ │ │ │ │ │ ├── CopyFrameBlockFunction.html │ │ │ │ │ │ │ ├── CopyFrameBlockPairFunction.html │ │ │ │ │ │ │ ├── CopyMatrixBlockFunction.html │ │ │ │ │ │ │ ├── CopyMatrixBlockPairFunction.html │ │ │ │ │ │ │ ├── CopyTensorBlockFunction.html │ │ │ │ │ │ │ ├── CopyTensorBlockPairFunction.html │ │ │ │ │ │ │ ├── CopyTextInputFunction.html │ │ │ │ │ │ │ ├── CreateSparseBlockFunction.html │ │ │ │ │ │ │ ├── ExtractBlockForBinaryReblock.html │ │ │ │ │ │ │ ├── ExtractGroup.ExtractGroupBroadcast.html │ │ │ │ │ │ │ ├── ExtractGroup.ExtractGroupJoin.html │ │ │ │ │ │ │ ├── ExtractGroup.html │ │ │ │ │ │ │ ├── ExtractGroupNWeights.html │ │ │ │ │ │ │ ├── FilterDiagMatrixBlocksFunction.html │ │ │ │ │ │ │ ├── FilterNonEmptyBlocksFunction.html │ │ │ │ │ │ │ ├── FilterNonEmptyBlocksFunction2.html │ │ │ │ │ │ │ ├── IsBlockInList.html │ │ │ │ │ │ │ ├── IsBlockInRange.html │ │ │ │ │ │ │ ├── IsFrameBlockInRange.html │ │ │ │ │ │ │ ├── MapInputSignature.html │ │ │ │ │ │ │ ├── MapJoinSignature.html │ │ │ │ │ │ │ ├── MatrixMatrixBinaryOpFunction.html │ │ │ │ │ │ │ ├── MatrixScalarUnaryFunction.html │ │ │ │ │ │ │ ├── MatrixVectorBinaryOpPartitionFunction.html │ │ │ │ │ │ │ ├── OuterVectorBinaryOpFunction.html │ │ │ │ │ │ │ ├── PerformGroupByAggInCombiner.html │ │ │ │ │ │ │ ├── PerformGroupByAggInReducer.html │ │ │ │ │ │ │ ├── ReblockTensorFunction.html │ │ │ │ │ │ │ ├── RecomputeNnzFunction.html │ │ │ │ │ │ │ ├── ReorgMapFunction.html │ │ │ │ │ │ │ ├── ReplicateBlockFunction.html │ │ │ │ │ │ │ ├── ReplicateTensorFunction.html │ │ │ │ │ │ │ ├── ReplicateVectorFunction.html │ │ │ │ │ │ │ ├── TensorTensorBinaryOpFunction.html │ │ │ │ │ │ │ └── TensorTensorBinaryOpPartitionFunction.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ ├── package-use.html │ │ │ │ │ │ └── utils │ │ │ │ │ │ ├── FrameRDDAggregateUtils.html │ │ │ │ │ │ ├── FrameRDDConverterUtils.LongFrameToLongWritableFrameFunction.html │ │ │ │ │ │ ├── FrameRDDConverterUtils.LongWritableFrameToLongFrameFunction.html │ │ │ │ │ │ ├── FrameRDDConverterUtils.LongWritableTextToLongTextFunction.html │ │ │ │ │ │ ├── FrameRDDConverterUtils.LongWritableToSerFunction.html │ │ │ │ │ │ ├── FrameRDDConverterUtils.html │ │ │ │ │ │ ├── RDDAggregateUtils.html │ │ │ │ │ │ ├── RDDConverterUtils.BinaryCellToBinaryBlockFunction.html │ │ │ │ │ │ ├── RDDConverterUtils.DataFrameExtractIDFunction.html │ │ │ │ │ │ ├── RDDConverterUtils.html │ │ │ │ │ │ ├── RDDConverterUtilsExt.AddRowID.html │ │ │ │ │ │ ├── RDDConverterUtilsExt.RDDConverterTypes.html │ │ │ │ │ │ ├── RDDConverterUtilsExt.html │ │ │ │ │ │ ├── RDDSortUtils.IndexComparator.html │ │ │ │ │ │ ├── RDDSortUtils.IndexComparator2.html │ │ │ │ │ │ ├── RDDSortUtils.html │ │ │ │ │ │ ├── SparkUtils.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── FrameRDDAggregateUtils.html │ │ │ │ │ │ ├── FrameRDDConverterUtils.LongFrameToLongWritableFrameFunction.html │ │ │ │ │ │ ├── FrameRDDConverterUtils.LongWritableFrameToLongFrameFunction.html │ │ │ │ │ │ ├── FrameRDDConverterUtils.LongWritableTextToLongTextFunction.html │ │ │ │ │ │ ├── FrameRDDConverterUtils.LongWritableToSerFunction.html │ │ │ │ │ │ ├── FrameRDDConverterUtils.html │ │ │ │ │ │ ├── RDDAggregateUtils.html │ │ │ │ │ │ ├── RDDConverterUtils.BinaryCellToBinaryBlockFunction.html │ │ │ │ │ │ ├── RDDConverterUtils.DataFrameExtractIDFunction.html │ │ │ │ │ │ ├── RDDConverterUtils.html │ │ │ │ │ │ ├── RDDConverterUtilsExt.AddRowID.html │ │ │ │ │ │ ├── RDDConverterUtilsExt.RDDConverterTypes.html │ │ │ │ │ │ ├── RDDConverterUtilsExt.html │ │ │ │ │ │ ├── RDDSortUtils.IndexComparator.html │ │ │ │ │ │ ├── RDDSortUtils.IndexComparator2.html │ │ │ │ │ │ ├── RDDSortUtils.html │ │ │ │ │ │ └── SparkUtils.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ ├── io │ │ │ │ │ ├── BinaryBlockSerialization.MatrixBlockDeserializer.html │ │ │ │ │ ├── BinaryBlockSerialization.MatrixBlockSerializer.html │ │ │ │ │ ├── BinaryBlockSerialization.html │ │ │ │ │ ├── FileFormatProperties.html │ │ │ │ │ ├── FileFormatPropertiesCOG.html │ │ │ │ │ ├── FileFormatPropertiesCSV.html │ │ │ │ │ ├── FileFormatPropertiesHDF5.html │ │ │ │ │ ├── FileFormatPropertiesLIBSVM.html │ │ │ │ │ ├── FileFormatPropertiesMM.MMField.html │ │ │ │ │ ├── FileFormatPropertiesMM.MMFormat.html │ │ │ │ │ ├── FileFormatPropertiesMM.MMSymmetry.html │ │ │ │ │ ├── FileFormatPropertiesMM.html │ │ │ │ │ ├── FrameReader.html │ │ │ │ │ ├── FrameReaderBinaryBlock.html │ │ │ │ │ ├── FrameReaderBinaryBlockParallel.html │ │ │ │ │ ├── FrameReaderFactory.html │ │ │ │ │ ├── FrameReaderJSONL.html │ │ │ │ │ ├── FrameReaderJSONLParallel.html │ │ │ │ │ ├── FrameReaderParquet.html │ │ │ │ │ ├── FrameReaderParquetParallel.html │ │ │ │ │ ├── FrameReaderProto.html │ │ │ │ │ ├── FrameReaderTextCSV.html │ │ │ │ │ ├── FrameReaderTextCSVParallel.html │ │ │ │ │ ├── FrameReaderTextCell.html │ │ │ │ │ ├── FrameReaderTextCellParallel.ReadTask.html │ │ │ │ │ ├── FrameReaderTextCellParallel.html │ │ │ │ │ ├── FrameWriter.html │ │ │ │ │ ├── FrameWriterBinaryBlock.html │ │ │ │ │ ├── FrameWriterBinaryBlockParallel.html │ │ │ │ │ ├── FrameWriterCompressed.html │ │ │ │ │ ├── FrameWriterFactory.html │ │ │ │ │ ├── FrameWriterJSONL.html │ │ │ │ │ ├── FrameWriterJSONLParallel.html │ │ │ │ │ ├── FrameWriterParquet.html │ │ │ │ │ ├── FrameWriterParquetParallel.html │ │ │ │ │ ├── FrameWriterProto.html │ │ │ │ │ ├── FrameWriterTextCSV.html │ │ │ │ │ ├── FrameWriterTextCSVParallel.html │ │ │ │ │ ├── FrameWriterTextCell.html │ │ │ │ │ ├── FrameWriterTextCellParallel.html │ │ │ │ │ ├── IOUtilFunctions.CountRowsTask.html │ │ │ │ │ ├── IOUtilFunctions.html │ │ │ │ │ ├── InputOutputInfo.html │ │ │ │ │ ├── ListReader.html │ │ │ │ │ ├── ListWriter.html │ │ │ │ │ ├── MatrixReader.html │ │ │ │ │ ├── MatrixReaderFactory.html │ │ │ │ │ ├── MatrixWriter.html │ │ │ │ │ ├── MatrixWriterFactory.html │ │ │ │ │ ├── ReadProperties.html │ │ │ │ │ ├── ReaderBinaryBlock.html │ │ │ │ │ ├── ReaderBinaryBlockParallel.html │ │ │ │ │ ├── ReaderCOG.html │ │ │ │ │ ├── ReaderCOGParallel.TileProcessor.html │ │ │ │ │ ├── ReaderCOGParallel.html │ │ │ │ │ ├── ReaderHDF5.html │ │ │ │ │ ├── ReaderHDF5Parallel.html │ │ │ │ │ ├── ReaderTextCSV.html │ │ │ │ │ ├── ReaderTextCSVParallel.html │ │ │ │ │ ├── ReaderTextCell.html │ │ │ │ │ ├── ReaderTextCellParallel.CellBuffer.html │ │ │ │ │ ├── ReaderTextCellParallel.CountNnzTask.html │ │ │ │ │ ├── ReaderTextCellParallel.ReadTask.html │ │ │ │ │ ├── ReaderTextCellParallel.html │ │ │ │ │ ├── ReaderTextLIBSVM.html │ │ │ │ │ ├── ReaderTextLIBSVMParallel.html │ │ │ │ │ ├── ReaderWriterFederated.html │ │ │ │ │ ├── TensorReader.html │ │ │ │ │ ├── TensorReaderBinaryBlock.html │ │ │ │ │ ├── TensorReaderBinaryBlockParallel.html │ │ │ │ │ ├── TensorReaderFactory.html │ │ │ │ │ ├── TensorReaderTextCell.html │ │ │ │ │ ├── TensorReaderTextCellParallel.html │ │ │ │ │ ├── TensorWriter.html │ │ │ │ │ ├── TensorWriterBinaryBlock.html │ │ │ │ │ ├── TensorWriterBinaryBlockParallel.WriteFileTask.html │ │ │ │ │ ├── TensorWriterBinaryBlockParallel.html │ │ │ │ │ ├── TensorWriterFactory.html │ │ │ │ │ ├── TensorWriterTextCell.html │ │ │ │ │ ├── TensorWriterTextCellParallel.html │ │ │ │ │ ├── WriterBinaryBlock.html │ │ │ │ │ ├── WriterBinaryBlockParallel.html │ │ │ │ │ ├── WriterHDF5.html │ │ │ │ │ ├── WriterHDF5Parallel.html │ │ │ │ │ ├── WriterMatrixMarket.html │ │ │ │ │ ├── WriterMatrixMarketParallel.html │ │ │ │ │ ├── WriterTextCSV.html │ │ │ │ │ ├── WriterTextCSVParallel.html │ │ │ │ │ ├── WriterTextCell.html │ │ │ │ │ ├── WriterTextCellParallel.html │ │ │ │ │ ├── WriterTextLIBSVM.html │ │ │ │ │ ├── WriterTextLIBSVMParallel.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── BinaryBlockSerialization.MatrixBlockDeserializer.html │ │ │ │ │ │ ├── BinaryBlockSerialization.MatrixBlockSerializer.html │ │ │ │ │ │ ├── BinaryBlockSerialization.html │ │ │ │ │ │ ├── FileFormatProperties.html │ │ │ │ │ │ ├── FileFormatPropertiesCOG.html │ │ │ │ │ │ ├── FileFormatPropertiesCSV.html │ │ │ │ │ │ ├── FileFormatPropertiesHDF5.html │ │ │ │ │ │ ├── FileFormatPropertiesLIBSVM.html │ │ │ │ │ │ ├── FileFormatPropertiesMM.MMField.html │ │ │ │ │ │ ├── FileFormatPropertiesMM.MMFormat.html │ │ │ │ │ │ ├── FileFormatPropertiesMM.MMSymmetry.html │ │ │ │ │ │ ├── FileFormatPropertiesMM.html │ │ │ │ │ │ ├── FrameReader.html │ │ │ │ │ │ ├── FrameReaderBinaryBlock.html │ │ │ │ │ │ ├── FrameReaderBinaryBlockParallel.html │ │ │ │ │ │ ├── FrameReaderFactory.html │ │ │ │ │ │ ├── FrameReaderJSONL.html │ │ │ │ │ │ ├── FrameReaderJSONLParallel.html │ │ │ │ │ │ ├── FrameReaderParquet.html │ │ │ │ │ │ ├── FrameReaderParquetParallel.html │ │ │ │ │ │ ├── FrameReaderProto.html │ │ │ │ │ │ ├── FrameReaderTextCSV.html │ │ │ │ │ │ ├── FrameReaderTextCSVParallel.html │ │ │ │ │ │ ├── FrameReaderTextCell.html │ │ │ │ │ │ ├── FrameReaderTextCellParallel.ReadTask.html │ │ │ │ │ │ ├── FrameReaderTextCellParallel.html │ │ │ │ │ │ ├── FrameWriter.html │ │ │ │ │ │ ├── FrameWriterBinaryBlock.html │ │ │ │ │ │ ├── FrameWriterBinaryBlockParallel.html │ │ │ │ │ │ ├── FrameWriterCompressed.html │ │ │ │ │ │ ├── FrameWriterFactory.html │ │ │ │ │ │ ├── FrameWriterJSONL.html │ │ │ │ │ │ ├── FrameWriterJSONLParallel.html │ │ │ │ │ │ ├── FrameWriterParquet.html │ │ │ │ │ │ ├── FrameWriterParquetParallel.html │ │ │ │ │ │ ├── FrameWriterProto.html │ │ │ │ │ │ ├── FrameWriterTextCSV.html │ │ │ │ │ │ ├── FrameWriterTextCSVParallel.html │ │ │ │ │ │ ├── FrameWriterTextCell.html │ │ │ │ │ │ ├── FrameWriterTextCellParallel.html │ │ │ │ │ │ ├── IOUtilFunctions.CountRowsTask.html │ │ │ │ │ │ ├── IOUtilFunctions.html │ │ │ │ │ │ ├── InputOutputInfo.html │ │ │ │ │ │ ├── ListReader.html │ │ │ │ │ │ ├── ListWriter.html │ │ │ │ │ │ ├── MatrixReader.html │ │ │ │ │ │ ├── MatrixReaderFactory.html │ │ │ │ │ │ ├── MatrixWriter.html │ │ │ │ │ │ ├── MatrixWriterFactory.html │ │ │ │ │ │ ├── ReadProperties.html │ │ │ │ │ │ ├── ReaderBinaryBlock.html │ │ │ │ │ │ ├── ReaderBinaryBlockParallel.html │ │ │ │ │ │ ├── ReaderCOG.html │ │ │ │ │ │ ├── ReaderCOGParallel.TileProcessor.html │ │ │ │ │ │ ├── ReaderCOGParallel.html │ │ │ │ │ │ ├── ReaderHDF5.html │ │ │ │ │ │ ├── ReaderHDF5Parallel.html │ │ │ │ │ │ ├── ReaderTextCSV.html │ │ │ │ │ │ ├── ReaderTextCSVParallel.html │ │ │ │ │ │ ├── ReaderTextCell.html │ │ │ │ │ │ ├── ReaderTextCellParallel.CellBuffer.html │ │ │ │ │ │ ├── ReaderTextCellParallel.CountNnzTask.html │ │ │ │ │ │ ├── ReaderTextCellParallel.ReadTask.html │ │ │ │ │ │ ├── ReaderTextCellParallel.html │ │ │ │ │ │ ├── ReaderTextLIBSVM.html │ │ │ │ │ │ ├── ReaderTextLIBSVMParallel.html │ │ │ │ │ │ ├── ReaderWriterFederated.html │ │ │ │ │ │ ├── TensorReader.html │ │ │ │ │ │ ├── TensorReaderBinaryBlock.html │ │ │ │ │ │ ├── TensorReaderBinaryBlockParallel.html │ │ │ │ │ │ ├── TensorReaderFactory.html │ │ │ │ │ │ ├── TensorReaderTextCell.html │ │ │ │ │ │ ├── TensorReaderTextCellParallel.html │ │ │ │ │ │ ├── TensorWriter.html │ │ │ │ │ │ ├── TensorWriterBinaryBlock.html │ │ │ │ │ │ ├── TensorWriterBinaryBlockParallel.WriteFileTask.html │ │ │ │ │ │ ├── TensorWriterBinaryBlockParallel.html │ │ │ │ │ │ ├── TensorWriterFactory.html │ │ │ │ │ │ ├── TensorWriterTextCell.html │ │ │ │ │ │ ├── TensorWriterTextCellParallel.html │ │ │ │ │ │ ├── WriterBinaryBlock.html │ │ │ │ │ │ ├── WriterBinaryBlockParallel.html │ │ │ │ │ │ ├── WriterHDF5.html │ │ │ │ │ │ ├── WriterHDF5Parallel.html │ │ │ │ │ │ ├── WriterMatrixMarket.html │ │ │ │ │ │ ├── WriterMatrixMarketParallel.html │ │ │ │ │ │ ├── WriterTextCSV.html │ │ │ │ │ │ ├── WriterTextCSVParallel.html │ │ │ │ │ │ ├── WriterTextCell.html │ │ │ │ │ │ ├── WriterTextCellParallel.html │ │ │ │ │ │ ├── WriterTextLIBSVM.html │ │ │ │ │ │ └── WriterTextLIBSVMParallel.html │ │ │ │ │ ├── cog │ │ │ │ │ │ ├── COGByteReader.html │ │ │ │ │ │ ├── COGCompressionUtils.html │ │ │ │ │ │ ├── COGHeader.html │ │ │ │ │ │ ├── COGProperties.html │ │ │ │ │ │ ├── IFDTag.html │ │ │ │ │ │ ├── IFDTagDictionary.html │ │ │ │ │ │ ├── SampleFormatDataTypes.html │ │ │ │ │ │ ├── TIFFDataTypes.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── COGByteReader.html │ │ │ │ │ │ │ ├── COGCompressionUtils.html │ │ │ │ │ │ │ ├── COGHeader.html │ │ │ │ │ │ │ ├── COGProperties.html │ │ │ │ │ │ │ ├── IFDTag.html │ │ │ │ │ │ │ ├── IFDTagDictionary.html │ │ │ │ │ │ │ ├── SampleFormatDataTypes.html │ │ │ │ │ │ │ └── TIFFDataTypes.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── hdf5 │ │ │ │ │ │ ├── H5.html │ │ │ │ │ │ ├── H5BTree.html │ │ │ │ │ │ ├── H5BufferBuilder.html │ │ │ │ │ │ ├── H5Constants.html │ │ │ │ │ │ ├── H5ContiguousDataset.html │ │ │ │ │ │ ├── H5DoubleDataType.html │ │ │ │ │ │ ├── H5GroupSymbolTableNode.html │ │ │ │ │ │ ├── H5LocalHeap.html │ │ │ │ │ │ ├── H5ObjectHeader.html │ │ │ │ │ │ ├── H5RootObject.html │ │ │ │ │ │ ├── H5RuntimeException.html │ │ │ │ │ │ ├── H5Superblock.html │ │ │ │ │ │ ├── H5SymbolTableEntry.html │ │ │ │ │ │ ├── Utils.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── H5.html │ │ │ │ │ │ │ ├── H5BTree.html │ │ │ │ │ │ │ ├── H5BufferBuilder.html │ │ │ │ │ │ │ ├── H5Constants.html │ │ │ │ │ │ │ ├── H5ContiguousDataset.html │ │ │ │ │ │ │ ├── H5DoubleDataType.html │ │ │ │ │ │ │ ├── H5GroupSymbolTableNode.html │ │ │ │ │ │ │ ├── H5LocalHeap.html │ │ │ │ │ │ │ ├── H5ObjectHeader.html │ │ │ │ │ │ │ ├── H5RootObject.html │ │ │ │ │ │ │ ├── H5RuntimeException.html │ │ │ │ │ │ │ ├── H5Superblock.html │ │ │ │ │ │ │ ├── H5SymbolTableEntry.html │ │ │ │ │ │ │ └── Utils.html │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ ├── H5DataLayoutMessage.html │ │ │ │ │ │ │ ├── H5DataSpaceMessage.html │ │ │ │ │ │ │ ├── H5DataTypeMessage.html │ │ │ │ │ │ │ ├── H5FillValueMessage.html │ │ │ │ │ │ │ ├── H5Message.html │ │ │ │ │ │ │ ├── H5NilMessage.html │ │ │ │ │ │ │ ├── H5ObjectModificationTimeMessage.html │ │ │ │ │ │ │ ├── H5SymbolTableMessage.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ ├── H5DataLayoutMessage.html │ │ │ │ │ │ │ │ ├── H5DataSpaceMessage.html │ │ │ │ │ │ │ │ ├── H5DataTypeMessage.html │ │ │ │ │ │ │ │ ├── H5FillValueMessage.html │ │ │ │ │ │ │ │ ├── H5Message.html │ │ │ │ │ │ │ │ ├── H5NilMessage.html │ │ │ │ │ │ │ │ ├── H5ObjectModificationTimeMessage.html │ │ │ │ │ │ │ │ └── H5SymbolTableMessage.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── iogen │ │ │ │ │ ├── ColIndexStructure.IndexProperties.html │ │ │ │ │ ├── ColIndexStructure.html │ │ │ │ │ ├── CustomProperties.html │ │ │ │ │ ├── FormatIdentifyer.html │ │ │ │ │ ├── GenerateReader.GenerateReaderFrame.html │ │ │ │ │ ├── GenerateReader.GenerateReaderMatrix.html │ │ │ │ │ ├── GenerateReader.html │ │ │ │ │ ├── LongestCommonSubsequence.html │ │ │ │ │ ├── MappingProperties.DataProperties.html │ │ │ │ │ ├── MappingProperties.RecordProperties.html │ │ │ │ │ ├── MappingProperties.RepresentationProperties.html │ │ │ │ │ ├── MappingProperties.html │ │ │ │ │ ├── MappingTrie.html │ │ │ │ │ ├── MappingTrieNode.Type.html │ │ │ │ │ ├── MappingTrieNode.html │ │ │ │ │ ├── RawIndex.html │ │ │ │ │ ├── ReaderMapping.html │ │ │ │ │ ├── ReaderMappingIndex.html │ │ │ │ │ ├── RowIndexStructure.IndexProperties.html │ │ │ │ │ ├── RowIndexStructure.html │ │ │ │ │ ├── SampleProperties.html │ │ │ │ │ ├── TextTrie.html │ │ │ │ │ ├── TextTrieNode.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── ColIndexStructure.IndexProperties.html │ │ │ │ │ │ ├── ColIndexStructure.html │ │ │ │ │ │ ├── CustomProperties.html │ │ │ │ │ │ ├── FormatIdentifyer.html │ │ │ │ │ │ ├── GenerateReader.GenerateReaderFrame.html │ │ │ │ │ │ ├── GenerateReader.GenerateReaderMatrix.html │ │ │ │ │ │ ├── GenerateReader.html │ │ │ │ │ │ ├── LongestCommonSubsequence.html │ │ │ │ │ │ ├── MappingProperties.DataProperties.html │ │ │ │ │ │ ├── MappingProperties.RecordProperties.html │ │ │ │ │ │ ├── MappingProperties.RepresentationProperties.html │ │ │ │ │ │ ├── MappingProperties.html │ │ │ │ │ │ ├── MappingTrie.html │ │ │ │ │ │ ├── MappingTrieNode.Type.html │ │ │ │ │ │ ├── MappingTrieNode.html │ │ │ │ │ │ ├── RawIndex.html │ │ │ │ │ │ ├── ReaderMapping.html │ │ │ │ │ │ ├── ReaderMappingIndex.html │ │ │ │ │ │ ├── RowIndexStructure.IndexProperties.html │ │ │ │ │ │ ├── RowIndexStructure.html │ │ │ │ │ │ ├── SampleProperties.html │ │ │ │ │ │ ├── TextTrie.html │ │ │ │ │ │ └── TextTrieNode.html │ │ │ │ │ ├── codegen │ │ │ │ │ │ ├── CodeGenTrie.html │ │ │ │ │ │ ├── CodeGenTrieNode.NodeType.html │ │ │ │ │ │ ├── CodeGenTrieNode.html │ │ │ │ │ │ ├── FrameCodeGen.html │ │ │ │ │ │ ├── MatrixCodeGen.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── CodeGenTrie.html │ │ │ │ │ │ │ ├── CodeGenTrieNode.NodeType.html │ │ │ │ │ │ │ ├── CodeGenTrieNode.html │ │ │ │ │ │ │ ├── FrameCodeGen.html │ │ │ │ │ │ │ └── MatrixCodeGen.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ ├── package-use.html │ │ │ │ │ └── template │ │ │ │ │ │ ├── FrameGenerateReader.html │ │ │ │ │ │ ├── FrameGenerateReaderParallel.html │ │ │ │ │ │ ├── MatrixGenerateReader.html │ │ │ │ │ │ ├── MatrixGenerateReaderParallel.html │ │ │ │ │ │ ├── TemplateCodeGenBase.html │ │ │ │ │ │ ├── TemplateUtil.SplitInfo.html │ │ │ │ │ │ ├── TemplateUtil.SplitOffsetInfos.html │ │ │ │ │ │ ├── TemplateUtil.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── FrameGenerateReader.html │ │ │ │ │ │ ├── FrameGenerateReaderParallel.html │ │ │ │ │ │ ├── MatrixGenerateReader.html │ │ │ │ │ │ ├── MatrixGenerateReaderParallel.html │ │ │ │ │ │ ├── TemplateCodeGenBase.html │ │ │ │ │ │ ├── TemplateUtil.SplitInfo.html │ │ │ │ │ │ ├── TemplateUtil.SplitOffsetInfos.html │ │ │ │ │ │ └── TemplateUtil.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ ├── lineage │ │ │ │ │ ├── BooleanArray32.html │ │ │ │ │ ├── Lineage.html │ │ │ │ │ ├── LineageCache.html │ │ │ │ │ ├── LineageCacheConfig.LineageCachePolicy.html │ │ │ │ │ ├── LineageCacheConfig.ReuseCacheType.html │ │ │ │ │ ├── LineageCacheConfig.html │ │ │ │ │ ├── LineageCacheEntry.html │ │ │ │ │ ├── LineageCacheEviction.html │ │ │ │ │ ├── LineageCacheStatistics.html │ │ │ │ │ ├── LineageCodegenItem.html │ │ │ │ │ ├── LineageDebugger.html │ │ │ │ │ ├── LineageDedupBlock.html │ │ │ │ │ ├── LineageDedupUtils.html │ │ │ │ │ ├── LineageEstimator.html │ │ │ │ │ ├── LineageEstimatorStatistics.html │ │ │ │ │ ├── LineageGPUCacheEviction.html │ │ │ │ │ ├── LineageItem.LineageItemType.html │ │ │ │ │ ├── LineageItem.html │ │ │ │ │ ├── LineageItemUtils.html │ │ │ │ │ ├── LineageMap.html │ │ │ │ │ ├── LineageParser.html │ │ │ │ │ ├── LineageRecomputeUtils.html │ │ │ │ │ ├── LineageRewriteReuse.html │ │ │ │ │ ├── LineageSparkCacheEviction.html │ │ │ │ │ ├── LineageTokenizer.html │ │ │ │ │ ├── LineageTraceable.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── BooleanArray32.html │ │ │ │ │ │ ├── Lineage.html │ │ │ │ │ │ ├── LineageCache.html │ │ │ │ │ │ ├── LineageCacheConfig.LineageCachePolicy.html │ │ │ │ │ │ ├── LineageCacheConfig.ReuseCacheType.html │ │ │ │ │ │ ├── LineageCacheConfig.html │ │ │ │ │ │ ├── LineageCacheEntry.html │ │ │ │ │ │ ├── LineageCacheEviction.html │ │ │ │ │ │ ├── LineageCacheStatistics.html │ │ │ │ │ │ ├── LineageCodegenItem.html │ │ │ │ │ │ ├── LineageDebugger.html │ │ │ │ │ │ ├── LineageDedupBlock.html │ │ │ │ │ │ ├── LineageDedupUtils.html │ │ │ │ │ │ ├── LineageEstimator.html │ │ │ │ │ │ ├── LineageEstimatorStatistics.html │ │ │ │ │ │ ├── LineageGPUCacheEviction.html │ │ │ │ │ │ ├── LineageItem.LineageItemType.html │ │ │ │ │ │ ├── LineageItem.html │ │ │ │ │ │ ├── LineageItemUtils.html │ │ │ │ │ │ ├── LineageMap.html │ │ │ │ │ │ ├── LineageParser.html │ │ │ │ │ │ ├── LineageRecomputeUtils.html │ │ │ │ │ │ ├── LineageRewriteReuse.html │ │ │ │ │ │ ├── LineageSparkCacheEviction.html │ │ │ │ │ │ ├── LineageTokenizer.html │ │ │ │ │ │ └── LineageTraceable.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── matrix │ │ │ │ │ ├── data │ │ │ │ │ │ ├── BinaryBlockToTextCellConverter.html │ │ │ │ │ │ ├── CTableMap.html │ │ │ │ │ │ ├── Converter.html │ │ │ │ │ │ ├── CudaSupportFunctions.html │ │ │ │ │ │ ├── DnnParameters.html │ │ │ │ │ │ ├── DoublePrecisionCudaSupportFunctions.html │ │ │ │ │ │ ├── IJV.html │ │ │ │ │ │ ├── LibCommonsMath.html │ │ │ │ │ │ ├── LibMatrixAgg.html │ │ │ │ │ │ ├── LibMatrixAggUnarySpecialization.html │ │ │ │ │ │ ├── LibMatrixAppend.html │ │ │ │ │ │ ├── LibMatrixBincell.BinaryAccessType.html │ │ │ │ │ │ ├── LibMatrixBincell.html │ │ │ │ │ │ ├── LibMatrixCUDA.html │ │ │ │ │ │ ├── LibMatrixCountDistinct.html │ │ │ │ │ │ ├── LibMatrixCuDNN.html │ │ │ │ │ │ ├── LibMatrixCuDNNConvolutionAlgorithm.html │ │ │ │ │ │ ├── LibMatrixCuDNNInputRowFetcher.html │ │ │ │ │ │ ├── LibMatrixCuDNNPoolingDescriptors.html │ │ │ │ │ │ ├── LibMatrixCuDNNRnnAlgorithm.html │ │ │ │ │ │ ├── LibMatrixCuMatMult.html │ │ │ │ │ │ ├── LibMatrixDNN.PoolingType.html │ │ │ │ │ │ ├── LibMatrixDNN.html │ │ │ │ │ │ ├── LibMatrixDNNConv2d.html │ │ │ │ │ │ ├── LibMatrixDNNHelper.html │ │ │ │ │ │ ├── LibMatrixDNNIm2Col.html │ │ │ │ │ │ ├── LibMatrixDNNLSTM.html │ │ │ │ │ │ ├── LibMatrixDNNPooling.html │ │ │ │ │ │ ├── LibMatrixDNNRelu.ReluBackward.html │ │ │ │ │ │ ├── LibMatrixDNNRelu.html │ │ │ │ │ │ ├── LibMatrixDNNRotate180.Rotate180Worker.html │ │ │ │ │ │ ├── LibMatrixDNNRotate180.html │ │ │ │ │ │ ├── LibMatrixDatagen.html │ │ │ │ │ │ ├── LibMatrixDenseToSparse.html │ │ │ │ │ │ ├── LibMatrixEquals.html │ │ │ │ │ │ ├── LibMatrixFourier.html │ │ │ │ │ │ ├── LibMatrixMult.html │ │ │ │ │ │ ├── LibMatrixNative.html │ │ │ │ │ │ ├── LibMatrixOuterAgg.html │ │ │ │ │ │ ├── LibMatrixReorg.html │ │ │ │ │ │ ├── LibMatrixReplace.html │ │ │ │ │ │ ├── LibMatrixSTFT.html │ │ │ │ │ │ ├── LibMatrixSketch.html │ │ │ │ │ │ ├── LibMatrixSparseToDense.html │ │ │ │ │ │ ├── LibMatrixTercell.html │ │ │ │ │ │ ├── MatrixBlock.html │ │ │ │ │ │ ├── MatrixBlockDataInput.html │ │ │ │ │ │ ├── MatrixBlockDataOutput.html │ │ │ │ │ │ ├── MatrixCell.html │ │ │ │ │ │ ├── MatrixIndexes.html │ │ │ │ │ │ ├── MatrixValue.CellIndex.html │ │ │ │ │ │ ├── MatrixValue.html │ │ │ │ │ │ ├── OperationsOnMatrixValues.html │ │ │ │ │ │ ├── Pair.html │ │ │ │ │ │ ├── RandomMatrixGenerator.PDF.html │ │ │ │ │ │ ├── RandomMatrixGenerator.html │ │ │ │ │ │ ├── SinglePrecisionCudaSupportFunctions.html │ │ │ │ │ │ ├── TripleIndexes.Comparator.html │ │ │ │ │ │ ├── TripleIndexes.html │ │ │ │ │ │ ├── WeightedCell.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── BinaryBlockToTextCellConverter.html │ │ │ │ │ │ │ ├── CTableMap.html │ │ │ │ │ │ │ ├── Converter.html │ │ │ │ │ │ │ ├── CudaSupportFunctions.html │ │ │ │ │ │ │ ├── DnnParameters.html │ │ │ │ │ │ │ ├── DoublePrecisionCudaSupportFunctions.html │ │ │ │ │ │ │ ├── IJV.html │ │ │ │ │ │ │ ├── LibCommonsMath.html │ │ │ │ │ │ │ ├── LibMatrixAgg.html │ │ │ │ │ │ │ ├── LibMatrixAggUnarySpecialization.html │ │ │ │ │ │ │ ├── LibMatrixAppend.html │ │ │ │ │ │ │ ├── LibMatrixBincell.BinaryAccessType.html │ │ │ │ │ │ │ ├── LibMatrixBincell.html │ │ │ │ │ │ │ ├── LibMatrixCUDA.html │ │ │ │ │ │ │ ├── LibMatrixCountDistinct.html │ │ │ │ │ │ │ ├── LibMatrixCuDNN.html │ │ │ │ │ │ │ ├── LibMatrixCuDNNConvolutionAlgorithm.html │ │ │ │ │ │ │ ├── LibMatrixCuDNNInputRowFetcher.html │ │ │ │ │ │ │ ├── LibMatrixCuDNNPoolingDescriptors.html │ │ │ │ │ │ │ ├── LibMatrixCuDNNRnnAlgorithm.html │ │ │ │ │ │ │ ├── LibMatrixCuMatMult.html │ │ │ │ │ │ │ ├── LibMatrixDNN.PoolingType.html │ │ │ │ │ │ │ ├── LibMatrixDNN.html │ │ │ │ │ │ │ ├── LibMatrixDNNConv2d.html │ │ │ │ │ │ │ ├── LibMatrixDNNHelper.html │ │ │ │ │ │ │ ├── LibMatrixDNNIm2Col.html │ │ │ │ │ │ │ ├── LibMatrixDNNLSTM.html │ │ │ │ │ │ │ ├── LibMatrixDNNPooling.html │ │ │ │ │ │ │ ├── LibMatrixDNNRelu.ReluBackward.html │ │ │ │ │ │ │ ├── LibMatrixDNNRelu.html │ │ │ │ │ │ │ ├── LibMatrixDNNRotate180.Rotate180Worker.html │ │ │ │ │ │ │ ├── LibMatrixDNNRotate180.html │ │ │ │ │ │ │ ├── LibMatrixDatagen.html │ │ │ │ │ │ │ ├── LibMatrixDenseToSparse.html │ │ │ │ │ │ │ ├── LibMatrixEquals.html │ │ │ │ │ │ │ ├── LibMatrixFourier.html │ │ │ │ │ │ │ ├── LibMatrixMult.html │ │ │ │ │ │ │ ├── LibMatrixNative.html │ │ │ │ │ │ │ ├── LibMatrixOuterAgg.html │ │ │ │ │ │ │ ├── LibMatrixReorg.html │ │ │ │ │ │ │ ├── LibMatrixReplace.html │ │ │ │ │ │ │ ├── LibMatrixSTFT.html │ │ │ │ │ │ │ ├── LibMatrixSketch.html │ │ │ │ │ │ │ ├── LibMatrixSparseToDense.html │ │ │ │ │ │ │ ├── LibMatrixTercell.html │ │ │ │ │ │ │ ├── MatrixBlock.html │ │ │ │ │ │ │ ├── MatrixBlockDataInput.html │ │ │ │ │ │ │ ├── MatrixBlockDataOutput.html │ │ │ │ │ │ │ ├── MatrixCell.html │ │ │ │ │ │ │ ├── MatrixIndexes.html │ │ │ │ │ │ │ ├── MatrixValue.CellIndex.html │ │ │ │ │ │ │ ├── MatrixValue.html │ │ │ │ │ │ │ ├── OperationsOnMatrixValues.html │ │ │ │ │ │ │ ├── Pair.html │ │ │ │ │ │ │ ├── RandomMatrixGenerator.PDF.html │ │ │ │ │ │ │ ├── RandomMatrixGenerator.html │ │ │ │ │ │ │ ├── SinglePrecisionCudaSupportFunctions.html │ │ │ │ │ │ │ ├── TripleIndexes.Comparator.html │ │ │ │ │ │ │ ├── TripleIndexes.html │ │ │ │ │ │ │ └── WeightedCell.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ ├── package-use.html │ │ │ │ │ │ └── sketch │ │ │ │ │ │ │ ├── CountDistinctSketch.html │ │ │ │ │ │ │ ├── MatrixSketch.html │ │ │ │ │ │ │ ├── MatrixSketchFactory.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── CountDistinctSketch.html │ │ │ │ │ │ │ ├── MatrixSketch.html │ │ │ │ │ │ │ └── MatrixSketchFactory.html │ │ │ │ │ │ │ ├── countdistinct │ │ │ │ │ │ │ ├── BitMapValueCombiner.html │ │ │ │ │ │ │ ├── CountDistinctFunctionSketch.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ ├── BitMapValueCombiner.html │ │ │ │ │ │ │ │ └── CountDistinctFunctionSketch.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ │ ├── countdistinctapprox │ │ │ │ │ │ │ ├── KMVSketch.html │ │ │ │ │ │ │ ├── SmallestPriorityQueue.html │ │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ │ ├── KMVSketch.html │ │ │ │ │ │ │ │ └── SmallestPriorityQueue.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ │ └── package-use.html │ │ │ │ │ └── operators │ │ │ │ │ │ ├── AggregateBinaryOperator.html │ │ │ │ │ │ ├── AggregateOperator.html │ │ │ │ │ │ ├── AggregateTernaryOperator.html │ │ │ │ │ │ ├── AggregateUnaryOperator.html │ │ │ │ │ │ ├── BinaryOperator.html │ │ │ │ │ │ ├── CMOperator.AggregateOperationTypes.html │ │ │ │ │ │ ├── CMOperator.html │ │ │ │ │ │ ├── COVOperator.html │ │ │ │ │ │ ├── CountDistinctOperator.html │ │ │ │ │ │ ├── CountDistinctOperatorTypes.html │ │ │ │ │ │ ├── LeftScalarOperator.html │ │ │ │ │ │ ├── MultiThreadedOperator.html │ │ │ │ │ │ ├── Operator.html │ │ │ │ │ │ ├── QuaternaryOperator.html │ │ │ │ │ │ ├── ReorgOperator.html │ │ │ │ │ │ ├── RightScalarOperator.html │ │ │ │ │ │ ├── ScalarOperator.html │ │ │ │ │ │ ├── SimpleOperator.html │ │ │ │ │ │ ├── TernaryOperator.html │ │ │ │ │ │ ├── UnaryOperator.html │ │ │ │ │ │ ├── UnarySketchOperator.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── AggregateBinaryOperator.html │ │ │ │ │ │ ├── AggregateOperator.html │ │ │ │ │ │ ├── AggregateTernaryOperator.html │ │ │ │ │ │ ├── AggregateUnaryOperator.html │ │ │ │ │ │ ├── BinaryOperator.html │ │ │ │ │ │ ├── CMOperator.AggregateOperationTypes.html │ │ │ │ │ │ ├── CMOperator.html │ │ │ │ │ │ ├── COVOperator.html │ │ │ │ │ │ ├── CountDistinctOperator.html │ │ │ │ │ │ ├── CountDistinctOperatorTypes.html │ │ │ │ │ │ ├── LeftScalarOperator.html │ │ │ │ │ │ ├── MultiThreadedOperator.html │ │ │ │ │ │ ├── Operator.html │ │ │ │ │ │ ├── QuaternaryOperator.html │ │ │ │ │ │ ├── ReorgOperator.html │ │ │ │ │ │ ├── RightScalarOperator.html │ │ │ │ │ │ ├── ScalarOperator.html │ │ │ │ │ │ ├── SimpleOperator.html │ │ │ │ │ │ ├── TernaryOperator.html │ │ │ │ │ │ ├── UnaryOperator.html │ │ │ │ │ │ └── UnarySketchOperator.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ ├── meta │ │ │ │ │ ├── DataCharacteristics.html │ │ │ │ │ ├── MatrixCharacteristics.html │ │ │ │ │ ├── MetaData.html │ │ │ │ │ ├── MetaDataAll.html │ │ │ │ │ ├── MetaDataFormat.html │ │ │ │ │ ├── MetaDataUtils.html │ │ │ │ │ ├── TensorCharacteristics.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── DataCharacteristics.html │ │ │ │ │ │ ├── MatrixCharacteristics.html │ │ │ │ │ │ ├── MetaData.html │ │ │ │ │ │ ├── MetaDataAll.html │ │ │ │ │ │ ├── MetaDataFormat.html │ │ │ │ │ │ ├── MetaDataUtils.html │ │ │ │ │ │ └── TensorCharacteristics.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ ├── package-use.html │ │ │ │ ├── transform │ │ │ │ │ ├── TfUtils.TfMethod.html │ │ │ │ │ ├── TfUtils.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── TfUtils.TfMethod.html │ │ │ │ │ │ └── TfUtils.html │ │ │ │ │ ├── decode │ │ │ │ │ │ ├── Decoder.html │ │ │ │ │ │ ├── DecoderBin.html │ │ │ │ │ │ ├── DecoderComposite.html │ │ │ │ │ │ ├── DecoderDummycode.html │ │ │ │ │ │ ├── DecoderFactory.DecoderType.html │ │ │ │ │ │ ├── DecoderFactory.html │ │ │ │ │ │ ├── DecoderPassThrough.html │ │ │ │ │ │ ├── DecoderRecode.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── Decoder.html │ │ │ │ │ │ │ ├── DecoderBin.html │ │ │ │ │ │ │ ├── DecoderComposite.html │ │ │ │ │ │ │ ├── DecoderDummycode.html │ │ │ │ │ │ │ ├── DecoderFactory.DecoderType.html │ │ │ │ │ │ │ ├── DecoderFactory.html │ │ │ │ │ │ │ ├── DecoderPassThrough.html │ │ │ │ │ │ │ └── DecoderRecode.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── encode │ │ │ │ │ │ ├── ColumnEncoder.EncoderType.html │ │ │ │ │ │ ├── ColumnEncoder.html │ │ │ │ │ │ ├── ColumnEncoderBagOfWords.html │ │ │ │ │ │ ├── ColumnEncoderBin.BinMethod.html │ │ │ │ │ │ ├── ColumnEncoderBin.html │ │ │ │ │ │ ├── ColumnEncoderComposite.html │ │ │ │ │ │ ├── ColumnEncoderDummycode.html │ │ │ │ │ │ ├── ColumnEncoderFeatureHash.FeatureHashSparseApplyTask.html │ │ │ │ │ │ ├── ColumnEncoderFeatureHash.html │ │ │ │ │ │ ├── ColumnEncoderPassThrough.PassThroughSparseApplyTask.html │ │ │ │ │ │ ├── ColumnEncoderPassThrough.html │ │ │ │ │ │ ├── ColumnEncoderRecode.html │ │ │ │ │ │ ├── ColumnEncoderUDF.html │ │ │ │ │ │ ├── ColumnEncoderWordEmbedding.html │ │ │ │ │ │ ├── CompressedEncode.html │ │ │ │ │ │ ├── Encoder.html │ │ │ │ │ │ ├── EncoderFactory.html │ │ │ │ │ │ ├── EncoderMVImpute.MVMethod.html │ │ │ │ │ │ ├── EncoderMVImpute.html │ │ │ │ │ │ ├── EncoderOmit.html │ │ │ │ │ │ ├── LegacyEncoder.html │ │ │ │ │ │ ├── MultiColumnEncoder.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── ColumnEncoder.EncoderType.html │ │ │ │ │ │ │ ├── ColumnEncoder.html │ │ │ │ │ │ │ ├── ColumnEncoderBagOfWords.html │ │ │ │ │ │ │ ├── ColumnEncoderBin.BinMethod.html │ │ │ │ │ │ │ ├── ColumnEncoderBin.html │ │ │ │ │ │ │ ├── ColumnEncoderComposite.html │ │ │ │ │ │ │ ├── ColumnEncoderDummycode.html │ │ │ │ │ │ │ ├── ColumnEncoderFeatureHash.FeatureHashSparseApplyTask.html │ │ │ │ │ │ │ ├── ColumnEncoderFeatureHash.html │ │ │ │ │ │ │ ├── ColumnEncoderPassThrough.PassThroughSparseApplyTask.html │ │ │ │ │ │ │ ├── ColumnEncoderPassThrough.html │ │ │ │ │ │ │ ├── ColumnEncoderRecode.html │ │ │ │ │ │ │ ├── ColumnEncoderUDF.html │ │ │ │ │ │ │ ├── ColumnEncoderWordEmbedding.html │ │ │ │ │ │ │ ├── CompressedEncode.html │ │ │ │ │ │ │ ├── Encoder.html │ │ │ │ │ │ │ ├── EncoderFactory.html │ │ │ │ │ │ │ ├── EncoderMVImpute.MVMethod.html │ │ │ │ │ │ │ ├── EncoderMVImpute.html │ │ │ │ │ │ │ ├── EncoderOmit.html │ │ │ │ │ │ │ ├── LegacyEncoder.html │ │ │ │ │ │ │ └── MultiColumnEncoder.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── meta │ │ │ │ │ │ ├── TfMetaUtils.html │ │ │ │ │ │ ├── TfOffsetMap.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── TfMetaUtils.html │ │ │ │ │ │ │ └── TfOffsetMap.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ ├── package-use.html │ │ │ │ │ └── tokenize │ │ │ │ │ │ ├── DocumentRepresentation.html │ │ │ │ │ │ ├── Token.SubToken.html │ │ │ │ │ │ ├── Token.html │ │ │ │ │ │ ├── Tokenizer.html │ │ │ │ │ │ ├── TokenizerFactory.html │ │ │ │ │ │ ├── applier │ │ │ │ │ │ ├── TokenizerApplier.html │ │ │ │ │ │ ├── TokenizerApplierCount.html │ │ │ │ │ │ ├── TokenizerApplierHash.html │ │ │ │ │ │ ├── TokenizerApplierPosition.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── TokenizerApplier.html │ │ │ │ │ │ │ ├── TokenizerApplierCount.html │ │ │ │ │ │ │ ├── TokenizerApplierHash.html │ │ │ │ │ │ │ └── TokenizerApplierPosition.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── builder │ │ │ │ │ │ ├── TokenizerBuilder.html │ │ │ │ │ │ ├── TokenizerBuilderNgram.html │ │ │ │ │ │ ├── TokenizerBuilderWhitespaceSplit.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── TokenizerBuilder.html │ │ │ │ │ │ │ ├── TokenizerBuilderNgram.html │ │ │ │ │ │ │ └── TokenizerBuilderWhitespaceSplit.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── DocumentRepresentation.html │ │ │ │ │ │ ├── Token.SubToken.html │ │ │ │ │ │ ├── Token.html │ │ │ │ │ │ ├── Tokenizer.html │ │ │ │ │ │ └── TokenizerFactory.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ └── util │ │ │ │ │ ├── AutoDiff.html │ │ │ │ │ ├── ByteBufferDataInput.html │ │ │ │ │ ├── CollectionUtils.html │ │ │ │ │ ├── CommonThreadPool.SameThreadExecutorService.html │ │ │ │ │ ├── CommonThreadPool.html │ │ │ │ │ ├── DMVUtils.LEVEL_ENUM.html │ │ │ │ │ ├── DMVUtils.html │ │ │ │ │ ├── DataConverter.html │ │ │ │ │ ├── DependencyTask.html │ │ │ │ │ ├── DependencyThreadPool.html │ │ │ │ │ ├── DependencyWrapperTask.html │ │ │ │ │ ├── DnnUtils.html │ │ │ │ │ ├── DoubleBufferingOutputStream.html │ │ │ │ │ ├── EMAUtils.html │ │ │ │ │ ├── FastBufferedDataInputStream.html │ │ │ │ │ ├── FastBufferedDataOutputStream.html │ │ │ │ │ ├── FastStringTokenizer.html │ │ │ │ │ ├── HDFSTool.html │ │ │ │ │ ├── IndexRange.html │ │ │ │ │ ├── InputStreamInputFormat.html │ │ │ │ │ ├── LocalFileUtils.html │ │ │ │ │ ├── LongLongDoubleHashMap.ADoubleEntry.html │ │ │ │ │ ├── LongLongDoubleHashMap.EntryType.html │ │ │ │ │ ├── LongLongDoubleHashMap.html │ │ │ │ │ ├── MemoryMonitor.html │ │ │ │ │ ├── NormalPRNGenerator.html │ │ │ │ │ ├── PRNGenerator.html │ │ │ │ │ ├── PoissonPRNGenerator.html │ │ │ │ │ ├── PorterStemmer.html │ │ │ │ │ ├── ProgramConverter.html │ │ │ │ │ ├── Py4jConverterUtils.html │ │ │ │ │ ├── RandNPair.html │ │ │ │ │ ├── SortUtils.html │ │ │ │ │ ├── UniformPRNGenerator.html │ │ │ │ │ ├── UtilFunctions.html │ │ │ │ │ ├── class-use │ │ │ │ │ ├── AutoDiff.html │ │ │ │ │ ├── ByteBufferDataInput.html │ │ │ │ │ ├── CollectionUtils.html │ │ │ │ │ ├── CommonThreadPool.SameThreadExecutorService.html │ │ │ │ │ ├── CommonThreadPool.html │ │ │ │ │ ├── DMVUtils.LEVEL_ENUM.html │ │ │ │ │ ├── DMVUtils.html │ │ │ │ │ ├── DataConverter.html │ │ │ │ │ ├── DependencyTask.html │ │ │ │ │ ├── DependencyThreadPool.html │ │ │ │ │ ├── DependencyWrapperTask.html │ │ │ │ │ ├── DnnUtils.html │ │ │ │ │ ├── DoubleBufferingOutputStream.html │ │ │ │ │ ├── EMAUtils.html │ │ │ │ │ ├── FastBufferedDataInputStream.html │ │ │ │ │ ├── FastBufferedDataOutputStream.html │ │ │ │ │ ├── FastStringTokenizer.html │ │ │ │ │ ├── HDFSTool.html │ │ │ │ │ ├── IndexRange.html │ │ │ │ │ ├── InputStreamInputFormat.html │ │ │ │ │ ├── LocalFileUtils.html │ │ │ │ │ ├── LongLongDoubleHashMap.ADoubleEntry.html │ │ │ │ │ ├── LongLongDoubleHashMap.EntryType.html │ │ │ │ │ ├── LongLongDoubleHashMap.html │ │ │ │ │ ├── MemoryMonitor.html │ │ │ │ │ ├── NormalPRNGenerator.html │ │ │ │ │ ├── PRNGenerator.html │ │ │ │ │ ├── PoissonPRNGenerator.html │ │ │ │ │ ├── PorterStemmer.html │ │ │ │ │ ├── ProgramConverter.html │ │ │ │ │ ├── Py4jConverterUtils.html │ │ │ │ │ ├── RandNPair.html │ │ │ │ │ ├── SortUtils.html │ │ │ │ │ ├── UniformPRNGenerator.html │ │ │ │ │ └── UtilFunctions.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ └── utils │ │ │ │ ├── DMLCompressionStatistics.html │ │ │ │ ├── DataAugmentation.html │ │ │ │ ├── DoubleParser.UInt128.html │ │ │ │ ├── DoubleParser.html │ │ │ │ ├── EnvironmentHelper.html │ │ │ │ ├── Explain.ExplainCounts.html │ │ │ │ ├── Explain.ExplainType.html │ │ │ │ ├── Explain.html │ │ │ │ ├── GPUStatistics.html │ │ │ │ ├── Hash.HashType.html │ │ │ │ ├── Hash.html │ │ │ │ ├── InstallDependencyForIntegrationTests.html │ │ │ │ ├── JSONHelper.html │ │ │ │ ├── MLContextProxy.html │ │ │ │ ├── MemoryEstimates.html │ │ │ │ ├── NativeHelper.NativeBlasState.html │ │ │ │ ├── NativeHelper.html │ │ │ │ ├── ParameterBuilder.html │ │ │ │ ├── SettingsChecker.html │ │ │ │ ├── Statistics.LineageNGramExtension.html │ │ │ │ ├── Statistics.NGramStats.html │ │ │ │ ├── Statistics.html │ │ │ │ ├── class-use │ │ │ │ ├── DMLCompressionStatistics.html │ │ │ │ ├── DataAugmentation.html │ │ │ │ ├── DoubleParser.UInt128.html │ │ │ │ ├── DoubleParser.html │ │ │ │ ├── EnvironmentHelper.html │ │ │ │ ├── Explain.ExplainCounts.html │ │ │ │ ├── Explain.ExplainType.html │ │ │ │ ├── Explain.html │ │ │ │ ├── GPUStatistics.html │ │ │ │ ├── Hash.HashType.html │ │ │ │ ├── Hash.html │ │ │ │ ├── InstallDependencyForIntegrationTests.html │ │ │ │ ├── JSONHelper.html │ │ │ │ ├── MLContextProxy.html │ │ │ │ ├── MemoryEstimates.html │ │ │ │ ├── NativeHelper.NativeBlasState.html │ │ │ │ ├── NativeHelper.html │ │ │ │ ├── ParameterBuilder.html │ │ │ │ ├── SettingsChecker.html │ │ │ │ ├── Statistics.LineageNGramExtension.html │ │ │ │ ├── Statistics.NGramStats.html │ │ │ │ └── Statistics.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ ├── package-use.html │ │ │ │ └── stats │ │ │ │ ├── CodegenStatistics.html │ │ │ │ ├── FederatedCompressionStatistics.html │ │ │ │ ├── InfrastructureAnalyzer.html │ │ │ │ ├── NGramBuilder.NGramEntry.html │ │ │ │ ├── NGramBuilder.html │ │ │ │ ├── NativeStatistics.html │ │ │ │ ├── ParForStatistics.html │ │ │ │ ├── ParamServStatistics.html │ │ │ │ ├── RecompileStatistics.html │ │ │ │ ├── SparkStatistics.html │ │ │ │ ├── Timing.html │ │ │ │ ├── TransformStatistics.html │ │ │ │ ├── class-use │ │ │ │ ├── CodegenStatistics.html │ │ │ │ ├── FederatedCompressionStatistics.html │ │ │ │ ├── InfrastructureAnalyzer.html │ │ │ │ ├── NGramBuilder.NGramEntry.html │ │ │ │ ├── NGramBuilder.html │ │ │ │ ├── NativeStatistics.html │ │ │ │ ├── ParForStatistics.html │ │ │ │ ├── ParamServStatistics.html │ │ │ │ ├── RecompileStatistics.html │ │ │ │ ├── SparkStatistics.html │ │ │ │ ├── Timing.html │ │ │ │ └── TransformStatistics.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ ├── overview-summary.html │ │ ├── overview-tree.html │ │ ├── package-search-index.js │ │ ├── package-search-index.zip │ │ ├── resources │ │ │ ├── glass.png │ │ │ └── x.png │ │ ├── script.js │ │ ├── search.js │ │ ├── serialized-form.html │ │ ├── stylesheet.css │ │ ├── type-search-index.js │ │ └── type-search-index.zip │ └── python │ │ ├── api │ │ ├── context │ │ │ └── systemds_context.html │ │ ├── operator │ │ │ ├── algorithms.html │ │ │ ├── node │ │ │ │ ├── frame.html │ │ │ │ ├── list.html │ │ │ │ ├── matrix.html │ │ │ │ ├── scalar.html │ │ │ │ └── source.html │ │ │ └── operation_node.html │ │ ├── script_building │ │ │ ├── dag.html │ │ │ └── script.html │ │ └── utils │ │ │ ├── converters.html │ │ │ └── helpers.html │ │ ├── genindex.html │ │ ├── getting_started │ │ ├── install.html │ │ └── simple_examples.html │ │ ├── guide │ │ ├── algorithms_basics.html │ │ ├── federated.html │ │ └── python_end_to_end_tut.html │ │ ├── index.html │ │ ├── objects.inv │ │ ├── py-modindex.html │ │ ├── search.html │ │ ├── searchindex.js │ │ ├── sources │ │ ├── api │ │ │ ├── context │ │ │ │ └── systemds_context.rst.txt │ │ │ ├── operator │ │ │ │ ├── algorithms.rst.txt │ │ │ │ ├── node │ │ │ │ │ ├── frame.rst.txt │ │ │ │ │ ├── list.rst.txt │ │ │ │ │ ├── matrix.rst.txt │ │ │ │ │ ├── scalar.rst.txt │ │ │ │ │ └── source.rst.txt │ │ │ │ └── operation_node.rst.txt │ │ │ ├── script_building │ │ │ │ ├── dag.rst.txt │ │ │ │ └── script.rst.txt │ │ │ └── utils │ │ │ │ ├── converters.rst.txt │ │ │ │ └── helpers.rst.txt │ │ ├── getting_started │ │ │ ├── install.rst.txt │ │ │ └── simple_examples.rst.txt │ │ ├── guide │ │ │ ├── algorithms_basics.rst.txt │ │ │ ├── federated.rst.txt │ │ │ └── python_end_to_end_tut.rst.txt │ │ └── index.rst.txt │ │ └── static │ │ ├── _sphinx_javascript_frameworks_compat.js │ │ ├── basic.css │ │ ├── css │ │ ├── badge_only.css │ │ ├── fonts │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── lato-bold-italic.woff │ │ │ ├── lato-bold-italic.woff2 │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-normal-italic.woff │ │ │ ├── lato-normal-italic.woff2 │ │ │ ├── lato-normal.woff │ │ │ └── lato-normal.woff2 │ │ └── theme.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── jquery.js │ │ ├── js │ │ ├── badge_only.js │ │ ├── html5shiv-printshiv.min.js │ │ ├── html5shiv.min.js │ │ └── theme.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ └── sphinx_highlight.js ├── css │ ├── bootstrap.min.css │ ├── main.css │ └── pygments-default.css ├── img │ ├── algorithms-reference │ │ ├── computation-of-quartiles-median-and-interquartile-mean.png │ │ └── example-tree.png │ ├── favicon.png │ ├── monitoring-arch-overview.png │ └── systemds-logo.png ├── index.md ├── js │ ├── main.js │ └── vendor │ │ ├── anchor.min.js │ │ ├── bootstrap.min.js │ │ └── jquery-1.12.0.min.js ├── performance │ └── SparseFormats.md ├── site │ ├── algorithms-bibliography.md │ ├── algorithms-classification.md │ ├── algorithms-clustering.md │ ├── algorithms-descriptive-statistics.md │ ├── algorithms-factorization-machines.md │ ├── algorithms-matrix-factorization.md │ ├── algorithms-reference.md │ ├── algorithms-regression.md │ ├── algorithms-survival-analysis.md │ ├── builtins-reference.md │ ├── dml-language-reference.md │ ├── dml-vs-r-guide.md │ ├── docker.md │ ├── entity-resolution.md │ ├── federated-monitoring.md │ ├── files │ │ └── dml-language-reference │ │ │ ├── data.csv │ │ │ ├── data.csv.mtd │ │ │ ├── data.spec.json │ │ │ ├── data.spec2.json │ │ │ ├── data.spec3.json │ │ │ ├── homes.csv │ │ │ ├── homes.csv.mtd │ │ │ ├── homes.tfspec_bin2.json │ │ │ └── homes.tfspec_recode2.json │ ├── gpu.md │ ├── img │ │ └── dml-language-reference │ │ │ ├── Conv2d.gif │ │ │ ├── Conv2d1.gif │ │ │ ├── Conv2d_backward_data.gif │ │ │ ├── Conv2d_backward_data1.gif │ │ │ └── Conv2d_backward_data2.gif │ ├── install.md │ ├── native-backend.md │ ├── release-process.md │ ├── run.md │ └── windows-source-installation.md └── updateAPI.sh ├── pom.xml ├── scripts ├── algorithms │ ├── Cox-predict.dml │ ├── StepGLM.dml │ └── Univar-Stats.dml ├── aws │ ├── README.md │ ├── aws_ec2_table.csv │ ├── run_systemds_script.sh │ ├── spinup_systemds_cluster.sh │ ├── systemds_cluster.config │ └── terminate_systemds_cluster.sh ├── builtin │ ├── WoE.dml │ ├── WoEApply.dml │ ├── abstain.dml │ ├── adasyn.dml │ ├── als.dml │ ├── alsCG.dml │ ├── alsDS.dml │ ├── alsPredict.dml │ ├── alsTopkPredict.dml │ ├── ampute.dml │ ├── apply_pipeline.dml │ ├── arima.dml │ ├── auc.dml │ ├── autoencoder_2layer.dml │ ├── bandit.dml │ ├── bivar.dml │ ├── components.dml │ ├── confusionMatrix.dml │ ├── cooccurrenceMatrix.dml │ ├── cor.dml │ ├── correctTypos.dml │ ├── correctTyposApply.dml │ ├── cox.dml │ ├── cspline.dml │ ├── csplineCG.dml │ ├── csplineDS.dml │ ├── cvlm.dml │ ├── dbscan.dml │ ├── dbscanApply.dml │ ├── decisionTree.dml │ ├── decisionTreePredict.dml │ ├── dedup.dml │ ├── deepWalk.dml │ ├── denialConstraints.dml │ ├── differenceStatistics.dml │ ├── discoverFD.dml │ ├── dist.dml │ ├── dmv.dml │ ├── ema.dml │ ├── executePipeline.dml │ ├── f1Score.dml │ ├── fdr.dml │ ├── ffPredict.dml │ ├── ffTrain.dml │ ├── fit_pipeline.dml │ ├── fixInvalidLengths.dml │ ├── fixInvalidLengthsApply.dml │ ├── flattenQuantile.dml │ ├── frameSort.dml │ ├── frequencyEncode.dml │ ├── frequencyEncodeApply.dml │ ├── garch.dml │ ├── gaussianClassifier.dml │ ├── getAccuracy.dml │ ├── glm.dml │ ├── glmPredict.dml │ ├── glove.dml │ ├── gmm.dml │ ├── gmmPredict.dml │ ├── gnmf.dml │ ├── gridSearch.dml │ ├── hospitalResidencyMatch.dml │ ├── hyperband.dml │ ├── img_brightness.dml │ ├── img_brightness_linearized.dml │ ├── img_crop.dml │ ├── img_crop_linearized.dml │ ├── img_cutout.dml │ ├── img_cutout_linearized.dml │ ├── img_invert.dml │ ├── img_invert_linearized.dml │ ├── img_mirror.dml │ ├── img_mirror_linearized.dml │ ├── img_posterize.dml │ ├── img_posterize_linearized.dml │ ├── img_rotate.dml │ ├── img_rotate_linearized.dml │ ├── img_sample_pairing.dml │ ├── img_sample_pairing_linearized.dml │ ├── img_shear.dml │ ├── img_shear_linearized.dml │ ├── img_transform.dml │ ├── img_transform_linearized.dml │ ├── img_translate.dml │ ├── img_translate_linearized.dml │ ├── impurityMeasures.dml │ ├── imputeByFD.dml │ ├── imputeByFDApply.dml │ ├── imputeByKNN.dml │ ├── imputeByMean.dml │ ├── imputeByMeanApply.dml │ ├── imputeByMedian.dml │ ├── imputeByMedianApply.dml │ ├── imputeByMode.dml │ ├── imputeByModeApply.dml │ ├── incSliceLine.dml │ ├── intersect.dml │ ├── km.dml │ ├── kmeans.dml │ ├── kmeansPredict.dml │ ├── knn.dml │ ├── knnGraph.dml │ ├── knnbf.dml │ ├── l2svm.dml │ ├── l2svmPredict.dml │ ├── lasso.dml │ ├── lenetPredict.dml │ ├── lenetTrain.dml │ ├── lm.dml │ ├── lmCG.dml │ ├── lmDS.dml │ ├── lmPredict.dml │ ├── lmPredictStats.dml │ ├── logSumExp.dml │ ├── mae.dml │ ├── mape.dml │ ├── matrixProfile.dml │ ├── mcc.dml │ ├── mdedup.dml │ ├── mice.dml │ ├── miceApply.dml │ ├── mse.dml │ ├── msmape.dml │ ├── msvm.dml │ ├── msvmPredict.dml │ ├── multiLogReg.dml │ ├── multiLogRegPredict.dml │ ├── na_locf.dml │ ├── naiveBayes.dml │ ├── naiveBayesPredict.dml │ ├── normalize.dml │ ├── normalizeApply.dml │ ├── nrmse.dml │ ├── outlier.dml │ ├── outlierByArima.dml │ ├── outlierByIQR.dml │ ├── outlierByIQRApply.dml │ ├── outlierBySd.dml │ ├── outlierBySdApply.dml │ ├── pageRank.dml │ ├── pca.dml │ ├── pcaInverse.dml │ ├── pcaTransform.dml │ ├── pnmf.dml │ ├── ppca.dml │ ├── psnr.dml │ ├── quantizeByCluster.dml │ ├── raGroupby.dml │ ├── raJoin.dml │ ├── raSelection.dml │ ├── randomForest.dml │ ├── randomForestPredict.dml │ ├── rmse.dml │ ├── scale.dml │ ├── scaleApply.dml │ ├── scaleMinMax.dml │ ├── selectByVarThresh.dml │ ├── ses.dml │ ├── setdiff.dml │ ├── shapExplainer.dml │ ├── sherlock.dml │ ├── sherlockPredict.dml │ ├── shortestPath.dml │ ├── sigmoid.dml │ ├── skewness.dml │ ├── sliceLine.dml │ ├── sliceLineDebug.dml │ ├── sliceLineExtract.dml │ ├── slicefinder.dml │ ├── smape.dml │ ├── smote.dml │ ├── softmax.dml │ ├── split.dml │ ├── splitBalanced.dml │ ├── sqrtMatrix.dml │ ├── stableMarriage.dml │ ├── statsNA.dml │ ├── steplm.dml │ ├── stratstats.dml │ ├── symmetricDifference.dml │ ├── tSNE.dml │ ├── toOneHot.dml │ ├── tomeklink.dml │ ├── topk_cleaning.dml │ ├── underSampling.dml │ ├── union.dml │ ├── univar.dml │ ├── vectorToCsv.dml │ ├── wer.dml │ ├── winsorize.dml │ ├── winsorizeApply.dml │ ├── xdummy1.dml │ ├── xdummy2.dml │ ├── xgboost.dml │ ├── xgboostPredictClassification.dml │ └── xgboostPredictRegression.dml ├── data_prep │ ├── create_binary_chunks.py │ ├── prepare_raw_imagenet.py │ └── run_raw_imagenet_preprocessing.py ├── monitoring │ ├── .browserslistrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── constants.ts │ │ │ ├── material.module.ts │ │ │ ├── models │ │ │ │ ├── coordinator.model.ts │ │ │ │ ├── dataObject.model.ts │ │ │ │ ├── event.model.ts │ │ │ │ ├── eventStage.model.ts │ │ │ │ ├── fedRequest.model.ts │ │ │ │ ├── fedSiteData.model.ts │ │ │ │ ├── heavyHitter.model.ts │ │ │ │ ├── statistics.model.ts │ │ │ │ ├── traffic.model.ts │ │ │ │ ├── utilization.model.ts │ │ │ │ └── worker.model.ts │ │ │ ├── modules │ │ │ │ ├── coordinators │ │ │ │ │ ├── create-edit │ │ │ │ │ │ ├── create-edit.component.html │ │ │ │ │ │ ├── create-edit.component.scss │ │ │ │ │ │ ├── create-edit.component.spec.ts │ │ │ │ │ │ └── create-edit.component.ts │ │ │ │ │ └── list │ │ │ │ │ │ ├── list.component.html │ │ │ │ │ │ ├── list.component.scss │ │ │ │ │ │ ├── list.component.spec.ts │ │ │ │ │ │ └── list.component.ts │ │ │ │ ├── dashboard │ │ │ │ │ ├── connection │ │ │ │ │ │ ├── connection.component.html │ │ │ │ │ │ ├── connection.component.scss │ │ │ │ │ │ ├── connection.component.spec.ts │ │ │ │ │ │ └── connection.component.ts │ │ │ │ │ ├── coordinator │ │ │ │ │ │ ├── coordinator.component.html │ │ │ │ │ │ ├── coordinator.component.scss │ │ │ │ │ │ ├── coordinator.component.spec.ts │ │ │ │ │ │ └── coordinator.component.ts │ │ │ │ │ ├── dialog-dashboard │ │ │ │ │ │ ├── dialog-dashboard.component.html │ │ │ │ │ │ ├── dialog-dashboard.component.scss │ │ │ │ │ │ ├── dialog-dashboard.component.spec.ts │ │ │ │ │ │ └── dialog-dashboard.component.ts │ │ │ │ │ ├── main │ │ │ │ │ │ ├── dashboard.component.html │ │ │ │ │ │ ├── dashboard.component.scss │ │ │ │ │ │ ├── dashboard.component.spec.ts │ │ │ │ │ │ ├── dashboard.component.ts │ │ │ │ │ │ └── dashboard.directive.ts │ │ │ │ │ └── worker │ │ │ │ │ │ ├── worker.component.html │ │ │ │ │ │ ├── worker.component.scss │ │ │ │ │ │ ├── worker.component.spec.ts │ │ │ │ │ │ └── worker.component.ts │ │ │ │ ├── events │ │ │ │ │ ├── list │ │ │ │ │ │ ├── list.component.html │ │ │ │ │ │ ├── list.component.scss │ │ │ │ │ │ ├── list.component.spec.ts │ │ │ │ │ │ └── list.component.ts │ │ │ │ │ └── view │ │ │ │ │ │ ├── view.component.html │ │ │ │ │ │ ├── view.component.scss │ │ │ │ │ │ ├── view.component.spec.ts │ │ │ │ │ │ └── view.component.ts │ │ │ │ ├── layout │ │ │ │ │ ├── layout.component.html │ │ │ │ │ ├── layout.component.scss │ │ │ │ │ ├── layout.component.spec.ts │ │ │ │ │ └── layout.component.ts │ │ │ │ └── workers │ │ │ │ │ ├── create-edit │ │ │ │ │ ├── create-edit.component.html │ │ │ │ │ ├── create-edit.component.scss │ │ │ │ │ ├── create-edit.component.spec.ts │ │ │ │ │ └── create-edit.component.ts │ │ │ │ │ ├── list │ │ │ │ │ ├── list.component.html │ │ │ │ │ ├── list.component.scss │ │ │ │ │ ├── list.component.spec.ts │ │ │ │ │ └── list.component.ts │ │ │ │ │ └── view │ │ │ │ │ ├── view.component.html │ │ │ │ │ ├── view.component.scss │ │ │ │ │ ├── view.component.spec.ts │ │ │ │ │ └── view.component.ts │ │ │ ├── services │ │ │ │ ├── federatedSiteService.service.ts │ │ │ │ ├── federatedSiteService.stub.ts │ │ │ │ └── service-mock-data.ts │ │ │ └── utils.ts │ │ ├── assets │ │ │ └── favicon.png │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── nn │ ├── README.md │ ├── examples │ │ ├── AttentionExample.dml │ │ ├── Example-EfficientNet.dml │ │ ├── Example-ImageNet_AlexNet_Optimizers.dml │ │ ├── Example-MNIST_2NN_Leaky_ReLu_Softmax.dml │ │ ├── Example-MNIST_Softmax.dml │ │ ├── Example-ResNet.dml │ │ ├── README.md │ │ ├── download_attentionExample.sh │ │ ├── efficientNet.dml │ │ ├── fm-binclass-dummy-data.dml │ │ ├── fm-regression-dummy-data.dml │ │ ├── imagenet_alexnet.dml │ │ ├── imagenet_resnet.dml │ │ ├── load_imagenet_csv.dml │ │ ├── mnist_lenet-predict.dml │ │ ├── mnist_lenet-train.dml │ │ ├── mnist_lenet.dml │ │ ├── mnist_lenet_distrib_sgd-train-dummy-data.dml │ │ ├── mnist_lenet_distrib_sgd-train.dml │ │ ├── mnist_lenet_distrib_sgd.dml │ │ ├── mnist_resnet.dml │ │ ├── mnist_softmax-predict.dml │ │ ├── mnist_softmax-train.dml │ │ ├── mnist_softmax.dml │ │ ├── ncf-dummy-data.dml │ │ ├── ncf-real-data.dml │ │ ├── sherlockNet.dml │ │ └── u-net.dml │ ├── layers │ │ ├── affine.dml │ │ ├── attention.dml │ │ ├── avg_pool2d_builtin.dml │ │ ├── batch_norm1d.dml │ │ ├── batch_norm2d.dml │ │ ├── batch_norm2d_old.dml │ │ ├── bert_layer.dml │ │ ├── bilstm.dml │ │ ├── conv1d.dml │ │ ├── conv2d.dml │ │ ├── conv2d_builtin.dml │ │ ├── conv2d_depthwise.dml │ │ ├── conv2d_transpose.dml │ │ ├── conv2d_transpose_depthwise.dml │ │ ├── cross_entropy_loss.dml │ │ ├── cross_entropy_loss2d.dml │ │ ├── dropout.dml │ │ ├── elu.dml │ │ ├── embedding.dml │ │ ├── feedForward.dml │ │ ├── fm.dml │ │ ├── gelu.dml │ │ ├── global_avg_pool2d.dml │ │ ├── l1_loss.dml │ │ ├── l1_reg.dml │ │ ├── l2_loss.dml │ │ ├── l2_reg.dml │ │ ├── leaky_relu.dml │ │ ├── lenetForwardPass.dml │ │ ├── log_loss.dml │ │ ├── logcosh_loss.dml │ │ ├── low_rank_affine.dml │ │ ├── lrn.dml │ │ ├── lstm.dml │ │ ├── lstm_staging.dml │ │ ├── max_pool2d.dml │ │ ├── max_pool2d_builtin.dml │ │ ├── mbconv.dml │ │ ├── multi_attention.dml │ │ ├── relu.dml │ │ ├── rnn.dml │ │ ├── scale_shift1d.dml │ │ ├── scale_shift2d.dml │ │ ├── selu.dml │ │ ├── sigmoid.dml │ │ ├── silu.dml │ │ ├── softmax.dml │ │ ├── softmax2d.dml │ │ ├── softmax_cross_entropy_loss.dml │ │ ├── tanh.dml │ │ └── upsample2d.dml │ ├── networks │ │ ├── alexnet.dml │ │ ├── resnet.dml │ │ ├── resnet101.dml │ │ ├── resnet152.dml │ │ ├── resnet18.dml │ │ ├── resnet34.dml │ │ ├── resnet50.dml │ │ └── resnet_util.dml │ ├── optim │ │ ├── adagrad.dml │ │ ├── adam.dml │ │ ├── adamw.dml │ │ ├── lars.dml │ │ ├── lars_util.dml │ │ ├── rmsprop.dml │ │ ├── scaled_gd.dml │ │ ├── sgd.dml │ │ ├── sgd_momentum.dml │ │ └── sgd_nesterov.dml │ └── util.dml ├── perftest │ ├── KnnMissingValueImputation.sh │ ├── MatrixMult.sh │ ├── MatrixTranspose.sh │ ├── conf │ │ ├── SystemDS-config.xml │ │ ├── log4j-off.properties │ │ ├── log4j.properties │ │ ├── mkl.xml │ │ ├── openblas.xml │ │ └── std.xml │ ├── datagen │ │ ├── genALSData.sh │ │ ├── genBinomialData.sh │ │ ├── genClusteringData.sh │ │ ├── genDescriptiveStatisticsData.sh │ │ ├── genDimensionReductionData.sh │ │ ├── genIOData.sh │ │ ├── genL2SVMData.sh │ │ ├── genMultinomialData.sh │ │ ├── genRandData4ALS.dml │ │ ├── genRandData4ChisquaredTest.dml │ │ ├── genRandData4DecisionTree.sh │ │ ├── genRandData4DecisionTree1.dml │ │ ├── genRandData4DecisionTree2.dml │ │ ├── genRandData4DescriptiveStats.dml │ │ ├── genRandData4FTest.dml │ │ ├── genRandData4Kmeans.dml │ │ ├── genRandData4LinearReg_LTstats.dml │ │ ├── genRandData4LinearRegression.dml │ │ ├── genRandData4LogReg_LTstats.dml │ │ ├── genRandData4LogisticRegression.dml │ │ ├── genRandData4MultiClassSVM.dml │ │ ├── genRandData4Multinomial.dml │ │ ├── genRandData4NMF.dml │ │ ├── genRandData4NMFBlockwise.dml │ │ ├── genRandData4PCA.dml │ │ ├── genRandData4StratStats.dml │ │ ├── genRandData4SurvAnalysis.dml │ │ ├── genRandData4Transform.dml │ │ ├── genRandData4Univariate.dml │ │ └── genStratStatisticsData.sh │ ├── fed │ │ ├── data │ │ │ └── splitAndMakeFederated.dml │ │ ├── genALS_FedData.sh │ │ ├── runALSFed.sh │ │ ├── runALS_CG_Fed.sh │ │ ├── runAllFed.sh │ │ ├── runL2SVMFed.sh │ │ └── utils │ │ │ ├── killFedWorkers.sh │ │ │ └── startFedWorkers.sh │ ├── log4j.properties │ ├── python │ │ └── io │ │ │ ├── load_native.py │ │ │ ├── load_numpy.py │ │ │ └── load_pandas.py │ ├── resource │ │ └── test_ops.dml │ ├── runALS_CG.sh │ ├── runALS_DS.sh │ ├── runAll.sh │ ├── runAllALS.sh │ ├── runAllBinomial.sh │ ├── runAllClustering.sh │ ├── runAllDimensionReduction.sh │ ├── runAllIO.sh │ ├── runAllMultinomial.sh │ ├── runAllRegression.sh │ ├── runAllStats.sh │ ├── runBivarStats.sh │ ├── runGLM_binomial_probit.sh │ ├── runGLM_gamma_log.sh │ ├── runGLM_poisson_log.sh │ ├── runIO.sh │ ├── runKmeans.sh │ ├── runL2SVM.sh │ ├── runLinearRegCG.sh │ ├── runLinearRegDS.sh │ ├── runMSVM.sh │ ├── runMultiLogReg.sh │ ├── runNaiveBayes.sh │ ├── runPCA.sh │ ├── runStratStats.sh │ ├── runUnivarStats.sh │ ├── scripts │ │ ├── GLM-predict.dml │ │ ├── GLM.dml │ │ ├── ImputeByKNN.dml │ │ ├── Kmeans-predict.dml │ │ ├── Kmeans.dml │ │ ├── LinearRegCG.dml │ │ ├── LinearRegDS.dml │ │ ├── MM.dml │ │ ├── MultiLogReg.dml │ │ ├── PCA.dml │ │ ├── Univar-Stats.dml │ │ ├── als-predict.dml │ │ ├── alsCG.dml │ │ ├── alsDS.dml │ │ ├── bivar-stats.dml │ │ ├── changeFormat.dml │ │ ├── extractTestData.dml │ │ ├── l2-svm-predict.dml │ │ ├── l2-svm.dml │ │ ├── m-svm-predict.dml │ │ ├── m-svm.dml │ │ ├── naive-bayes-predict.dml │ │ ├── naive-bayes.dml │ │ ├── read.dml │ │ ├── stratstats.dml │ │ └── transpose.dml │ ├── slab │ │ ├── data │ │ │ ├── gen_dense_data.py │ │ │ └── gen_sparse_data.py │ │ ├── mlAlgorithms │ │ │ ├── distributed │ │ │ │ ├── run_distributed_ml_algorithms.sh │ │ │ │ ├── slabHeteroscedasticityRobustStandardErrorsDistr.dml │ │ │ │ ├── slabLogisticRegressionDistr.dml │ │ │ │ ├── slabNonNegativeMatrixFactorizationDistr.dml │ │ │ │ ├── slabOrdinaryLeastSquaresRegressionDistr.dml │ │ │ │ └── slabPCADistr.dml │ │ │ ├── native │ │ │ │ ├── run_native_ml_algorithms.sh │ │ │ │ ├── slabLinearRegCG.dml │ │ │ │ ├── slabMultiLogitReg.dml │ │ │ │ └── slabNativePCA.dml │ │ │ └── single_node_dense │ │ │ │ ├── run_single_node_dense_ml.sh │ │ │ │ ├── slabHeteroscedasticityRobustStandardErrors.dml │ │ │ │ ├── slabLogisticRegression.dml │ │ │ │ ├── slabNonNegativeMatrixFactorization.dml │ │ │ │ ├── slabOrdinaryLeastSquaresRegression.dml │ │ │ │ └── slabPCA.dml │ │ ├── operators │ │ │ ├── distributed_sparse │ │ │ │ ├── run_distributed_matrix_sparse.sh │ │ │ │ ├── slabFrobeniusNormSparse.dml │ │ │ │ ├── slabGramMatrixSparse.dml │ │ │ │ ├── slabMatrixAdditionSparse.dml │ │ │ │ ├── slabMatrixMultSparse.dml │ │ │ │ ├── slabMatrixVectorMultSparse.dml │ │ │ │ └── slabTransposeSparse.dml │ │ │ └── single_node_dense │ │ │ │ ├── run_single_node_matrix_dense.sh │ │ │ │ ├── slabFrobeniusNorm.dml │ │ │ │ ├── slabGramMatrix.dml │ │ │ │ ├── slabMatrixAddition.dml │ │ │ │ ├── slabMatrixMult.dml │ │ │ │ ├── slabMatrixVectorMult.dml │ │ │ │ └── slabTranspose.dml │ │ ├── pipeline │ │ │ ├── run_slab_pipeline.sh │ │ │ ├── slabMultiplicationChain.dml │ │ │ └── slabSVD.dml │ │ └── slabUtils.dml │ ├── sparkDML2.sh │ └── todo │ │ ├── genRandLogRegData_LTStats.sh │ │ ├── genTreeData.sh │ │ ├── runAllTrees.sh │ │ ├── runDecTree.sh │ │ ├── runRandTree.sh │ │ └── scripts │ │ ├── decision-tree.dml │ │ └── random-forest.dml ├── pipelines │ ├── properties │ │ ├── param.csv │ │ ├── param.txt │ │ ├── primitives.csv │ │ └── testPrimitives.csv │ └── scripts │ │ ├── cleaning.dml │ │ ├── enumerateLogical.dml │ │ └── utils.dml ├── resource │ ├── README.md │ ├── aws_regional_prices.csv │ ├── bin │ │ └── systemds-ropt │ ├── ec2_stats.csv │ ├── launch │ │ ├── cluster.env │ │ ├── cluster_launch.sh │ │ ├── cluster_run_script.sh │ │ ├── cluster_utils.sh │ │ ├── ec2_bootstrap.sh │ │ ├── single_node.env │ │ ├── single_node_launch.sh │ │ ├── single_node_run_script.sh │ │ └── single_node_utils.sh │ ├── options.properties │ ├── requirements.txt │ └── update_prices.py ├── staging │ ├── Lanczos.dml │ ├── NCF.dml │ ├── PNMF.dml │ ├── PageRank.dml │ ├── QR_recursive.dml │ ├── SIMD-FFM-prototypes │ │ ├── LibMatrixBincellFFM.java │ │ ├── LibMatrixBincellSIMD.java │ │ ├── LibMatrixMultFFM.java │ │ ├── LibMatrixMultSIMD.java │ │ └── LibMatrixNativeFFM.java │ ├── bayesian_optimization │ │ ├── bayesianOptimization.dml │ │ └── test │ │ │ └── bayesianOptimizationMLTest.dml │ ├── clusterAndClassify │ │ └── clusteredClassification.dml │ ├── cuda-counter-based-prng │ │ ├── PhiloxJNvrtcExample.java │ │ ├── PhiloxRuntimeCompilationExample.java │ │ ├── kernel.cu │ │ ├── pom.xml │ │ └── readme.md │ ├── entity-resolution │ │ ├── binary-entity-resolution.dml │ │ ├── entity-clustering.dml │ │ ├── eval-entity-resolution.dml │ │ └── primitives │ │ │ ├── blocking.dml │ │ │ ├── clustering.dml │ │ │ ├── evaluation.dml │ │ │ ├── matching.dml │ │ │ ├── pipeline.dml │ │ │ ├── postprocessing.dml │ │ │ └── preprocessing.dml │ ├── fedplanner │ │ └── graph.py │ ├── fm-binclass.dml │ ├── fm-regression.dml │ ├── gaussian_process │ │ ├── covariance.dml │ │ ├── mode.dml │ │ └── test │ │ │ └── covariance.dml │ ├── google-cloud │ │ └── README.md │ ├── hmm │ │ ├── HMM Training.py │ │ └── HMM.py │ ├── isolationForest │ │ ├── isolationForest.dml │ │ └── test │ │ │ └── isolationForestTest.dml │ ├── learnedSampling │ │ ├── 1_Data_Model_Prep.dml │ │ ├── 2_Baseline_Sampling.dml │ │ ├── 3_BasicTraining.dml │ │ ├── 4_CombinedTraining.dml │ │ ├── 5_ClusteredSampling.dml │ │ └── README.md │ ├── lenet-train.dml │ ├── llvm-codegen-backend │ │ └── llvm-codegen-design.md │ ├── onnx │ │ ├── onnx_systemds │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── convert.py │ │ │ ├── onnx_helper.py │ │ │ ├── operator_gen.py │ │ │ ├── render.py │ │ │ ├── templates │ │ │ │ ├── graph_function.dml.jinja │ │ │ │ ├── graph_header.dml.jinja │ │ │ │ ├── main.dml.jinja │ │ │ │ ├── matrix_initialize.dml.jinja │ │ │ │ ├── model_header.dml.jinja │ │ │ │ ├── module_import.dml.jinja │ │ │ │ ├── operators │ │ │ │ │ ├── 2input_1output_operator.dml.jinja │ │ │ │ │ ├── function_call.dml.jinja │ │ │ │ │ ├── if_operator.dml.jinja │ │ │ │ │ └── neg.dml.jinja │ │ │ │ └── util.dml.jinja │ │ │ └── util.py │ │ ├── onnx_systemds_docs │ │ │ ├── onnx_systemds.rst │ │ │ └── onnx_systemds_design.rst │ │ └── onnx_systemds_tests │ │ │ ├── __init__.py │ │ │ ├── dml_wrapper │ │ │ ├── simple_conv_layer_2_wrapper.dml │ │ │ ├── simple_conv_layer_wrapper.dml │ │ │ ├── simple_dropout_layer_wrapper.dml │ │ │ ├── simple_if_graph_wrapper.dml │ │ │ ├── simple_mat_add_mul_sub_wrapper.dml │ │ │ ├── simple_mat_add_wrapper.dml │ │ │ ├── simple_mat_initialized_wrapper.dml │ │ │ ├── simple_maxpool_layer_wrapper.dml │ │ │ └── simple_relu_tanh_sigmoid_softmax_wrapper.dml │ │ │ ├── output_reference │ │ │ ├── simple_conv_layer_2_reference.out │ │ │ ├── simple_conv_layer_reference.out │ │ │ ├── simple_if_graph_reference.out │ │ │ ├── simple_mat_add_mul_sub_reference.out │ │ │ ├── simple_mat_add_reference.out │ │ │ ├── simple_mat_initialized_reference.out │ │ │ ├── simple_maxpool_layer_reference.out │ │ │ └── simple_relu_tanh_sigmoid_softmax_reference.out │ │ │ ├── test_models │ │ │ └── model_generate.py │ │ │ ├── test_simple.py │ │ │ └── util.py │ ├── python_script_generator │ │ ├── Generator - Design Document.md │ │ └── Generator-Design Document-v2.md │ ├── rbm_minibatch.dml │ ├── rbm_predict.dml │ ├── scalable_linalg │ │ ├── linalg_decomp.dml │ │ └── test │ │ │ ├── test_Cholesky.dml │ │ │ ├── test_LU.dml │ │ │ ├── test_QR.dml │ │ │ ├── test_all.dml │ │ │ ├── test_inverse.dml │ │ │ ├── test_solve.dml │ │ │ ├── test_triangular_inv.dml │ │ │ └── utils.dml │ ├── sklearn │ │ ├── .gitignore │ │ ├── SklearnToDMLMapper.py │ │ ├── SklearnToDMLMapper.rst │ │ ├── mapped_functions.rst │ │ ├── mappers │ │ │ ├── __init__.py │ │ │ ├── mapper.py │ │ │ ├── supervised.py │ │ │ ├── transformations.py │ │ │ └── unsupervised.py │ │ ├── poc │ │ │ ├── design.rst │ │ │ └── poc.py │ │ ├── run_tests.py │ │ └── tests │ │ │ ├── input_X.csv │ │ │ ├── input_X.csv.mtd │ │ │ ├── input_Y.csv │ │ │ ├── input_Y.csv.mtd │ │ │ └── util.py │ ├── stable_marriage │ │ └── StableMarriage.dml │ └── ts_alignment │ │ ├── README.md │ │ ├── __init__.py │ │ ├── alignment_test.py │ │ ├── data │ │ ├── x.csv │ │ └── y.csv │ │ └── lib │ │ ├── __init__.py │ │ ├── alignment_statistics.py │ │ ├── alignment_strategies.py │ │ ├── data_loader.py │ │ ├── distance_measure.py │ │ ├── evaluate_alignment.py │ │ ├── majority_voting.py │ │ ├── measures.py │ │ ├── sensor_data_loader.py │ │ ├── video_data_loader.py │ │ └── video_sampling.py ├── tutorials │ ├── federated │ │ ├── .gitignore │ │ ├── README.md │ │ ├── code │ │ │ ├── dataGen │ │ │ │ ├── federatedMetaDataGenerator.py │ │ │ │ ├── generate_mnist.py │ │ │ │ └── slice.dml │ │ │ ├── exp │ │ │ │ ├── CNN.dml │ │ │ │ ├── CNNLong.dml │ │ │ │ ├── adult.dml │ │ │ │ ├── adult_spec1.json │ │ │ │ ├── aggRepeat.dml │ │ │ │ ├── criteo.dml │ │ │ │ ├── criteo_spec1.json │ │ │ │ ├── lm.dml │ │ │ │ ├── mLogReg.dml │ │ │ │ ├── sum.dml │ │ │ │ └── sumRepeat.dml │ │ │ └── network │ │ │ │ └── CNN.dml │ │ ├── conf │ │ │ ├── def.xml │ │ │ ├── log4j-debug.properties │ │ │ ├── log4j-info.properties │ │ │ ├── log4j-off.properties │ │ │ └── ssl.xml │ │ ├── install.sh │ │ ├── parameters.sh │ │ ├── portforward.sh │ │ ├── run.sh │ │ ├── scripts │ │ │ ├── startMonitoring.sh │ │ │ ├── startWorker.sh │ │ │ ├── stopMonitoring.sh │ │ │ └── stopWorker.sh │ │ ├── setup.sh │ │ ├── startAllWorkers.sh │ │ ├── stopAllWorkers.sh │ │ └── sync.sh │ └── tsne │ │ └── pca-tsne.dml └── utils │ ├── csv2bin.dml │ ├── dataprep.dml │ ├── generateData.dml │ ├── head.dml │ ├── image_utils.dml │ ├── metrics.dml │ ├── project.dml │ ├── rowIndexMax.dml │ ├── sample.dml │ ├── shuffle.dml │ ├── splitXY-dummy.dml │ ├── splitXY.dml │ └── write.dml └── src ├── assembly ├── bin.xml ├── bin │ ├── LICENSE │ ├── NOTICE │ └── README.md ├── extra.xml ├── extra │ ├── LICENSE │ └── NOTICE ├── source.xml └── source │ └── LICENSE ├── main ├── cpp │ ├── CMakeLists.txt │ ├── build.bat │ ├── build.sh │ ├── build_BLAS.sh │ ├── build_HE.sh │ ├── build_mkl.sh │ ├── cmake │ │ ├── FindMKL.cmake │ │ └── FindOpenBLAS.cmake │ ├── common.h │ ├── config.h.cmake │ ├── he │ │ ├── CMakeLists.txt │ │ ├── he.cpp │ │ ├── he.h │ │ ├── libhe.cpp │ │ └── libhe.h │ ├── lib │ │ ├── libhe-Linux-x86_64.so │ │ ├── libsystemds_mkl-Linux-x86_64.so │ │ ├── libsystemds_mkl-Windows-AMD64.dll │ │ ├── libsystemds_openblas-Linux-x86_64.so │ │ ├── libsystemds_openblas-Windows-AMD64.dll │ │ ├── libsystemds_spoof_cuda-Linux-x86_64.so │ │ └── libsystemds_spoof_cuda-Windows-AMD64.dll │ ├── libmatrixdnn.cpp │ ├── libmatrixdnn.h │ ├── libmatrixmult.cpp │ ├── libmatrixmult.h │ ├── systemds.cpp │ └── systemds.h ├── cuda │ ├── CMakeLists.txt │ ├── headers │ │ ├── Matrix.h │ │ ├── TempStorage.cuh │ │ ├── agg_ops.cuh │ │ ├── cum_max.cuh │ │ ├── cum_min.cuh │ │ ├── cum_prod.cuh │ │ ├── cum_scan.cuh │ │ ├── cum_sum.cuh │ │ ├── cum_sum_prod.cuh │ │ ├── operators.cuh │ │ ├── reduction.cuh │ │ ├── spoof_utils.cuh │ │ ├── utils.cuh │ │ ├── vector_add.cuh │ │ └── vector_write.cuh │ ├── kernels │ │ ├── SystemDS.cu │ │ ├── SystemDS.ptx │ │ ├── reduction.cu │ │ └── reduction.ptx │ ├── spoof-launcher │ │ ├── SpoofCUDAContext.cpp │ │ ├── SpoofCUDAContext.h │ │ ├── SpoofCellwise.h │ │ ├── SpoofOperator.h │ │ ├── SpoofRowwise.h │ │ ├── host_utils.h │ │ ├── jni_bridge.cpp │ │ └── jni_bridge.h │ └── spoof │ │ ├── cellwise.cu │ │ ├── functions.cuh │ │ └── rowwise.cu ├── java │ ├── Dml.tokens │ ├── DmlLexer.tokens │ └── org │ │ └── apache │ │ └── sysds │ │ ├── api │ │ ├── ConfigurableAPI.java │ │ ├── DMLException.java │ │ ├── DMLOptions.java │ │ ├── DMLScript.java │ │ ├── PythonDMLScript.java │ │ ├── ScriptExecutorUtils.java │ │ ├── jmlc │ │ │ ├── Connection.java │ │ │ ├── JMLCUtils.java │ │ │ ├── PreparedScript.java │ │ │ └── ResultVariables.java │ │ └── mlcontext │ │ │ ├── Frame.java │ │ │ ├── FrameFormat.java │ │ │ ├── FrameMetadata.java │ │ │ ├── FrameSchema.java │ │ │ ├── MLContext.java │ │ │ ├── MLContextConversionUtil.java │ │ │ ├── MLContextException.java │ │ │ ├── MLContextUtil.java │ │ │ ├── MLResults.java │ │ │ ├── Matrix.java │ │ │ ├── MatrixFormat.java │ │ │ ├── MatrixMetadata.java │ │ │ ├── Metadata.java │ │ │ ├── ProjectInfo.java │ │ │ ├── Script.java │ │ │ ├── ScriptExecutor.java │ │ │ └── ScriptFactory.java │ │ ├── common │ │ ├── Builtins.java │ │ ├── InstructionType.java │ │ ├── Opcodes.java │ │ ├── Types.java │ │ └── Warnings.java │ │ ├── conf │ │ ├── CompilerConfig.java │ │ ├── ConfigurationManager.java │ │ └── DMLConfig.java │ │ ├── hops │ │ ├── AggBinaryOp.java │ │ ├── AggUnaryOp.java │ │ ├── BinaryOp.java │ │ ├── DataGenOp.java │ │ ├── DataOp.java │ │ ├── DnnOp.java │ │ ├── FunctionOp.java │ │ ├── Hop.java │ │ ├── HopsException.java │ │ ├── IndexingOp.java │ │ ├── LeftIndexingOp.java │ │ ├── LiteralOp.java │ │ ├── MemoTable.java │ │ ├── MultiThreadedHop.java │ │ ├── NaryOp.java │ │ ├── OptimizerUtils.java │ │ ├── ParameterizedBuiltinOp.java │ │ ├── QuaternaryOp.java │ │ ├── ReorgOp.java │ │ ├── TernaryOp.java │ │ ├── UnaryOp.java │ │ ├── codegen │ │ │ ├── SpoofCompiler.java │ │ │ ├── SpoofFusedOp.java │ │ │ ├── cplan │ │ │ │ ├── CNode.java │ │ │ │ ├── CNodeBinary.java │ │ │ │ ├── CNodeCell.java │ │ │ │ ├── CNodeData.java │ │ │ │ ├── CNodeMultiAgg.java │ │ │ │ ├── CNodeNary.java │ │ │ │ ├── CNodeOuterProduct.java │ │ │ │ ├── CNodeRow.java │ │ │ │ ├── CNodeTernary.java │ │ │ │ ├── CNodeTpl.java │ │ │ │ ├── CNodeUnary.java │ │ │ │ ├── CodeTemplate.java │ │ │ │ ├── cuda │ │ │ │ │ ├── Binary.java │ │ │ │ │ ├── Ternary.java │ │ │ │ │ └── Unary.java │ │ │ │ └── java │ │ │ │ │ ├── Binary.java │ │ │ │ │ ├── Ternary.java │ │ │ │ │ └── Unary.java │ │ │ ├── opt │ │ │ │ ├── InterestingPoint.java │ │ │ │ ├── PlanAnalyzer.java │ │ │ │ ├── PlanPartition.java │ │ │ │ ├── PlanSelection.java │ │ │ │ ├── PlanSelectionFuseAll.java │ │ │ │ ├── PlanSelectionFuseCostBased.java │ │ │ │ ├── PlanSelectionFuseCostBasedV2.java │ │ │ │ ├── PlanSelectionFuseNoRedundancy.java │ │ │ │ └── ReachabilityGraph.java │ │ │ └── template │ │ │ │ ├── CPlanCSERewriter.java │ │ │ │ ├── CPlanMemoTable.java │ │ │ │ ├── CPlanOpRewriter.java │ │ │ │ ├── TemplateBase.java │ │ │ │ ├── TemplateCell.java │ │ │ │ ├── TemplateMultiAgg.java │ │ │ │ ├── TemplateOuterProduct.java │ │ │ │ ├── TemplateRow.java │ │ │ │ └── TemplateUtils.java │ │ ├── cost │ │ │ ├── ComputeCost.java │ │ │ ├── CostEstimationWrapper.java │ │ │ ├── CostEstimator.java │ │ │ ├── CostEstimatorStaticRuntime.java │ │ │ └── VarStats.java │ │ ├── estim │ │ │ ├── EstimationUtils.java │ │ │ ├── EstimatorBasicAvg.java │ │ │ ├── EstimatorBasicWorst.java │ │ │ ├── EstimatorBitsetMM.java │ │ │ ├── EstimatorDensityMap.java │ │ │ ├── EstimatorLayeredGraph.java │ │ │ ├── EstimatorMatrixHistogram.java │ │ │ ├── EstimatorSample.java │ │ │ ├── EstimatorSampleRa.java │ │ │ ├── MMNode.java │ │ │ └── SparsityEstimator.java │ │ ├── fedplanner │ │ │ ├── AFederatedPlanner.java │ │ │ ├── FTypes.java │ │ │ ├── FederatedCompilationTimer.java │ │ │ ├── FederatedMemoTable.java │ │ │ ├── FederatedMemoTablePrinter.java │ │ │ ├── FederatedPlanCostEnumerator.java │ │ │ ├── FederatedPlanCostEstimator.java │ │ │ ├── FederatedPlanRewireTransTable.java │ │ │ ├── FederatedPlannerFedAll.java │ │ │ ├── FederatedPlannerFedCostBased.java │ │ │ ├── FederatedPlannerFedHeuristic.java │ │ │ ├── FederatedPlannerLogger.java │ │ │ └── FederatedPlannerUtils.java │ │ ├── ipa │ │ │ ├── FunctionCallGraph.java │ │ │ ├── FunctionCallSizeInfo.java │ │ │ ├── IPAPass.java │ │ │ ├── IPAPassApplyStaticAndDynamicHopRewrites.java │ │ │ ├── IPAPassCompressionWorkloadAnalysis.java │ │ │ ├── IPAPassEliminateDeadCode.java │ │ │ ├── IPAPassFlagFunctionsRecompileOnce.java │ │ │ ├── IPAPassFlagLoopsRecompileOnce.java │ │ │ ├── IPAPassFlagNonDeterminism.java │ │ │ ├── IPAPassForwardFunctionCalls.java │ │ │ ├── IPAPassInlineFunctions.java │ │ │ ├── IPAPassPropagateReplaceLiterals.java │ │ │ ├── IPAPassRemoveConstantBinaryOps.java │ │ │ ├── IPAPassRemoveUnnecessaryCheckpoints.java │ │ │ ├── IPAPassRemoveUnusedFunctions.java │ │ │ ├── IPAPassReplaceEvalFunctionCalls.java │ │ │ ├── IPAPassRewriteFederatedPlan.java │ │ │ └── InterProceduralAnalysis.java │ │ ├── recompile │ │ │ ├── LiteralReplacement.java │ │ │ ├── RecompileStatus.java │ │ │ └── Recompiler.java │ │ └── rewrite │ │ │ ├── HopDagValidator.java │ │ │ ├── HopRewriteRule.java │ │ │ ├── HopRewriteUtils.java │ │ │ ├── MarkForLineageReuse.java │ │ │ ├── ProgramRewriteStatus.java │ │ │ ├── ProgramRewriter.java │ │ │ ├── RewriteAlgebraicSimplificationDynamic.java │ │ │ ├── RewriteAlgebraicSimplificationStatic.java │ │ │ ├── RewriteBlockSizeAndReblock.java │ │ │ ├── RewriteCommonSubexpressionElimination.java │ │ │ ├── RewriteCompressedReblock.java │ │ │ ├── RewriteConstantFolding.java │ │ │ ├── RewriteElementwiseMultChainOptimization.java │ │ │ ├── RewriteForLoopVectorization.java │ │ │ ├── RewriteGPUSpecificOps.java │ │ │ ├── RewriteHoistLoopInvariantOperations.java │ │ │ ├── RewriteIndexingVectorization.java │ │ │ ├── RewriteInjectOOCTee.java │ │ │ ├── RewriteInjectSparkLoopCheckpointing.java │ │ │ ├── RewriteInjectSparkPReadCheckpointing.java │ │ │ ├── RewriteMarkLoopVariablesUpdateInPlace.java │ │ │ ├── RewriteMatrixMultChainOptimization.java │ │ │ ├── RewriteMatrixMultChainOptimizationSparse.java │ │ │ ├── RewriteMatrixMultChainOptimizationTranspose.java │ │ │ ├── RewriteMergeBlockSequence.java │ │ │ ├── RewriteNonScalarPrint.java │ │ │ ├── RewriteQuantizationFusedCompression.java │ │ │ ├── RewriteRemoveEmptyBasicBlocks.java │ │ │ ├── RewriteRemoveEmptyForLoops.java │ │ │ ├── RewriteRemoveForLoopEmptySequence.java │ │ │ ├── RewriteRemovePersistentReadWrite.java │ │ │ ├── RewriteRemoveReadAfterWrite.java │ │ │ ├── RewriteRemoveTransformEncodeMeta.java │ │ │ ├── RewriteRemoveUnnecessaryBranches.java │ │ │ ├── RewriteRemoveUnnecessaryCasts.java │ │ │ ├── RewriteSplitDagDataDependentOperators.java │ │ │ ├── RewriteSplitDagUnknownCSVRead.java │ │ │ └── StatementBlockRewriteRule.java │ │ ├── lops │ │ ├── Append.java │ │ ├── AppendG.java │ │ ├── AppendGAlignedSP.java │ │ ├── AppendM.java │ │ ├── AppendR.java │ │ ├── Binary.java │ │ ├── BinaryM.java │ │ ├── BinaryScalar.java │ │ ├── BinaryUAggChain.java │ │ ├── CSVReBlock.java │ │ ├── CentralMoment.java │ │ ├── Checkpoint.java │ │ ├── CoVariance.java │ │ ├── Compression.java │ │ ├── Ctable.java │ │ ├── CumulativeOffsetBinary.java │ │ ├── CumulativePartialAggregate.java │ │ ├── Data.java │ │ ├── DataGen.java │ │ ├── DeCompression.java │ │ ├── DnnTransform.java │ │ ├── Federated.java │ │ ├── FunctionCallCP.java │ │ ├── GroupedAggregate.java │ │ ├── GroupedAggregateM.java │ │ ├── LeftIndex.java │ │ ├── Local.java │ │ ├── Lop.java │ │ ├── LopProperties.java │ │ ├── LopsException.java │ │ ├── MMCJ.java │ │ ├── MMRJ.java │ │ ├── MMTSJ.java │ │ ├── MMZip.java │ │ ├── MapMult.java │ │ ├── MapMultChain.java │ │ ├── MatMultCP.java │ │ ├── Nary.java │ │ ├── OperatorOrderingUtils.java │ │ ├── OutputParameters.java │ │ ├── PMMJ.java │ │ ├── PMapMult.java │ │ ├── ParameterizedBuiltin.java │ │ ├── PartialAggregate.java │ │ ├── PickByCount.java │ │ ├── ReBlock.java │ │ ├── RightIndex.java │ │ ├── SortKeys.java │ │ ├── SpoofFused.java │ │ ├── Sql.java │ │ ├── Tee.java │ │ ├── Ternary.java │ │ ├── TernaryAggregate.java │ │ ├── Transform.java │ │ ├── UAggOuterChain.java │ │ ├── Unary.java │ │ ├── UnaryCP.java │ │ ├── WeightedCrossEntropy.java │ │ ├── WeightedCrossEntropyR.java │ │ ├── WeightedDivMM.java │ │ ├── WeightedDivMMR.java │ │ ├── WeightedSigmoid.java │ │ ├── WeightedSigmoidR.java │ │ ├── WeightedSquaredLoss.java │ │ ├── WeightedSquaredLossR.java │ │ ├── WeightedUnaryMM.java │ │ ├── WeightedUnaryMMR.java │ │ ├── compile │ │ │ ├── Dag.java │ │ │ ├── LopComparator.java │ │ │ └── linearization │ │ │ │ ├── IDagLinearizer.java │ │ │ │ ├── IDagLinearizerFactory.java │ │ │ │ ├── LinearizerBreadthFirst.java │ │ │ │ ├── LinearizerCostBased.java │ │ │ │ ├── LinearizerDepthFirst.java │ │ │ │ ├── LinearizerMaxParallelism.java │ │ │ │ ├── LinearizerMinIntermediates.java │ │ │ │ ├── LinearizerPipelineAware.java │ │ │ │ ├── LinearizerResourceAwareFast.java │ │ │ │ └── LinearizerResourceAwareOptimal.java │ │ └── rewrite │ │ │ ├── LopRewriteRule.java │ │ │ ├── LopRewriter.java │ │ │ ├── RewriteAddBroadcastLop.java │ │ │ ├── RewriteAddChkpointInLoop.java │ │ │ ├── RewriteAddChkpointLop.java │ │ │ ├── RewriteAddGPUEvictLop.java │ │ │ ├── RewriteAddPrefetchLop.java │ │ │ ├── RewriteFixIDs.java │ │ │ └── RewriteUpdateGPUPlacements.java │ │ ├── parser │ │ ├── AssignmentStatement.java │ │ ├── BinaryExpression.java │ │ ├── BooleanExpression.java │ │ ├── BooleanIdentifier.java │ │ ├── BuiltinConstant.java │ │ ├── BuiltinFunctionExpression.java │ │ ├── ConditionalPredicate.java │ │ ├── ConstIdentifier.java │ │ ├── DMLProgram.java │ │ ├── DMLTranslator.java │ │ ├── DataExpression.java │ │ ├── DataIdentifier.java │ │ ├── DoubleIdentifier.java │ │ ├── Expression.java │ │ ├── ExpressionList.java │ │ ├── ForStatement.java │ │ ├── ForStatementBlock.java │ │ ├── FunctionCallIdentifier.java │ │ ├── FunctionDictionary.java │ │ ├── FunctionStatement.java │ │ ├── FunctionStatementBlock.java │ │ ├── Identifier.java │ │ ├── IfStatement.java │ │ ├── IfStatementBlock.java │ │ ├── ImportStatement.java │ │ ├── IndexedIdentifier.java │ │ ├── IntIdentifier.java │ │ ├── IterablePredicate.java │ │ ├── LanguageException.java │ │ ├── ListIdentifier.java │ │ ├── LiveVariableAnalysis.java │ │ ├── MultiAssignmentStatement.java │ │ ├── OutputStatement.java │ │ ├── ParForStatement.java │ │ ├── ParForStatementBlock.java │ │ ├── ParameterExpression.java │ │ ├── ParameterizedBuiltinFunctionExpression.java │ │ ├── ParseException.java │ │ ├── ParseInfo.java │ │ ├── ParserFactory.java │ │ ├── ParserWrapper.java │ │ ├── PathStatement.java │ │ ├── PrintStatement.java │ │ ├── RelationalExpression.java │ │ ├── Statement.java │ │ ├── StatementBlock.java │ │ ├── StringIdentifier.java │ │ ├── VariableSet.java │ │ ├── WhileStatement.java │ │ ├── WhileStatementBlock.java │ │ └── dml │ │ │ ├── CustomErrorListener.java │ │ │ ├── DMLParserWrapper.java │ │ │ ├── Dml.g4 │ │ │ ├── Dml.interp │ │ │ ├── DmlBaseListener.java │ │ │ ├── DmlLexer.interp │ │ │ ├── DmlLexer.java │ │ │ ├── DmlListener.java │ │ │ ├── DmlParser.java │ │ │ ├── DmlPreprocessor.java │ │ │ ├── DmlSyntacticValidator.java │ │ │ ├── ExpressionInfo.java │ │ │ └── StatementInfo.java │ │ ├── protobuf │ │ └── SysdsProtos.java │ │ ├── resource │ │ ├── CloudInstance.java │ │ ├── CloudUtils.java │ │ ├── ResourceCompiler.java │ │ ├── ResourceOptimizer.java │ │ ├── cost │ │ │ ├── CPCostUtils.java │ │ │ ├── CostEstimationException.java │ │ │ ├── CostEstimator.java │ │ │ ├── IOCostUtils.java │ │ │ ├── RDDStats.java │ │ │ ├── SparkCostUtils.java │ │ │ └── VarStats.java │ │ └── enumeration │ │ │ ├── EnumerationUtils.java │ │ │ ├── Enumerator.java │ │ │ ├── GridBasedEnumerator.java │ │ │ ├── InterestBasedEnumerator.java │ │ │ └── PruneBasedEnumerator.java │ │ ├── runtime │ │ ├── DMLRuntimeException.java │ │ ├── DMLScriptException.java │ │ ├── codegen │ │ │ ├── ByteClassLoader.java │ │ │ ├── CodegenUtils.java │ │ │ ├── LibSpoofPrimitives.java │ │ │ ├── SpoofCUDACellwise.java │ │ │ ├── SpoofCUDAOperator.java │ │ │ ├── SpoofCUDARowwise.java │ │ │ ├── SpoofCellwise.java │ │ │ ├── SpoofMultiAggregate.java │ │ │ ├── SpoofOperator.java │ │ │ ├── SpoofOuterProduct.java │ │ │ └── SpoofRowwise.java │ │ ├── compress │ │ │ ├── CompressedMatrixBlock.java │ │ │ ├── CompressedMatrixBlockFactory.java │ │ │ ├── CompressionSettings.java │ │ │ ├── CompressionSettingsBuilder.java │ │ │ ├── CompressionStatistics.java │ │ │ ├── DMLCompressionException.java │ │ │ ├── SingletonLookupHashMap.java │ │ │ ├── bitmap │ │ │ │ ├── ABitmap.java │ │ │ │ ├── Bitmap.java │ │ │ │ ├── BitmapEncoder.java │ │ │ │ └── MultiColBitmap.java │ │ │ ├── cocode │ │ │ │ ├── AColumnCoCoder.java │ │ │ │ ├── CoCodeBinPacking.java │ │ │ │ ├── CoCodeGreedy.java │ │ │ │ ├── CoCodeHybrid.java │ │ │ │ ├── CoCodePriorityQue.java │ │ │ │ ├── CoCodeStatic.java │ │ │ │ ├── CoCoderFactory.java │ │ │ │ ├── ColIndexes.java │ │ │ │ ├── Memorizer.java │ │ │ │ └── MemorizerV2.java │ │ │ ├── colgroup │ │ │ │ ├── AColGroup.java │ │ │ │ ├── AColGroupCompressed.java │ │ │ │ ├── AColGroupOffset.java │ │ │ │ ├── AColGroupValue.java │ │ │ │ ├── ADictBasedColGroup.java │ │ │ │ ├── AMorphingMMColGroup.java │ │ │ │ ├── AOffsetsGroup.java │ │ │ │ ├── APreAgg.java │ │ │ │ ├── ASDC.java │ │ │ │ ├── ASDCZero.java │ │ │ │ ├── ColGroupConst.java │ │ │ │ ├── ColGroupDDC.java │ │ │ │ ├── ColGroupDDCFOR.java │ │ │ │ ├── ColGroupDeltaDDC.java │ │ │ │ ├── ColGroupEmpty.java │ │ │ │ ├── ColGroupFactory.java │ │ │ │ ├── ColGroupIO.java │ │ │ │ ├── ColGroupLinearFunctional.java │ │ │ │ ├── ColGroupOLE.java │ │ │ │ ├── ColGroupRLE.java │ │ │ │ ├── ColGroupSDC.java │ │ │ │ ├── ColGroupSDCFOR.java │ │ │ │ ├── ColGroupSDCSingle.java │ │ │ │ ├── ColGroupSDCSingleZeros.java │ │ │ │ ├── ColGroupSDCZeros.java │ │ │ │ ├── ColGroupSizes.java │ │ │ │ ├── ColGroupUncompressed.java │ │ │ │ ├── ColGroupUncompressedArray.java │ │ │ │ ├── ColGroupUtils.java │ │ │ │ ├── IContainADictionary.java │ │ │ │ ├── IContainDefaultTuple.java │ │ │ │ ├── IFrameOfReferenceGroup.java │ │ │ │ ├── IMapToDataGroup.java │ │ │ │ ├── dictionary │ │ │ │ │ ├── ACachingMBDictionary.java │ │ │ │ │ ├── ADictionary.java │ │ │ │ │ ├── AIdentityDictionary.java │ │ │ │ │ ├── DeltaDictionary.java │ │ │ │ │ ├── DictLibMatrixMult.java │ │ │ │ │ ├── Dictionary.java │ │ │ │ │ ├── DictionaryFactory.java │ │ │ │ │ ├── IDictionary.java │ │ │ │ │ ├── IdentityDictionary.java │ │ │ │ │ ├── IdentityDictionarySlice.java │ │ │ │ │ ├── MatrixBlockDictionary.java │ │ │ │ │ ├── PlaceHolderDict.java │ │ │ │ │ └── QDictionary.java │ │ │ │ ├── functional │ │ │ │ │ └── LinearRegression.java │ │ │ │ ├── indexes │ │ │ │ │ ├── AColIndex.java │ │ │ │ │ ├── ArrayIndex.java │ │ │ │ │ ├── ColIndexFactory.java │ │ │ │ │ ├── CombinedIndex.java │ │ │ │ │ ├── IColIndex.java │ │ │ │ │ ├── IIterate.java │ │ │ │ │ ├── RangeIndex.java │ │ │ │ │ ├── SingleIndex.java │ │ │ │ │ ├── TwoIndex.java │ │ │ │ │ └── TwoRangesIndex.java │ │ │ │ ├── insertionsort │ │ │ │ │ ├── AInsertionSorter.java │ │ │ │ │ ├── InsertionSorterFactory.java │ │ │ │ │ ├── MaterializeSort.java │ │ │ │ │ └── MergeSort.java │ │ │ │ ├── mapping │ │ │ │ │ ├── AMapToData.java │ │ │ │ │ ├── MapToBit.java │ │ │ │ │ ├── MapToByte.java │ │ │ │ │ ├── MapToChar.java │ │ │ │ │ ├── MapToCharPByte.java │ │ │ │ │ ├── MapToFactory.java │ │ │ │ │ ├── MapToInt.java │ │ │ │ │ ├── MapToUByte.java │ │ │ │ │ └── MapToZero.java │ │ │ │ ├── offset │ │ │ │ │ ├── AIterator.java │ │ │ │ │ ├── AOffset.java │ │ │ │ │ ├── AOffsetByte.java │ │ │ │ │ ├── AOffsetIterator.java │ │ │ │ │ ├── ISliceOffset.java │ │ │ │ │ ├── OffsetByte.java │ │ │ │ │ ├── OffsetByteNZ.java │ │ │ │ │ ├── OffsetByteUNZ.java │ │ │ │ │ ├── OffsetChar.java │ │ │ │ │ ├── OffsetEmpty.java │ │ │ │ │ ├── OffsetFactory.java │ │ │ │ │ ├── OffsetSingle.java │ │ │ │ │ └── OffsetTwo.java │ │ │ │ └── scheme │ │ │ │ │ ├── ACLAScheme.java │ │ │ │ │ ├── CompressionScheme.java │ │ │ │ │ ├── ConstScheme.java │ │ │ │ │ ├── DDCScheme.java │ │ │ │ │ ├── DDCSchemeMC.java │ │ │ │ │ ├── DDCSchemeSC.java │ │ │ │ │ ├── EmptyScheme.java │ │ │ │ │ ├── ICLAScheme.java │ │ │ │ │ ├── RLEScheme.java │ │ │ │ │ ├── SDCScheme.java │ │ │ │ │ ├── SDCSchemeMC.java │ │ │ │ │ ├── SDCSchemeSC.java │ │ │ │ │ ├── SchemeFactory.java │ │ │ │ │ └── UncompressedScheme.java │ │ │ ├── cost │ │ │ │ ├── ACostEstimate.java │ │ │ │ ├── ComputationCostEstimator.java │ │ │ │ ├── CostEstimatorBuilder.java │ │ │ │ ├── CostEstimatorFactory.java │ │ │ │ ├── DistinctCostEstimator.java │ │ │ │ ├── HybridCostEstimator.java │ │ │ │ ├── InstructionTypeCounter.java │ │ │ │ └── MemoryCostEstimator.java │ │ │ ├── estim │ │ │ │ ├── AComEst.java │ │ │ │ ├── ComEstCompressed.java │ │ │ │ ├── ComEstCompressedSample.java │ │ │ │ ├── ComEstExact.java │ │ │ │ ├── ComEstFactory.java │ │ │ │ ├── ComEstSample.java │ │ │ │ ├── CompressedSizeInfo.java │ │ │ │ ├── CompressedSizeInfoColGroup.java │ │ │ │ ├── EstimationFactors.java │ │ │ │ ├── encoding │ │ │ │ │ ├── AEncode.java │ │ │ │ │ ├── ConstEncoding.java │ │ │ │ │ ├── DenseEncoding.java │ │ │ │ │ ├── EmptyEncoding.java │ │ │ │ │ ├── EncodingFactory.java │ │ │ │ │ ├── IEncode.java │ │ │ │ │ └── SparseEncoding.java │ │ │ │ └── sample │ │ │ │ │ ├── HassAndStokes.java │ │ │ │ │ ├── SampleEstimatorFactory.java │ │ │ │ │ ├── ShlosserEstimator.java │ │ │ │ │ ├── ShlosserJackknifeEstimator.java │ │ │ │ │ └── SmoothedJackknifeEstimator.java │ │ │ ├── io │ │ │ │ ├── CompressUnwrap.java │ │ │ │ ├── CompressWrap.java │ │ │ │ ├── CompressedWriteBlock.java │ │ │ │ ├── DictWritable.java │ │ │ │ ├── ReaderCompressed.java │ │ │ │ ├── ReaderSparkCompressed.java │ │ │ │ └── WriterCompressed.java │ │ │ ├── lib │ │ │ │ ├── CLALibAggTernaryOp.java │ │ │ │ ├── CLALibBinCompress.java │ │ │ │ ├── CLALibBinaryCellOp.java │ │ │ │ ├── CLALibCBind.java │ │ │ │ ├── CLALibCMOps.java │ │ │ │ ├── CLALibCombineGroups.java │ │ │ │ ├── CLALibCompAgg.java │ │ │ │ ├── CLALibDecompress.java │ │ │ │ ├── CLALibLeftMultBy.java │ │ │ │ ├── CLALibMMChain.java │ │ │ │ ├── CLALibMatrixMult.java │ │ │ │ ├── CLALibMerge.java │ │ │ │ ├── CLALibReorg.java │ │ │ │ ├── CLALibReplace.java │ │ │ │ ├── CLALibReshape.java │ │ │ │ ├── CLALibRexpand.java │ │ │ │ ├── CLALibRightMultBy.java │ │ │ │ ├── CLALibScalar.java │ │ │ │ ├── CLALibScheme.java │ │ │ │ ├── CLALibSelectionMult.java │ │ │ │ ├── CLALibSeparator.java │ │ │ │ ├── CLALibSlice.java │ │ │ │ ├── CLALibSquash.java │ │ │ │ ├── CLALibStack.java │ │ │ │ ├── CLALibTSMM.java │ │ │ │ ├── CLALibTernaryOp.java │ │ │ │ ├── CLALibUnary.java │ │ │ │ └── CLALibUtils.java │ │ │ ├── plan │ │ │ │ ├── CompressionPlanFactory.java │ │ │ │ ├── IPlanEncode.java │ │ │ │ └── NaivePlanEncode.java │ │ │ ├── readers │ │ │ │ ├── ReaderColumnSelection.java │ │ │ │ ├── ReaderColumnSelectionDenseMultiBlock.java │ │ │ │ ├── ReaderColumnSelectionDenseMultiBlockTransposed.java │ │ │ │ ├── ReaderColumnSelectionDenseSingleBlock.java │ │ │ │ ├── ReaderColumnSelectionDenseSingleBlockQuantized.java │ │ │ │ ├── ReaderColumnSelectionDenseSingleBlockTransposed.java │ │ │ │ ├── ReaderColumnSelectionEmpty.java │ │ │ │ ├── ReaderColumnSelectionSparse.java │ │ │ │ └── ReaderColumnSelectionSparseTransposed.java │ │ │ ├── utils │ │ │ │ ├── ACount.java │ │ │ │ ├── ACountHashMap.java │ │ │ │ ├── CompressRDDClean.java │ │ │ │ ├── DblArray.java │ │ │ │ ├── DblArrayCountHashMap.java │ │ │ │ ├── DblArrayIntListHashMap.java │ │ │ │ ├── DoubleCountHashMap.java │ │ │ │ ├── DoubleIntListHashMap.java │ │ │ │ ├── HashMapLongInt.java │ │ │ │ ├── IntArrayList.java │ │ │ │ └── Util.java │ │ │ └── workload │ │ │ │ ├── AWTreeNode.java │ │ │ │ ├── Op.java │ │ │ │ ├── OpMetadata.java │ │ │ │ ├── OpNormal.java │ │ │ │ ├── OpSided.java │ │ │ │ ├── WTreeNode.java │ │ │ │ ├── WTreeRoot.java │ │ │ │ └── WorkloadAnalyzer.java │ │ ├── controlprogram │ │ │ ├── BasicProgramBlock.java │ │ │ ├── ForProgramBlock.java │ │ │ ├── FunctionProgramBlock.java │ │ │ ├── IfProgramBlock.java │ │ │ ├── LocalVariableMap.java │ │ │ ├── ParForProgramBlock.java │ │ │ ├── Program.java │ │ │ ├── ProgramBlock.java │ │ │ ├── WhileProgramBlock.java │ │ │ ├── caching │ │ │ │ ├── ByteBuffer.java │ │ │ │ ├── CacheBlock.java │ │ │ │ ├── CacheBlockFactory.java │ │ │ │ ├── CacheDataInput.java │ │ │ │ ├── CacheDataOutput.java │ │ │ │ ├── CacheEvictionQueue.java │ │ │ │ ├── CacheMaintenanceService.java │ │ │ │ ├── CacheStatistics.java │ │ │ │ ├── CacheableData.java │ │ │ │ ├── FrameObject.java │ │ │ │ ├── LazyWriteBuffer.java │ │ │ │ ├── MatrixObject.java │ │ │ │ ├── PageCache.java │ │ │ │ ├── TensorObject.java │ │ │ │ └── UnifiedMemoryManager.java │ │ │ ├── context │ │ │ │ ├── ExecutionContext.java │ │ │ │ ├── ExecutionContextFactory.java │ │ │ │ ├── MatrixObjectFuture.java │ │ │ │ └── SparkExecutionContext.java │ │ │ ├── federated │ │ │ │ ├── ExecutionContextMap.java │ │ │ │ ├── FederatedData.java │ │ │ │ ├── FederatedLocalData.java │ │ │ │ ├── FederatedLookupTable.java │ │ │ │ ├── FederatedRange.java │ │ │ │ ├── FederatedReadCache.java │ │ │ │ ├── FederatedRequest.java │ │ │ │ ├── FederatedResponse.java │ │ │ │ ├── FederatedSSLUtil.java │ │ │ │ ├── FederatedStatistics.java │ │ │ │ ├── FederatedUDF.java │ │ │ │ ├── FederatedWorker.java │ │ │ │ ├── FederatedWorkerHandler.java │ │ │ │ ├── FederatedWorkerHandlerException.java │ │ │ │ ├── FederatedWorkloadAnalyzer.java │ │ │ │ ├── FederationMap.java │ │ │ │ ├── FederationUtils.java │ │ │ │ ├── MatrixLineagePair.java │ │ │ │ ├── compression │ │ │ │ │ ├── CompressionDecoderEndStatisticsHandler.java │ │ │ │ │ ├── CompressionDecoderStartStatisticsHandler.java │ │ │ │ │ ├── CompressionEncoderEndStatisticsHandler.java │ │ │ │ │ └── CompressionEncoderStartStatisticsHandler.java │ │ │ │ └── monitoring │ │ │ │ │ ├── Backend-architecture.svg │ │ │ │ │ ├── Backend-processes.svg │ │ │ │ │ ├── DB-diagram.svg │ │ │ │ │ ├── FederatedMonitoringServer.java │ │ │ │ │ ├── FederatedMonitoringServerHandler.java │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Request.java │ │ │ │ │ ├── Response.java │ │ │ │ │ ├── controllers │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── CoordinatorController.java │ │ │ │ │ ├── IController.java │ │ │ │ │ ├── StatisticsController.java │ │ │ │ │ └── WorkerController.java │ │ │ │ │ ├── models │ │ │ │ │ ├── BaseModel.java │ │ │ │ │ ├── CoordinatorConnectionModel.java │ │ │ │ │ ├── CoordinatorModel.java │ │ │ │ │ ├── DataObjectModel.java │ │ │ │ │ ├── EventModel.java │ │ │ │ │ ├── EventStageModel.java │ │ │ │ │ ├── HeavyHitterModel.java │ │ │ │ │ ├── RequestModel.java │ │ │ │ │ ├── StatisticsModel.java │ │ │ │ │ ├── StatisticsOptions.java │ │ │ │ │ ├── TrafficModel.java │ │ │ │ │ ├── UtilizationModel.java │ │ │ │ │ └── WorkerModel.java │ │ │ │ │ ├── repositories │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── DerbyRepository.java │ │ │ │ │ └── IRepository.java │ │ │ │ │ └── services │ │ │ │ │ ├── CoordinatorService.java │ │ │ │ │ ├── MapperService.java │ │ │ │ │ ├── StatisticsService.java │ │ │ │ │ └── WorkerService.java │ │ │ ├── paramserv │ │ │ │ ├── FederatedPSControlThread.java │ │ │ │ ├── HEParamServer.java │ │ │ │ ├── LocalPSWorker.java │ │ │ │ ├── LocalParamServer.java │ │ │ │ ├── NativeHEHelper.java │ │ │ │ ├── NetworkTrafficCounter.java │ │ │ │ ├── PSWorker.java │ │ │ │ ├── ParamServer.java │ │ │ │ ├── ParamservUtils.java │ │ │ │ ├── SparkPSBody.java │ │ │ │ ├── SparkPSProxy.java │ │ │ │ ├── SparkPSWorker.java │ │ │ │ ├── SparkParamservUtils.java │ │ │ │ ├── dp │ │ │ │ │ ├── BalanceToAvgFederatedScheme.java │ │ │ │ │ ├── DCLocalScheme.java │ │ │ │ │ ├── DCSparkScheme.java │ │ │ │ │ ├── DRLocalScheme.java │ │ │ │ │ ├── DRRLocalScheme.java │ │ │ │ │ ├── DRRSparkScheme.java │ │ │ │ │ ├── DRSparkScheme.java │ │ │ │ │ ├── DataPartitionFederatedScheme.java │ │ │ │ │ ├── DataPartitionLocalScheme.java │ │ │ │ │ ├── DataPartitionSparkScheme.java │ │ │ │ │ ├── DataPartitionerSparkAggregator.java │ │ │ │ │ ├── DataPartitionerSparkMapper.java │ │ │ │ │ ├── FederatedDataPartitioner.java │ │ │ │ │ ├── KeepDataOnWorkerFederatedScheme.java │ │ │ │ │ ├── LocalDataPartitioner.java │ │ │ │ │ ├── ORLocalScheme.java │ │ │ │ │ ├── ORSparkScheme.java │ │ │ │ │ ├── ReplicateToMaxFederatedScheme.java │ │ │ │ │ ├── ShuffleFederatedScheme.java │ │ │ │ │ ├── SparkDataPartitioner.java │ │ │ │ │ └── SubsampleToMinFederatedScheme.java │ │ │ │ ├── homomorphicEncryption │ │ │ │ │ ├── PublicKey.java │ │ │ │ │ ├── SEALClient.java │ │ │ │ │ └── SEALServer.java │ │ │ │ └── rpc │ │ │ │ │ ├── PSRpcCall.java │ │ │ │ │ ├── PSRpcFactory.java │ │ │ │ │ ├── PSRpcHandler.java │ │ │ │ │ ├── PSRpcObject.java │ │ │ │ │ └── PSRpcResponse.java │ │ │ └── parfor │ │ │ │ ├── CachedReuseVariables.java │ │ │ │ ├── DataPartitioner.java │ │ │ │ ├── DataPartitionerLocal.java │ │ │ │ ├── DataPartitionerRemoteSpark.java │ │ │ │ ├── DataPartitionerRemoteSparkMapper.java │ │ │ │ ├── DataPartitionerRemoteSparkReducer.java │ │ │ │ ├── LocalParWorker.java │ │ │ │ ├── LocalTaskQueue.java │ │ │ │ ├── ParForBody.java │ │ │ │ ├── ParWorker.java │ │ │ │ ├── RemoteDPParForSpark.java │ │ │ │ ├── RemoteDPParForSparkWorker.java │ │ │ │ ├── RemoteParForJobReturn.java │ │ │ │ ├── RemoteParForSpark.java │ │ │ │ ├── RemoteParForSparkWorker.java │ │ │ │ ├── RemoteParForUtils.java │ │ │ │ ├── ResultMerge.java │ │ │ │ ├── ResultMergeFrameLocalMemory.java │ │ │ │ ├── ResultMergeLocalAutomatic.java │ │ │ │ ├── ResultMergeLocalFile.java │ │ │ │ ├── ResultMergeLocalMemory.java │ │ │ │ ├── ResultMergeMatrix.java │ │ │ │ ├── ResultMergeRemoteSpark.java │ │ │ │ ├── ResultMergeRemoteSparkWCompare.java │ │ │ │ ├── Task.java │ │ │ │ ├── TaskPartitioner.java │ │ │ │ ├── TaskPartitionerFactoring.java │ │ │ │ ├── TaskPartitionerFactoringCmax.java │ │ │ │ ├── TaskPartitionerFactoringCmin.java │ │ │ │ ├── TaskPartitionerFactory.java │ │ │ │ ├── TaskPartitionerFixedsize.java │ │ │ │ ├── TaskPartitionerNaive.java │ │ │ │ ├── TaskPartitionerStatic.java │ │ │ │ ├── opt │ │ │ │ ├── CostEstimator.java │ │ │ │ ├── CostEstimatorHops.java │ │ │ │ ├── CostEstimatorRuntime.java │ │ │ │ ├── OptNode.java │ │ │ │ ├── OptTree.java │ │ │ │ ├── OptTreeConverter.java │ │ │ │ ├── OptTreePlanMapping.java │ │ │ │ ├── OptimizationWrapper.java │ │ │ │ ├── Optimizer.java │ │ │ │ ├── OptimizerConstrained.java │ │ │ │ ├── OptimizerHeuristic.java │ │ │ │ ├── OptimizerRuleBased.java │ │ │ │ └── ProgramRecompiler.java │ │ │ │ └── util │ │ │ │ ├── IDHandler.java │ │ │ │ ├── IDSequence.java │ │ │ │ ├── PairWritableBlock.java │ │ │ │ └── PairWritableCell.java │ │ ├── data │ │ │ ├── BasicTensorBlock.java │ │ │ ├── Block.java │ │ │ ├── DataTensorBlock.java │ │ │ ├── DenseBlock.java │ │ │ ├── DenseBlockBool.java │ │ │ ├── DenseBlockDRB.java │ │ │ ├── DenseBlockFP32.java │ │ │ ├── DenseBlockFP64.java │ │ │ ├── DenseBlockFP64DEDUP.java │ │ │ ├── DenseBlockFactory.java │ │ │ ├── DenseBlockInt32.java │ │ │ ├── DenseBlockInt64.java │ │ │ ├── DenseBlockLBool.java │ │ │ ├── DenseBlockLDRB.java │ │ │ ├── DenseBlockLFP32.java │ │ │ ├── DenseBlockLFP64.java │ │ │ ├── DenseBlockLFP64DEDUP.java │ │ │ ├── DenseBlockLInt32.java │ │ │ ├── DenseBlockLInt64.java │ │ │ ├── DenseBlockLString.java │ │ │ ├── DenseBlockString.java │ │ │ ├── IndexedTensorBlock.java │ │ │ ├── LibTensorAgg.java │ │ │ ├── LibTensorBincell.java │ │ │ ├── LibTensorReorg.java │ │ │ ├── SparseBlock.java │ │ │ ├── SparseBlockCOO.java │ │ │ ├── SparseBlockCSC.java │ │ │ ├── SparseBlockCSR.java │ │ │ ├── SparseBlockDCSR.java │ │ │ ├── SparseBlockFactory.java │ │ │ ├── SparseBlockMCSC.java │ │ │ ├── SparseBlockMCSR.java │ │ │ ├── SparseRow.java │ │ │ ├── SparseRowScalar.java │ │ │ ├── SparseRowVector.java │ │ │ ├── TensorBlock.java │ │ │ └── TensorIndexes.java │ │ ├── einsum │ │ │ ├── EinsumContext.java │ │ │ └── EinsumEquationValidator.java │ │ ├── frame │ │ │ └── data │ │ │ │ ├── FrameBlock.java │ │ │ │ ├── columns │ │ │ │ ├── ABooleanArray.java │ │ │ │ ├── ACompressedArray.java │ │ │ │ ├── Array.java │ │ │ │ ├── ArrayFactory.java │ │ │ │ ├── ArrayWrapper.java │ │ │ │ ├── BitSetArray.java │ │ │ │ ├── BooleanArray.java │ │ │ │ ├── CharArray.java │ │ │ │ ├── ColumnMetadata.java │ │ │ │ ├── DDCArray.java │ │ │ │ ├── DoubleArray.java │ │ │ │ ├── FloatArray.java │ │ │ │ ├── HashIntegerArray.java │ │ │ │ ├── HashLongArray.java │ │ │ │ ├── HashMapToInt.java │ │ │ │ ├── IHashArray.java │ │ │ │ ├── IntegerArray.java │ │ │ │ ├── LongArray.java │ │ │ │ ├── OptionalArray.java │ │ │ │ ├── RaggedArray.java │ │ │ │ └── StringArray.java │ │ │ │ ├── compress │ │ │ │ ├── ArrayCompressionStatistics.java │ │ │ │ ├── CompressedFrameBlockFactory.java │ │ │ │ ├── FrameCompressionSettings.java │ │ │ │ └── FrameCompressionSettingsBuilder.java │ │ │ │ ├── iterators │ │ │ │ ├── IteratorFactory.java │ │ │ │ ├── ObjectRowIterator.java │ │ │ │ ├── RowIterator.java │ │ │ │ └── StringRowIterator.java │ │ │ │ └── lib │ │ │ │ ├── FrameFromMatrixBlock.java │ │ │ │ ├── FrameLibAppend.java │ │ │ │ ├── FrameLibApplySchema.java │ │ │ │ ├── FrameLibCompress.java │ │ │ │ ├── FrameLibDetectSchema.java │ │ │ │ ├── FrameLibRemoveEmpty.java │ │ │ │ ├── FrameUtil.java │ │ │ │ └── MatrixBlockFromFrame.java │ │ ├── functionobjects │ │ │ ├── And.java │ │ │ ├── BitwAnd.java │ │ │ ├── BitwOr.java │ │ │ ├── BitwShiftL.java │ │ │ ├── BitwShiftR.java │ │ │ ├── BitwXor.java │ │ │ ├── Builtin.java │ │ │ ├── CM.java │ │ │ ├── COV.java │ │ │ ├── CTable.java │ │ │ ├── DiagIndex.java │ │ │ ├── Divide.java │ │ │ ├── Equals.java │ │ │ ├── FunctionObject.java │ │ │ ├── GreaterThan.java │ │ │ ├── GreaterThanEquals.java │ │ │ ├── IfElse.java │ │ │ ├── IndexFunction.java │ │ │ ├── IntegerDivide.java │ │ │ ├── KahanFunction.java │ │ │ ├── KahanPlus.java │ │ │ ├── KahanPlusSq.java │ │ │ ├── LessThan.java │ │ │ ├── LessThanEquals.java │ │ │ ├── Max.java │ │ │ ├── Mean.java │ │ │ ├── Min.java │ │ │ ├── Minus.java │ │ │ ├── Minus1Multiply.java │ │ │ ├── MinusMultiply.java │ │ │ ├── MinusNz.java │ │ │ ├── Modulus.java │ │ │ ├── Multiply.java │ │ │ ├── Multiply2.java │ │ │ ├── Not.java │ │ │ ├── NotEquals.java │ │ │ ├── OffsetColumnIndex.java │ │ │ ├── Or.java │ │ │ ├── ParameterizedBuiltin.java │ │ │ ├── Plus.java │ │ │ ├── PlusMultiply.java │ │ │ ├── Power.java │ │ │ ├── Power2.java │ │ │ ├── ReduceAll.java │ │ │ ├── ReduceCol.java │ │ │ ├── ReduceDiag.java │ │ │ ├── ReduceRow.java │ │ │ ├── RevIndex.java │ │ │ ├── RollIndex.java │ │ │ ├── SortIndex.java │ │ │ ├── SwapIndex.java │ │ │ ├── TernaryValueFunction.java │ │ │ ├── ValueComparisonFunction.java │ │ │ ├── ValueFunction.java │ │ │ └── Xor.java │ │ ├── instructions │ │ │ ├── CPInstructionParser.java │ │ │ ├── FEDInstructionParser.java │ │ │ ├── GPUInstructionParser.java │ │ │ ├── Instruction.java │ │ │ ├── InstructionParser.java │ │ │ ├── InstructionUtils.java │ │ │ ├── OOCInstructionParser.java │ │ │ ├── SPInstructionParser.java │ │ │ ├── cp │ │ │ │ ├── AggregateBinaryCPInstruction.java │ │ │ │ ├── AggregateTernaryCPInstruction.java │ │ │ │ ├── AggregateUnaryCPInstruction.java │ │ │ │ ├── AppendCPInstruction.java │ │ │ │ ├── BinaryCPInstruction.java │ │ │ │ ├── BinaryFrameFrameCPInstruction.java │ │ │ │ ├── BinaryFrameMatrixCPInstruction.java │ │ │ │ ├── BinaryMatrixMatrixCPInstruction.java │ │ │ │ ├── BinaryMatrixScalarCPInstruction.java │ │ │ │ ├── BinaryScalarScalarCPInstruction.java │ │ │ │ ├── BinaryTensorTensorCPInstruction.java │ │ │ │ ├── BooleanObject.java │ │ │ │ ├── BroadcastCPInstruction.java │ │ │ │ ├── BuiltinNaryCPInstruction.java │ │ │ │ ├── CM_COV_Object.java │ │ │ │ ├── CPInstruction.java │ │ │ │ ├── CPOperand.java │ │ │ │ ├── CentralMomentCPInstruction.java │ │ │ │ ├── CiphertextMatrix.java │ │ │ │ ├── CompressionCPInstruction.java │ │ │ │ ├── ComputationCPInstruction.java │ │ │ │ ├── CovarianceCPInstruction.java │ │ │ │ ├── CtableCPInstruction.java │ │ │ │ ├── Data.java │ │ │ │ ├── DataGenCPInstruction.java │ │ │ │ ├── DeCompressionCPInstruction.java │ │ │ │ ├── DnnCPInstruction.java │ │ │ │ ├── DoubleObject.java │ │ │ │ ├── EinsumCPInstruction.java │ │ │ │ ├── Encrypted.java │ │ │ │ ├── EvalNaryCPInstruction.java │ │ │ │ ├── EvictCPInstruction.java │ │ │ │ ├── FrameAppendCPInstruction.java │ │ │ │ ├── FrameIndexingCPInstruction.java │ │ │ │ ├── FunctionCallCPInstruction.java │ │ │ │ ├── IndexingCPInstruction.java │ │ │ │ ├── IntObject.java │ │ │ │ ├── KahanObject.java │ │ │ │ ├── ListAppendRemoveCPInstruction.java │ │ │ │ ├── ListIndexingCPInstruction.java │ │ │ │ ├── ListObject.java │ │ │ │ ├── LocalCPInstruction.java │ │ │ │ ├── MMChainCPInstruction.java │ │ │ │ ├── MMTSJCPInstruction.java │ │ │ │ ├── MatrixAppendCPInstruction.java │ │ │ │ ├── MatrixBuiltinNaryCPInstruction.java │ │ │ │ ├── MatrixIndexingCPInstruction.java │ │ │ │ ├── MultiReturnBuiltinCPInstruction.java │ │ │ │ ├── MultiReturnComplexMatrixBuiltinCPInstruction.java │ │ │ │ ├── MultiReturnParameterizedBuiltinCPInstruction.java │ │ │ │ ├── PMMJCPInstruction.java │ │ │ │ ├── ParameterizedBuiltinCPInstruction.java │ │ │ │ ├── ParamservBuiltinCPInstruction.java │ │ │ │ ├── PlaintextMatrix.java │ │ │ │ ├── PrefetchCPInstruction.java │ │ │ │ ├── QuantilePickCPInstruction.java │ │ │ │ ├── QuantileSortCPInstruction.java │ │ │ │ ├── QuaternaryCPInstruction.java │ │ │ │ ├── ReorgCPInstruction.java │ │ │ │ ├── ReshapeCPInstruction.java │ │ │ │ ├── ScalarAppendCPInstruction.java │ │ │ │ ├── ScalarBuiltinNaryCPInstruction.java │ │ │ │ ├── ScalarObject.java │ │ │ │ ├── ScalarObjectFactory.java │ │ │ │ ├── SpoofCPInstruction.java │ │ │ │ ├── SqlCPInstruction.java │ │ │ │ ├── StringInitCPInstruction.java │ │ │ │ ├── StringObject.java │ │ │ │ ├── TernaryCPInstruction.java │ │ │ │ ├── TernaryFrameScalarCPInstruction.java │ │ │ │ ├── TriggerBroadcastTask.java │ │ │ │ ├── TriggerCheckpointTask.java │ │ │ │ ├── TriggerPrefetchTask.java │ │ │ │ ├── UaggOuterChainCPInstruction.java │ │ │ │ ├── UnaryCPInstruction.java │ │ │ │ ├── UnaryFrameCPInstruction.java │ │ │ │ ├── UnaryMatrixCPInstruction.java │ │ │ │ ├── UnaryScalarCPInstruction.java │ │ │ │ ├── UnionCPInstruction.java │ │ │ │ └── VariableCPInstruction.java │ │ │ ├── cpfile │ │ │ │ └── MatrixIndexingCPFileInstruction.java │ │ │ ├── fed │ │ │ │ ├── AggregateBinaryFEDInstruction.java │ │ │ │ ├── AggregateTernaryFEDInstruction.java │ │ │ │ ├── AggregateUnaryFEDInstruction.java │ │ │ │ ├── AppendFEDInstruction.java │ │ │ │ ├── BinaryFEDInstruction.java │ │ │ │ ├── BinaryMatrixMatrixFEDInstruction.java │ │ │ │ ├── BinaryMatrixScalarFEDInstruction.java │ │ │ │ ├── CastFEDInstruction.java │ │ │ │ ├── CentralMomentFEDInstruction.java │ │ │ │ ├── ComputationFEDInstruction.java │ │ │ │ ├── CovarianceFEDInstruction.java │ │ │ │ ├── CtableFEDInstruction.java │ │ │ │ ├── CumulativeOffsetFEDInstruction.java │ │ │ │ ├── FEDInstruction.java │ │ │ │ ├── FEDInstructionUtils.java │ │ │ │ ├── IndexingFEDInstruction.java │ │ │ │ ├── InitFEDInstruction.java │ │ │ │ ├── MMChainFEDInstruction.java │ │ │ │ ├── MMFEDInstruction.java │ │ │ │ ├── MultiReturnParameterizedBuiltinFEDInstruction.java │ │ │ │ ├── ParameterizedBuiltinFEDInstruction.java │ │ │ │ ├── QuantilePickFEDInstruction.java │ │ │ │ ├── QuantileSortFEDInstruction.java │ │ │ │ ├── QuaternaryFEDInstruction.java │ │ │ │ ├── QuaternaryWCeMMFEDInstruction.java │ │ │ │ ├── QuaternaryWDivMMFEDInstruction.java │ │ │ │ ├── QuaternaryWSLossFEDInstruction.java │ │ │ │ ├── QuaternaryWSigmoidFEDInstruction.java │ │ │ │ ├── QuaternaryWUMMFEDInstruction.java │ │ │ │ ├── ReblockFEDInstruction.java │ │ │ │ ├── ReorgFEDInstruction.java │ │ │ │ ├── ReshapeFEDInstruction.java │ │ │ │ ├── SpoofFEDInstruction.java │ │ │ │ ├── TernaryFEDInstruction.java │ │ │ │ ├── TernaryFrameScalarFEDInstruction.java │ │ │ │ ├── TsmmFEDInstruction.java │ │ │ │ ├── UnaryFEDInstruction.java │ │ │ │ ├── UnaryMatrixFEDInstruction.java │ │ │ │ └── VariableFEDInstruction.java │ │ │ ├── gpu │ │ │ │ ├── AggregateBinaryGPUInstruction.java │ │ │ │ ├── AggregateUnaryGPUInstruction.java │ │ │ │ ├── ArithmeticBinaryGPUInstruction.java │ │ │ │ ├── BuiltinBinaryGPUInstruction.java │ │ │ │ ├── BuiltinUnaryGPUInstruction.java │ │ │ │ ├── DnnGPUInstruction.java │ │ │ │ ├── GPUInstruction.java │ │ │ │ ├── MMTSJGPUInstruction.java │ │ │ │ ├── MatrixAppendGPUInstruction.java │ │ │ │ ├── MatrixBuiltinGPUInstruction.java │ │ │ │ ├── MatrixIndexingGPUInstruction.java │ │ │ │ ├── MatrixMatrixArithmeticGPUInstruction.java │ │ │ │ ├── MatrixMatrixAxpyGPUInstruction.java │ │ │ │ ├── MatrixMatrixBuiltinGPUInstruction.java │ │ │ │ ├── MatrixMatrixRelationalBinaryGPUInstruction.java │ │ │ │ ├── MatrixReshapeGPUInstruction.java │ │ │ │ ├── RelationalBinaryGPUInstruction.java │ │ │ │ ├── ReorgGPUInstruction.java │ │ │ │ ├── ScalarMatrixArithmeticGPUInstruction.java │ │ │ │ ├── ScalarMatrixBuiltinGPUInstruction.java │ │ │ │ ├── ScalarMatrixRelationalBinaryGPUInstruction.java │ │ │ │ ├── SpoofCUDAInstruction.java │ │ │ │ └── context │ │ │ │ │ ├── CSRPointer.java │ │ │ │ │ ├── CudaMemoryAllocator.java │ │ │ │ │ ├── ExecutionConfig.java │ │ │ │ │ ├── GPUContext.java │ │ │ │ │ ├── GPUContextPool.java │ │ │ │ │ ├── GPULazyCudaFreeMemoryManager.java │ │ │ │ │ ├── GPUMatrixMemoryManager.java │ │ │ │ │ ├── GPUMemoryAllocator.java │ │ │ │ │ ├── GPUMemoryEviction.java │ │ │ │ │ ├── GPUMemoryManager.java │ │ │ │ │ ├── GPUObject.java │ │ │ │ │ ├── JCudaKernels.java │ │ │ │ │ ├── ShadowBuffer.java │ │ │ │ │ └── UnifiedMemoryAllocator.java │ │ │ ├── ooc │ │ │ │ ├── AggregateUnaryOOCInstruction.java │ │ │ │ ├── BinaryOOCInstruction.java │ │ │ │ ├── CSVReblockOOCInstruction.java │ │ │ │ ├── CachingStream.java │ │ │ │ ├── CentralMomentOOCInstruction.java │ │ │ │ ├── ComputationOOCInstruction.java │ │ │ │ ├── CtableOOCInstruction.java │ │ │ │ ├── DataGenOOCInstruction.java │ │ │ │ ├── IndexingOOCInstruction.java │ │ │ │ ├── MatrixIndexingOOCInstruction.java │ │ │ │ ├── MatrixVectorBinaryOOCInstruction.java │ │ │ │ ├── OOCEvictionManager.java │ │ │ │ ├── OOCInstruction.java │ │ │ │ ├── OOCStream.java │ │ │ │ ├── OOCStreamable.java │ │ │ │ ├── ParameterizedBuiltinOOCInstruction.java │ │ │ │ ├── PlaybackStream.java │ │ │ │ ├── ReblockOOCInstruction.java │ │ │ │ ├── ReorgOOCInstruction.java │ │ │ │ ├── SubscribableTaskQueue.java │ │ │ │ ├── TSMMOOCInstruction.java │ │ │ │ ├── TeeOOCInstruction.java │ │ │ │ └── UnaryOOCInstruction.java │ │ │ └── spark │ │ │ │ ├── AggregateBinarySPInstruction.java │ │ │ │ ├── AggregateTernarySPInstruction.java │ │ │ │ ├── AggregateUnarySPInstruction.java │ │ │ │ ├── AggregateUnarySketchSPInstruction.java │ │ │ │ ├── AppendGAlignedSPInstruction.java │ │ │ │ ├── AppendGSPInstruction.java │ │ │ │ ├── AppendMSPInstruction.java │ │ │ │ ├── AppendRSPInstruction.java │ │ │ │ ├── AppendSPInstruction.java │ │ │ │ ├── BinUaggChainSPInstruction.java │ │ │ │ ├── BinaryFrameFrameSPInstruction.java │ │ │ │ ├── BinaryFrameMatrixSPInstruction.java │ │ │ │ ├── BinaryMatrixBVectorSPInstruction.java │ │ │ │ ├── BinaryMatrixMatrixSPInstruction.java │ │ │ │ ├── BinaryMatrixScalarSPInstruction.java │ │ │ │ ├── BinarySPInstruction.java │ │ │ │ ├── BinaryTensorTensorBroadcastSPInstruction.java │ │ │ │ ├── BinaryTensorTensorSPInstruction.java │ │ │ │ ├── BuiltinNarySPInstruction.java │ │ │ │ ├── CSVReblockSPInstruction.java │ │ │ │ ├── CastSPInstruction.java │ │ │ │ ├── CentralMomentSPInstruction.java │ │ │ │ ├── CheckpointSPInstruction.java │ │ │ │ ├── CompressionSPInstruction.java │ │ │ │ ├── ComputationSPInstruction.java │ │ │ │ ├── CovarianceSPInstruction.java │ │ │ │ ├── CpmmSPInstruction.java │ │ │ │ ├── CtableSPInstruction.java │ │ │ │ ├── CumulativeAggregateSPInstruction.java │ │ │ │ ├── CumulativeOffsetSPInstruction.java │ │ │ │ ├── DeCompressionSPInstruction.java │ │ │ │ ├── DnnSPInstruction.java │ │ │ │ ├── FrameAppendMSPInstruction.java │ │ │ │ ├── FrameAppendRSPInstruction.java │ │ │ │ ├── FrameIndexingSPInstruction.java │ │ │ │ ├── IndexingSPInstruction.java │ │ │ │ ├── LIBSVMReblockSPInstruction.java │ │ │ │ ├── MapmmChainSPInstruction.java │ │ │ │ ├── MapmmSPInstruction.java │ │ │ │ ├── MatrixAppendMSPInstruction.java │ │ │ │ ├── MatrixAppendRSPInstruction.java │ │ │ │ ├── MatrixIndexingSPInstruction.java │ │ │ │ ├── MatrixReshapeSPInstruction.java │ │ │ │ ├── MultiReturnParameterizedBuiltinSPInstruction.java │ │ │ │ ├── PMapmmSPInstruction.java │ │ │ │ ├── ParameterizedBuiltinSPInstruction.java │ │ │ │ ├── PmmSPInstruction.java │ │ │ │ ├── QuantilePickSPInstruction.java │ │ │ │ ├── QuantileSortSPInstruction.java │ │ │ │ ├── QuaternarySPInstruction.java │ │ │ │ ├── RandSPInstruction.java │ │ │ │ ├── ReblockSPInstruction.java │ │ │ │ ├── ReorgSPInstruction.java │ │ │ │ ├── RmmSPInstruction.java │ │ │ │ ├── SPInstruction.java │ │ │ │ ├── SpoofSPInstruction.java │ │ │ │ ├── TernaryFrameScalarSPInstruction.java │ │ │ │ ├── TernarySPInstruction.java │ │ │ │ ├── Tsmm2SPInstruction.java │ │ │ │ ├── TsmmSPInstruction.java │ │ │ │ ├── UaggOuterChainSPInstruction.java │ │ │ │ ├── UnaryFrameSPInstruction.java │ │ │ │ ├── UnaryMatrixSPInstruction.java │ │ │ │ ├── UnarySPInstruction.java │ │ │ │ ├── WriteSPInstruction.java │ │ │ │ ├── ZipmmSPInstruction.java │ │ │ │ ├── data │ │ │ │ ├── BlockPartitioner.java │ │ │ │ ├── BroadcastObject.java │ │ │ │ ├── CorrMatrixBlock.java │ │ │ │ ├── DatasetObject.java │ │ │ │ ├── FrameReblockBuffer.java │ │ │ │ ├── IndexedMatrixValue.java │ │ │ │ ├── LazyIterableIterator.java │ │ │ │ ├── LineageObject.java │ │ │ │ ├── PartitionedBlock.java │ │ │ │ ├── PartitionedBroadcast.java │ │ │ │ ├── RDDObject.java │ │ │ │ ├── ReblockBuffer.java │ │ │ │ ├── RowMatrixBlock.java │ │ │ │ ├── SerLongWritable.java │ │ │ │ └── SerText.java │ │ │ │ ├── functions │ │ │ │ ├── AggregateDropCorrectionFunction.java │ │ │ │ ├── ComputeBinaryBlockNnzFunction.java │ │ │ │ ├── ConvertFrameBlockToIJVLines.java │ │ │ │ ├── ConvertMatrixBlockToIJVLines.java │ │ │ │ ├── ConvertStringToLongTextPair.java │ │ │ │ ├── CopyBinaryCellFunction.java │ │ │ │ ├── CopyFrameBlockFunction.java │ │ │ │ ├── CopyFrameBlockPairFunction.java │ │ │ │ ├── CopyMatrixBlockFunction.java │ │ │ │ ├── CopyMatrixBlockPairFunction.java │ │ │ │ ├── CopyTensorBlockFunction.java │ │ │ │ ├── CopyTensorBlockPairFunction.java │ │ │ │ ├── CopyTextInputFunction.java │ │ │ │ ├── CreateSparseBlockFunction.java │ │ │ │ ├── ExtractBlockForBinaryReblock.java │ │ │ │ ├── ExtractGroup.java │ │ │ │ ├── ExtractGroupNWeights.java │ │ │ │ ├── FilterDiagMatrixBlocksFunction.java │ │ │ │ ├── FilterNonEmptyBlocksFunction.java │ │ │ │ ├── FilterNonEmptyBlocksFunction2.java │ │ │ │ ├── IsBlockInList.java │ │ │ │ ├── IsBlockInRange.java │ │ │ │ ├── IsFrameBlockInRange.java │ │ │ │ ├── MapInputSignature.java │ │ │ │ ├── MapJoinSignature.java │ │ │ │ ├── MatrixMatrixBinaryOpFunction.java │ │ │ │ ├── MatrixScalarUnaryFunction.java │ │ │ │ ├── MatrixVectorBinaryOpPartitionFunction.java │ │ │ │ ├── OuterVectorBinaryOpFunction.java │ │ │ │ ├── PerformGroupByAggInCombiner.java │ │ │ │ ├── PerformGroupByAggInReducer.java │ │ │ │ ├── ReblockTensorFunction.java │ │ │ │ ├── RecomputeNnzFunction.java │ │ │ │ ├── ReorgMapFunction.java │ │ │ │ ├── ReplicateBlockFunction.java │ │ │ │ ├── ReplicateTensorFunction.java │ │ │ │ ├── ReplicateVectorFunction.java │ │ │ │ ├── TensorTensorBinaryOpFunction.java │ │ │ │ └── TensorTensorBinaryOpPartitionFunction.java │ │ │ │ └── utils │ │ │ │ ├── FrameRDDAggregateUtils.java │ │ │ │ ├── FrameRDDConverterUtils.java │ │ │ │ ├── RDDAggregateUtils.java │ │ │ │ ├── RDDConverterUtils.java │ │ │ │ ├── RDDConverterUtilsExt.java │ │ │ │ ├── RDDSortUtils.java │ │ │ │ └── SparkUtils.java │ │ ├── io │ │ │ ├── BinaryBlockSerialization.java │ │ │ ├── FileFormatProperties.java │ │ │ ├── FileFormatPropertiesCOG.java │ │ │ ├── FileFormatPropertiesCSV.java │ │ │ ├── FileFormatPropertiesHDF5.java │ │ │ ├── FileFormatPropertiesLIBSVM.java │ │ │ ├── FileFormatPropertiesMM.java │ │ │ ├── FrameReader.java │ │ │ ├── FrameReaderBinaryBlock.java │ │ │ ├── FrameReaderBinaryBlockParallel.java │ │ │ ├── FrameReaderFactory.java │ │ │ ├── FrameReaderJSONL.java │ │ │ ├── FrameReaderJSONLParallel.java │ │ │ ├── FrameReaderParquet.java │ │ │ ├── FrameReaderParquetParallel.java │ │ │ ├── FrameReaderProto.java │ │ │ ├── FrameReaderTextCSV.java │ │ │ ├── FrameReaderTextCSVParallel.java │ │ │ ├── FrameReaderTextCell.java │ │ │ ├── FrameReaderTextCellParallel.java │ │ │ ├── FrameWriter.java │ │ │ ├── FrameWriterBinaryBlock.java │ │ │ ├── FrameWriterBinaryBlockParallel.java │ │ │ ├── FrameWriterCompressed.java │ │ │ ├── FrameWriterFactory.java │ │ │ ├── FrameWriterJSONL.java │ │ │ ├── FrameWriterJSONLParallel.java │ │ │ ├── FrameWriterParquet.java │ │ │ ├── FrameWriterParquetParallel.java │ │ │ ├── FrameWriterProto.java │ │ │ ├── FrameWriterTextCSV.java │ │ │ ├── FrameWriterTextCSVParallel.java │ │ │ ├── FrameWriterTextCell.java │ │ │ ├── FrameWriterTextCellParallel.java │ │ │ ├── IOUtilFunctions.java │ │ │ ├── InputOutputInfo.java │ │ │ ├── ListReader.java │ │ │ ├── ListWriter.java │ │ │ ├── MatrixReader.java │ │ │ ├── MatrixReaderFactory.java │ │ │ ├── MatrixWriter.java │ │ │ ├── MatrixWriterFactory.java │ │ │ ├── ReadProperties.java │ │ │ ├── ReaderBinaryBlock.java │ │ │ ├── ReaderBinaryBlockParallel.java │ │ │ ├── ReaderCOG.java │ │ │ ├── ReaderCOGParallel.java │ │ │ ├── ReaderHDF5.java │ │ │ ├── ReaderHDF5Parallel.java │ │ │ ├── ReaderTextCSV.java │ │ │ ├── ReaderTextCSVParallel.java │ │ │ ├── ReaderTextCell.java │ │ │ ├── ReaderTextCellParallel.java │ │ │ ├── ReaderTextLIBSVM.java │ │ │ ├── ReaderTextLIBSVMParallel.java │ │ │ ├── ReaderWriterFederated.java │ │ │ ├── TensorReader.java │ │ │ ├── TensorReaderBinaryBlock.java │ │ │ ├── TensorReaderBinaryBlockParallel.java │ │ │ ├── TensorReaderFactory.java │ │ │ ├── TensorReaderTextCell.java │ │ │ ├── TensorReaderTextCellParallel.java │ │ │ ├── TensorWriter.java │ │ │ ├── TensorWriterBinaryBlock.java │ │ │ ├── TensorWriterBinaryBlockParallel.java │ │ │ ├── TensorWriterFactory.java │ │ │ ├── TensorWriterTextCell.java │ │ │ ├── TensorWriterTextCellParallel.java │ │ │ ├── WriterBinaryBlock.java │ │ │ ├── WriterBinaryBlockParallel.java │ │ │ ├── WriterHDF5.java │ │ │ ├── WriterHDF5Parallel.java │ │ │ ├── WriterMatrixMarket.java │ │ │ ├── WriterMatrixMarketParallel.java │ │ │ ├── WriterTextCSV.java │ │ │ ├── WriterTextCSVParallel.java │ │ │ ├── WriterTextCell.java │ │ │ ├── WriterTextCellParallel.java │ │ │ ├── WriterTextLIBSVM.java │ │ │ ├── WriterTextLIBSVMParallel.java │ │ │ ├── cog │ │ │ │ ├── COGByteReader.java │ │ │ │ ├── COGCompressionUtils.java │ │ │ │ ├── COGHeader.java │ │ │ │ ├── COGProperties.java │ │ │ │ ├── IFDTag.java │ │ │ │ ├── IFDTagDictionary.java │ │ │ │ ├── SampleFormatDataTypes.java │ │ │ │ └── TIFFDataTypes.java │ │ │ └── hdf5 │ │ │ │ ├── H5.java │ │ │ │ ├── H5BTree.java │ │ │ │ ├── H5BufferBuilder.java │ │ │ │ ├── H5Constants.java │ │ │ │ ├── H5ContiguousDataset.java │ │ │ │ ├── H5DoubleDataType.java │ │ │ │ ├── H5GroupSymbolTableNode.java │ │ │ │ ├── H5LocalHeap.java │ │ │ │ ├── H5ObjectHeader.java │ │ │ │ ├── H5RootObject.java │ │ │ │ ├── H5RuntimeException.java │ │ │ │ ├── H5Superblock.java │ │ │ │ ├── H5SymbolTableEntry.java │ │ │ │ ├── Utils.java │ │ │ │ └── message │ │ │ │ ├── H5DataLayoutMessage.java │ │ │ │ ├── H5DataSpaceMessage.java │ │ │ │ ├── H5DataTypeMessage.java │ │ │ │ ├── H5FillValueMessage.java │ │ │ │ ├── H5Message.java │ │ │ │ ├── H5NilMessage.java │ │ │ │ ├── H5ObjectModificationTimeMessage.java │ │ │ │ └── H5SymbolTableMessage.java │ │ ├── iogen │ │ │ ├── ColIndexStructure.java │ │ │ ├── CustomProperties.java │ │ │ ├── FormatIdentifyer.java │ │ │ ├── GenerateReader.java │ │ │ ├── LongestCommonSubsequence.java │ │ │ ├── MappingProperties.java │ │ │ ├── MappingTrie.java │ │ │ ├── MappingTrieNode.java │ │ │ ├── RawIndex.java │ │ │ ├── ReaderMapping.java │ │ │ ├── ReaderMappingIndex.java │ │ │ ├── RowIndexStructure.java │ │ │ ├── SampleProperties.java │ │ │ ├── TextTrie.java │ │ │ ├── TextTrieNode.java │ │ │ ├── codegen │ │ │ │ ├── CodeGenTrie.java │ │ │ │ ├── CodeGenTrieNode.java │ │ │ │ ├── FrameCodeGen.java │ │ │ │ └── MatrixCodeGen.java │ │ │ └── template │ │ │ │ ├── FrameGenerateReader.java │ │ │ │ ├── FrameGenerateReaderParallel.java │ │ │ │ ├── MatrixGenerateReader.java │ │ │ │ ├── MatrixGenerateReaderParallel.java │ │ │ │ ├── TemplateCodeGenBase.java │ │ │ │ └── TemplateUtil.java │ │ ├── lineage │ │ │ ├── BooleanArray32.java │ │ │ ├── Lineage.java │ │ │ ├── LineageCache.java │ │ │ ├── LineageCacheConfig.java │ │ │ ├── LineageCacheEntry.java │ │ │ ├── LineageCacheEviction.java │ │ │ ├── LineageCacheStatistics.java │ │ │ ├── LineageCodegenItem.java │ │ │ ├── LineageDebugger.java │ │ │ ├── LineageDedupBlock.java │ │ │ ├── LineageDedupUtils.java │ │ │ ├── LineageEstimator.java │ │ │ ├── LineageEstimatorStatistics.java │ │ │ ├── LineageGPUCacheEviction.java │ │ │ ├── LineageItem.java │ │ │ ├── LineageItemUtils.java │ │ │ ├── LineageMap.java │ │ │ ├── LineageParser.java │ │ │ ├── LineageRecomputeUtils.java │ │ │ ├── LineageRewriteReuse.java │ │ │ ├── LineageSparkCacheEviction.java │ │ │ ├── LineageTokenizer.java │ │ │ └── LineageTraceable.java │ │ ├── matrix │ │ │ ├── data │ │ │ │ ├── BinaryBlockToTextCellConverter.java │ │ │ │ ├── CTableMap.java │ │ │ │ ├── Converter.java │ │ │ │ ├── CudaSupportFunctions.java │ │ │ │ ├── DnnParameters.java │ │ │ │ ├── DoublePrecisionCudaSupportFunctions.java │ │ │ │ ├── IJV.java │ │ │ │ ├── LibCommonsMath.java │ │ │ │ ├── LibMatrixAgg.java │ │ │ │ ├── LibMatrixAggUnarySpecialization.java │ │ │ │ ├── LibMatrixAppend.java │ │ │ │ ├── LibMatrixBincell.java │ │ │ │ ├── LibMatrixCUDA.java │ │ │ │ ├── LibMatrixCountDistinct.java │ │ │ │ ├── LibMatrixCuDNN.java │ │ │ │ ├── LibMatrixCuDNNConvolutionAlgorithm.java │ │ │ │ ├── LibMatrixCuDNNInputRowFetcher.java │ │ │ │ ├── LibMatrixCuDNNPoolingDescriptors.java │ │ │ │ ├── LibMatrixCuDNNRnnAlgorithm.java │ │ │ │ ├── LibMatrixCuMatMult.java │ │ │ │ ├── LibMatrixDNN.java │ │ │ │ ├── LibMatrixDNNConv2d.java │ │ │ │ ├── LibMatrixDNNHelper.java │ │ │ │ ├── LibMatrixDNNIm2Col.java │ │ │ │ ├── LibMatrixDNNLSTM.java │ │ │ │ ├── LibMatrixDNNPooling.java │ │ │ │ ├── LibMatrixDNNRelu.java │ │ │ │ ├── LibMatrixDNNRotate180.java │ │ │ │ ├── LibMatrixDatagen.java │ │ │ │ ├── LibMatrixDenseToSparse.java │ │ │ │ ├── LibMatrixEquals.java │ │ │ │ ├── LibMatrixFourier.java │ │ │ │ ├── LibMatrixMult.java │ │ │ │ ├── LibMatrixNative.java │ │ │ │ ├── LibMatrixOuterAgg.java │ │ │ │ ├── LibMatrixReorg.java │ │ │ │ ├── LibMatrixReplace.java │ │ │ │ ├── LibMatrixSTFT.java │ │ │ │ ├── LibMatrixSketch.java │ │ │ │ ├── LibMatrixSparseToDense.java │ │ │ │ ├── LibMatrixTercell.java │ │ │ │ ├── MatrixBlock.java │ │ │ │ ├── MatrixBlockDataInput.java │ │ │ │ ├── MatrixBlockDataOutput.java │ │ │ │ ├── MatrixCell.java │ │ │ │ ├── MatrixIndexes.java │ │ │ │ ├── MatrixValue.java │ │ │ │ ├── OperationsOnMatrixValues.java │ │ │ │ ├── Pair.java │ │ │ │ ├── RandomMatrixGenerator.java │ │ │ │ ├── SinglePrecisionCudaSupportFunctions.java │ │ │ │ ├── TripleIndexes.java │ │ │ │ ├── WeightedCell.java │ │ │ │ └── sketch │ │ │ │ │ ├── CountDistinctSketch.java │ │ │ │ │ ├── MatrixSketch.java │ │ │ │ │ ├── MatrixSketchFactory.java │ │ │ │ │ ├── countdistinct │ │ │ │ │ ├── BitMapValueCombiner.java │ │ │ │ │ └── CountDistinctFunctionSketch.java │ │ │ │ │ └── countdistinctapprox │ │ │ │ │ ├── KMVSketch.java │ │ │ │ │ └── SmallestPriorityQueue.java │ │ │ └── operators │ │ │ │ ├── AggregateBinaryOperator.java │ │ │ │ ├── AggregateOperator.java │ │ │ │ ├── AggregateTernaryOperator.java │ │ │ │ ├── AggregateUnaryOperator.java │ │ │ │ ├── BinaryOperator.java │ │ │ │ ├── CMOperator.java │ │ │ │ ├── COVOperator.java │ │ │ │ ├── CountDistinctOperator.java │ │ │ │ ├── CountDistinctOperatorTypes.java │ │ │ │ ├── LeftScalarOperator.java │ │ │ │ ├── MultiThreadedOperator.java │ │ │ │ ├── Operator.java │ │ │ │ ├── QuaternaryOperator.java │ │ │ │ ├── ReorgOperator.java │ │ │ │ ├── RightScalarOperator.java │ │ │ │ ├── ScalarOperator.java │ │ │ │ ├── SimpleOperator.java │ │ │ │ ├── TernaryOperator.java │ │ │ │ ├── UnaryOperator.java │ │ │ │ └── UnarySketchOperator.java │ │ ├── meta │ │ │ ├── DataCharacteristics.java │ │ │ ├── MatrixCharacteristics.java │ │ │ ├── MetaData.java │ │ │ ├── MetaDataAll.java │ │ │ ├── MetaDataFormat.java │ │ │ ├── MetaDataUtils.java │ │ │ └── TensorCharacteristics.java │ │ ├── transform │ │ │ ├── TfUtils.java │ │ │ ├── decode │ │ │ │ ├── Decoder.java │ │ │ │ ├── DecoderBin.java │ │ │ │ ├── DecoderComposite.java │ │ │ │ ├── DecoderDummycode.java │ │ │ │ ├── DecoderFactory.java │ │ │ │ ├── DecoderPassThrough.java │ │ │ │ └── DecoderRecode.java │ │ │ ├── encode │ │ │ │ ├── ColumnEncoder.java │ │ │ │ ├── ColumnEncoderBagOfWords.java │ │ │ │ ├── ColumnEncoderBin.java │ │ │ │ ├── ColumnEncoderComposite.java │ │ │ │ ├── ColumnEncoderDummycode.java │ │ │ │ ├── ColumnEncoderFeatureHash.java │ │ │ │ ├── ColumnEncoderPassThrough.java │ │ │ │ ├── ColumnEncoderRecode.java │ │ │ │ ├── ColumnEncoderUDF.java │ │ │ │ ├── ColumnEncoderWordEmbedding.java │ │ │ │ ├── CompressedEncode.java │ │ │ │ ├── Encoder.java │ │ │ │ ├── EncoderFactory.java │ │ │ │ ├── EncoderMVImpute.java │ │ │ │ ├── EncoderOmit.java │ │ │ │ ├── LegacyEncoder.java │ │ │ │ └── MultiColumnEncoder.java │ │ │ ├── meta │ │ │ │ ├── TfMetaUtils.java │ │ │ │ └── TfOffsetMap.java │ │ │ └── tokenize │ │ │ │ ├── DocumentRepresentation.java │ │ │ │ ├── Token.java │ │ │ │ ├── Tokenizer.java │ │ │ │ ├── TokenizerFactory.java │ │ │ │ ├── applier │ │ │ │ ├── TokenizerApplier.java │ │ │ │ ├── TokenizerApplierCount.java │ │ │ │ ├── TokenizerApplierHash.java │ │ │ │ └── TokenizerApplierPosition.java │ │ │ │ └── builder │ │ │ │ ├── TokenizerBuilder.java │ │ │ │ ├── TokenizerBuilderNgram.java │ │ │ │ └── TokenizerBuilderWhitespaceSplit.java │ │ └── util │ │ │ ├── AutoDiff.java │ │ │ ├── ByteBufferDataInput.java │ │ │ ├── CollectionUtils.java │ │ │ ├── CommonThreadPool.java │ │ │ ├── CounterBasedPRNGenerator.java │ │ │ ├── DMVUtils.java │ │ │ ├── DataConverter.java │ │ │ ├── DependencyTask.java │ │ │ ├── DependencyThreadPool.java │ │ │ ├── DependencyWrapperTask.java │ │ │ ├── DnnUtils.java │ │ │ ├── DoubleBufferingOutputStream.java │ │ │ ├── EMAUtils.java │ │ │ ├── FastBufferedDataInputStream.java │ │ │ ├── FastBufferedDataOutputStream.java │ │ │ ├── FastStringTokenizer.java │ │ │ ├── HDFSTool.java │ │ │ ├── IPRNGenerator.java │ │ │ ├── IndexRange.java │ │ │ ├── InputStreamInputFormat.java │ │ │ ├── LocalFileUtils.java │ │ │ ├── LongLongDoubleHashMap.java │ │ │ ├── MemoryMonitor.java │ │ │ ├── NormalPRNGenerator.java │ │ │ ├── OOCJoin.java │ │ │ ├── PRNGenerator.java │ │ │ ├── PartitionFileManager.java │ │ │ ├── PhiloxNormalCBPRNGenerator.java │ │ │ ├── PhiloxUniformCBPRNGenerator.java │ │ │ ├── PoissonPRNGenerator.java │ │ │ ├── PorterStemmer.java │ │ │ ├── ProgramConverter.java │ │ │ ├── Py4jConverterUtils.java │ │ │ ├── RandNPair.java │ │ │ ├── SortUtils.java │ │ │ ├── UniformPRNGenerator.java │ │ │ ├── UnixPipeUtils.java │ │ │ └── UtilFunctions.java │ │ └── utils │ │ ├── DMLCompressionStatistics.java │ │ ├── DataAugmentation.java │ │ ├── DoubleParser.java │ │ ├── EnvironmentHelper.java │ │ ├── Explain.java │ │ ├── GPUStatistics.java │ │ ├── Hash.java │ │ ├── InstallDependencyForIntegrationTests.java │ │ ├── JSONHelper.java │ │ ├── MLContextProxy.java │ │ ├── MemoryEstimates.java │ │ ├── NativeHelper.java │ │ ├── ParameterBuilder.java │ │ ├── SettingsChecker.java │ │ ├── Statistics.java │ │ └── stats │ │ ├── CodegenStatistics.java │ │ ├── FederatedCompressionStatistics.java │ │ ├── InfrastructureAnalyzer.java │ │ ├── NGramBuilder.java │ │ ├── NativeStatistics.java │ │ ├── ParForStatistics.java │ │ ├── ParamServStatistics.java │ │ ├── RecompileStatistics.java │ │ ├── SparkStatistics.java │ │ ├── Timing.java │ │ └── TransformStatistics.java ├── javadoc │ └── overview.html ├── python │ ├── .gitignore │ ├── MANIFEST.in │ ├── README.md │ ├── conf │ │ └── log4j.properties │ ├── create_python_dist.py │ ├── docs │ │ ├── Makefile │ │ ├── README.md │ │ ├── make.bat │ │ ├── requires-docs.txt │ │ └── source │ │ │ ├── api │ │ │ ├── context │ │ │ │ └── systemds_context.rst │ │ │ ├── operator │ │ │ │ ├── algorithms.rst │ │ │ │ ├── algorithms │ │ │ │ │ ├── WoE.rst │ │ │ │ │ ├── WoEApply.rst │ │ │ │ │ ├── abstain.rst │ │ │ │ │ ├── adasyn.rst │ │ │ │ │ ├── als.rst │ │ │ │ │ ├── alsCG.rst │ │ │ │ │ ├── alsDS.rst │ │ │ │ │ ├── alsPredict.rst │ │ │ │ │ ├── alsTopkPredict.rst │ │ │ │ │ ├── ampute.rst │ │ │ │ │ ├── apply_pipeline.rst │ │ │ │ │ ├── arima.rst │ │ │ │ │ ├── auc.rst │ │ │ │ │ ├── autoencoder_2layer.rst │ │ │ │ │ ├── bandit.rst │ │ │ │ │ ├── bivar.rst │ │ │ │ │ ├── components.rst │ │ │ │ │ ├── confusionMatrix.rst │ │ │ │ │ ├── cooccurrenceMatrix.rst │ │ │ │ │ ├── cor.rst │ │ │ │ │ ├── correctTypos.rst │ │ │ │ │ ├── correctTyposApply.rst │ │ │ │ │ ├── cox.rst │ │ │ │ │ ├── cspline.rst │ │ │ │ │ ├── csplineCG.rst │ │ │ │ │ ├── csplineDS.rst │ │ │ │ │ ├── cvlm.rst │ │ │ │ │ ├── dbscan.rst │ │ │ │ │ ├── dbscanApply.rst │ │ │ │ │ ├── decisionTree.rst │ │ │ │ │ ├── decisionTreePredict.rst │ │ │ │ │ ├── dedup.rst │ │ │ │ │ ├── deepWalk.rst │ │ │ │ │ ├── denialConstraints.rst │ │ │ │ │ ├── differenceStatistics.rst │ │ │ │ │ ├── discoverFD.rst │ │ │ │ │ ├── dist.rst │ │ │ │ │ ├── dmv.rst │ │ │ │ │ ├── ema.rst │ │ │ │ │ ├── executePipeline.rst │ │ │ │ │ ├── f1Score.rst │ │ │ │ │ ├── fdr.rst │ │ │ │ │ ├── ffPredict.rst │ │ │ │ │ ├── ffTrain.rst │ │ │ │ │ ├── fit_pipeline.rst │ │ │ │ │ ├── fixInvalidLengths.rst │ │ │ │ │ ├── fixInvalidLengthsApply.rst │ │ │ │ │ ├── flattenQuantile.rst │ │ │ │ │ ├── frameSort.rst │ │ │ │ │ ├── frequencyEncode.rst │ │ │ │ │ ├── frequencyEncodeApply.rst │ │ │ │ │ ├── garch.rst │ │ │ │ │ ├── gaussianClassifier.rst │ │ │ │ │ ├── getAccuracy.rst │ │ │ │ │ ├── glm.rst │ │ │ │ │ ├── glmPredict.rst │ │ │ │ │ ├── glove.rst │ │ │ │ │ ├── gmm.rst │ │ │ │ │ ├── gmmPredict.rst │ │ │ │ │ ├── gnmf.rst │ │ │ │ │ ├── gridSearch.rst │ │ │ │ │ ├── hospitalResidencyMatch.rst │ │ │ │ │ ├── hyperband.rst │ │ │ │ │ ├── img_brightness.rst │ │ │ │ │ ├── img_brightness_linearized.rst │ │ │ │ │ ├── img_crop.rst │ │ │ │ │ ├── img_crop_linearized.rst │ │ │ │ │ ├── img_cutout.rst │ │ │ │ │ ├── img_cutout_linearized.rst │ │ │ │ │ ├── img_invert.rst │ │ │ │ │ ├── img_invert_linearized.rst │ │ │ │ │ ├── img_mirror.rst │ │ │ │ │ ├── img_mirror_linearized.rst │ │ │ │ │ ├── img_posterize.rst │ │ │ │ │ ├── img_posterize_linearized.rst │ │ │ │ │ ├── img_rotate.rst │ │ │ │ │ ├── img_rotate_linearized.rst │ │ │ │ │ ├── img_sample_pairing.rst │ │ │ │ │ ├── img_sample_pairing_linearized.rst │ │ │ │ │ ├── img_shear.rst │ │ │ │ │ ├── img_shear_linearized.rst │ │ │ │ │ ├── img_transform.rst │ │ │ │ │ ├── img_transform_linearized.rst │ │ │ │ │ ├── img_translate.rst │ │ │ │ │ ├── img_translate_linearized.rst │ │ │ │ │ ├── impurityMeasures.rst │ │ │ │ │ ├── imputeByFD.rst │ │ │ │ │ ├── imputeByFDApply.rst │ │ │ │ │ ├── imputeByKNN.rst │ │ │ │ │ ├── imputeByMean.rst │ │ │ │ │ ├── imputeByMeanApply.rst │ │ │ │ │ ├── imputeByMedian.rst │ │ │ │ │ ├── imputeByMedianApply.rst │ │ │ │ │ ├── imputeByMode.rst │ │ │ │ │ ├── imputeByModeApply.rst │ │ │ │ │ ├── incSliceLine.rst │ │ │ │ │ ├── intersect.rst │ │ │ │ │ ├── km.rst │ │ │ │ │ ├── kmeans.rst │ │ │ │ │ ├── kmeansPredict.rst │ │ │ │ │ ├── knn.rst │ │ │ │ │ ├── knnGraph.rst │ │ │ │ │ ├── knnbf.rst │ │ │ │ │ ├── l2svm.rst │ │ │ │ │ ├── l2svmPredict.rst │ │ │ │ │ ├── lasso.rst │ │ │ │ │ ├── lenetPredict.rst │ │ │ │ │ ├── lenetTrain.rst │ │ │ │ │ ├── lm.rst │ │ │ │ │ ├── lmCG.rst │ │ │ │ │ ├── lmDS.rst │ │ │ │ │ ├── lmPredict.rst │ │ │ │ │ ├── lmPredictStats.rst │ │ │ │ │ ├── logSumExp.rst │ │ │ │ │ ├── mae.rst │ │ │ │ │ ├── mape.rst │ │ │ │ │ ├── matrixProfile.rst │ │ │ │ │ ├── mcc.rst │ │ │ │ │ ├── mdedup.rst │ │ │ │ │ ├── mice.rst │ │ │ │ │ ├── miceApply.rst │ │ │ │ │ ├── mse.rst │ │ │ │ │ ├── msmape.rst │ │ │ │ │ ├── msvm.rst │ │ │ │ │ ├── msvmPredict.rst │ │ │ │ │ ├── multiLogReg.rst │ │ │ │ │ ├── multiLogRegPredict.rst │ │ │ │ │ ├── na_locf.rst │ │ │ │ │ ├── naiveBayes.rst │ │ │ │ │ ├── naiveBayesPredict.rst │ │ │ │ │ ├── normalize.rst │ │ │ │ │ ├── normalizeApply.rst │ │ │ │ │ ├── nrmse.rst │ │ │ │ │ ├── outlier.rst │ │ │ │ │ ├── outlierByArima.rst │ │ │ │ │ ├── outlierByIQR.rst │ │ │ │ │ ├── outlierByIQRApply.rst │ │ │ │ │ ├── outlierBySd.rst │ │ │ │ │ ├── outlierBySdApply.rst │ │ │ │ │ ├── pageRank.rst │ │ │ │ │ ├── pca.rst │ │ │ │ │ ├── pcaInverse.rst │ │ │ │ │ ├── pcaTransform.rst │ │ │ │ │ ├── pnmf.rst │ │ │ │ │ ├── ppca.rst │ │ │ │ │ ├── psnr.rst │ │ │ │ │ ├── quantizeByCluster.rst │ │ │ │ │ ├── raGroupby.rst │ │ │ │ │ ├── raJoin.rst │ │ │ │ │ ├── raSelection.rst │ │ │ │ │ ├── randomForest.rst │ │ │ │ │ ├── randomForestPredict.rst │ │ │ │ │ ├── rmse.rst │ │ │ │ │ ├── scale.rst │ │ │ │ │ ├── scaleApply.rst │ │ │ │ │ ├── scaleMinMax.rst │ │ │ │ │ ├── selectByVarThresh.rst │ │ │ │ │ ├── ses.rst │ │ │ │ │ ├── setdiff.rst │ │ │ │ │ ├── shapExplainer.rst │ │ │ │ │ ├── sherlock.rst │ │ │ │ │ ├── sherlockPredict.rst │ │ │ │ │ ├── shortestPath.rst │ │ │ │ │ ├── sigmoid.rst │ │ │ │ │ ├── skewness.rst │ │ │ │ │ ├── sliceLine.rst │ │ │ │ │ ├── sliceLineDebug.rst │ │ │ │ │ ├── sliceLineExtract.rst │ │ │ │ │ ├── slicefinder.rst │ │ │ │ │ ├── smape.rst │ │ │ │ │ ├── smote.rst │ │ │ │ │ ├── softmax.rst │ │ │ │ │ ├── split.rst │ │ │ │ │ ├── splitBalanced.rst │ │ │ │ │ ├── sqrtMatrix.rst │ │ │ │ │ ├── stableMarriage.rst │ │ │ │ │ ├── statsNA.rst │ │ │ │ │ ├── steplm.rst │ │ │ │ │ ├── stratstats.rst │ │ │ │ │ ├── symmetricDifference.rst │ │ │ │ │ ├── tSNE.rst │ │ │ │ │ ├── toOneHot.rst │ │ │ │ │ ├── tomeklink.rst │ │ │ │ │ ├── topk_cleaning.rst │ │ │ │ │ ├── underSampling.rst │ │ │ │ │ ├── union.rst │ │ │ │ │ ├── univar.rst │ │ │ │ │ ├── vectorToCsv.rst │ │ │ │ │ ├── wer.rst │ │ │ │ │ ├── winsorize.rst │ │ │ │ │ ├── winsorizeApply.rst │ │ │ │ │ ├── xdummy1.rst │ │ │ │ │ ├── xdummy2.rst │ │ │ │ │ ├── xgboost.rst │ │ │ │ │ ├── xgboostPredictClassification.rst │ │ │ │ │ └── xgboostPredictRegression.rst │ │ │ │ ├── node │ │ │ │ │ ├── frame.rst │ │ │ │ │ ├── list.rst │ │ │ │ │ ├── matrix.rst │ │ │ │ │ ├── scalar.rst │ │ │ │ │ └── source.rst │ │ │ │ └── operation_node.rst │ │ │ ├── script_building │ │ │ │ ├── dag.rst │ │ │ │ └── script.rst │ │ │ └── utils │ │ │ │ ├── converters.rst │ │ │ │ └── helpers.rst │ │ │ ├── assets │ │ │ └── sample_graph.png │ │ │ ├── code │ │ │ ├── getting_started │ │ │ │ └── simpleExamples │ │ │ │ │ ├── l2svm.py │ │ │ │ │ ├── l2svm_internal.py │ │ │ │ │ ├── multiply.py │ │ │ │ │ └── multiplyMatrix.py │ │ │ └── guide │ │ │ │ ├── algorithms │ │ │ │ └── FullScript.py │ │ │ │ ├── end_to_end │ │ │ │ ├── part1.py │ │ │ │ └── part2.py │ │ │ │ └── federated │ │ │ │ ├── federatedTutorial_part1.py │ │ │ │ ├── federatedTutorial_part2.py │ │ │ │ └── federatedTutorial_part3.py │ │ │ ├── conf.py │ │ │ ├── getting_started │ │ │ ├── install.rst │ │ │ └── simple_examples.rst │ │ │ ├── guide │ │ │ ├── algorithms_basics.rst │ │ │ ├── federated.rst │ │ │ └── python_end_to_end_tut.rst │ │ │ └── index.rst │ ├── generator │ │ ├── __init__.py │ │ ├── dml_parser.py │ │ ├── generator.py │ │ └── resources │ │ │ ├── template_python_script_imports │ │ │ ├── template_python_script_license │ │ │ ├── template_python_script_rst_license │ │ │ └── type_mapping.json │ ├── pre_setup.py │ ├── setup.py │ ├── systemds │ │ ├── __init__.py │ │ ├── context │ │ │ ├── __init__.py │ │ │ └── systemds_context.py │ │ ├── examples │ │ │ ├── __init__.py │ │ │ └── tutorials │ │ │ │ ├── __init__.py │ │ │ │ ├── adult.py │ │ │ │ └── mnist.py │ │ ├── operator │ │ │ ├── __init__.py │ │ │ ├── algorithm │ │ │ │ ├── __init__.py │ │ │ │ └── builtin │ │ │ │ │ ├── WoE.py │ │ │ │ │ ├── WoEApply.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── abstain.py │ │ │ │ │ ├── adasyn.py │ │ │ │ │ ├── als.py │ │ │ │ │ ├── alsCG.py │ │ │ │ │ ├── alsDS.py │ │ │ │ │ ├── alsPredict.py │ │ │ │ │ ├── alsTopkPredict.py │ │ │ │ │ ├── ampute.py │ │ │ │ │ ├── applyAndEvaluate.py │ │ │ │ │ ├── apply_pipeline.py │ │ │ │ │ ├── arima.py │ │ │ │ │ ├── auc.py │ │ │ │ │ ├── autoencoder_2layer.py │ │ │ │ │ ├── bandit.py │ │ │ │ │ ├── bivar.py │ │ │ │ │ ├── components.py │ │ │ │ │ ├── confusionMatrix.py │ │ │ │ │ ├── cooccurrenceMatrix.py │ │ │ │ │ ├── cor.py │ │ │ │ │ ├── correctTypos.py │ │ │ │ │ ├── correctTyposApply.py │ │ │ │ │ ├── cov.py │ │ │ │ │ ├── cox.py │ │ │ │ │ ├── cspline.py │ │ │ │ │ ├── csplineCG.py │ │ │ │ │ ├── csplineDS.py │ │ │ │ │ ├── cvlm.py │ │ │ │ │ ├── dbscan.py │ │ │ │ │ ├── dbscanApply.py │ │ │ │ │ ├── decisionTree.py │ │ │ │ │ ├── decisionTreePredict.py │ │ │ │ │ ├── dedup.py │ │ │ │ │ ├── deepWalk.py │ │ │ │ │ ├── denialConstraints.py │ │ │ │ │ ├── differenceStatistics.py │ │ │ │ │ ├── discoverFD.py │ │ │ │ │ ├── dist.py │ │ │ │ │ ├── dmv.py │ │ │ │ │ ├── ema.py │ │ │ │ │ ├── executePipeline.py │ │ │ │ │ ├── f1Score.py │ │ │ │ │ ├── fdr.py │ │ │ │ │ ├── ffPredict.py │ │ │ │ │ ├── ffTrain.py │ │ │ │ │ ├── fit_pipeline.py │ │ │ │ │ ├── fixInvalidLengths.py │ │ │ │ │ ├── fixInvalidLengthsApply.py │ │ │ │ │ ├── flattenQuantile.py │ │ │ │ │ ├── frameSort.py │ │ │ │ │ ├── frequencyEncode.py │ │ │ │ │ ├── frequencyEncodeApply.py │ │ │ │ │ ├── garch.py │ │ │ │ │ ├── gaussianClassifier.py │ │ │ │ │ ├── getAccuracy.py │ │ │ │ │ ├── glm.py │ │ │ │ │ ├── glmPredict.py │ │ │ │ │ ├── glove.py │ │ │ │ │ ├── gmm.py │ │ │ │ │ ├── gmmPredict.py │ │ │ │ │ ├── gnmf.py │ │ │ │ │ ├── gridSearch.py │ │ │ │ │ ├── hospitalResidencyMatch.py │ │ │ │ │ ├── hyperband.py │ │ │ │ │ ├── img_brightness.py │ │ │ │ │ ├── img_brightness_linearized.py │ │ │ │ │ ├── img_crop.py │ │ │ │ │ ├── img_crop_linearized.py │ │ │ │ │ ├── img_cutout.py │ │ │ │ │ ├── img_cutout_linearized.py │ │ │ │ │ ├── img_invert.py │ │ │ │ │ ├── img_invert_linearized.py │ │ │ │ │ ├── img_mirror.py │ │ │ │ │ ├── img_mirror_linearized.py │ │ │ │ │ ├── img_posterize.py │ │ │ │ │ ├── img_posterize_linearized.py │ │ │ │ │ ├── img_rotate.py │ │ │ │ │ ├── img_rotate_linearized.py │ │ │ │ │ ├── img_sample_pairing.py │ │ │ │ │ ├── img_sample_pairing_linearized.py │ │ │ │ │ ├── img_shear.py │ │ │ │ │ ├── img_shear_linearized.py │ │ │ │ │ ├── img_transform.py │ │ │ │ │ ├── img_transform_linearized.py │ │ │ │ │ ├── img_translate.py │ │ │ │ │ ├── img_translate_linearized.py │ │ │ │ │ ├── impurityMeasures.py │ │ │ │ │ ├── imputeByFD.py │ │ │ │ │ ├── imputeByFDApply.py │ │ │ │ │ ├── imputeByKNN.py │ │ │ │ │ ├── imputeByMean.py │ │ │ │ │ ├── imputeByMeanApply.py │ │ │ │ │ ├── imputeByMedian.py │ │ │ │ │ ├── imputeByMedianApply.py │ │ │ │ │ ├── imputeByMode.py │ │ │ │ │ ├── imputeByModeApply.py │ │ │ │ │ ├── incSliceLine.py │ │ │ │ │ ├── intersect.py │ │ │ │ │ ├── km.py │ │ │ │ │ ├── kmeans.py │ │ │ │ │ ├── kmeansPredict.py │ │ │ │ │ ├── knn.py │ │ │ │ │ ├── knnGraph.py │ │ │ │ │ ├── knnbf.py │ │ │ │ │ ├── l2svm.py │ │ │ │ │ ├── l2svmPredict.py │ │ │ │ │ ├── lasso.py │ │ │ │ │ ├── lenetPredict.py │ │ │ │ │ ├── lenetTrain.py │ │ │ │ │ ├── lm.py │ │ │ │ │ ├── lmCG.py │ │ │ │ │ ├── lmDS.py │ │ │ │ │ ├── lmPredict.py │ │ │ │ │ ├── lmPredictStats.py │ │ │ │ │ ├── logSumExp.py │ │ │ │ │ ├── mae.py │ │ │ │ │ ├── mape.py │ │ │ │ │ ├── matrixProfile.py │ │ │ │ │ ├── mcc.py │ │ │ │ │ ├── mdedup.py │ │ │ │ │ ├── mice.py │ │ │ │ │ ├── miceApply.py │ │ │ │ │ ├── mse.py │ │ │ │ │ ├── msmape.py │ │ │ │ │ ├── msvm.py │ │ │ │ │ ├── msvmPredict.py │ │ │ │ │ ├── multiLogReg.py │ │ │ │ │ ├── multiLogRegPredict.py │ │ │ │ │ ├── na_locf.py │ │ │ │ │ ├── naiveBayes.py │ │ │ │ │ ├── naiveBayesPredict.py │ │ │ │ │ ├── normalize.py │ │ │ │ │ ├── normalizeApply.py │ │ │ │ │ ├── nrmse.py │ │ │ │ │ ├── outlier.py │ │ │ │ │ ├── outlierByArima.py │ │ │ │ │ ├── outlierByIQR.py │ │ │ │ │ ├── outlierByIQRApply.py │ │ │ │ │ ├── outlierBySd.py │ │ │ │ │ ├── outlierBySdApply.py │ │ │ │ │ ├── pageRank.py │ │ │ │ │ ├── pca.py │ │ │ │ │ ├── pcaInverse.py │ │ │ │ │ ├── pcaTransform.py │ │ │ │ │ ├── pnmf.py │ │ │ │ │ ├── ppca.py │ │ │ │ │ ├── psnr.py │ │ │ │ │ ├── quantizeByCluster.py │ │ │ │ │ ├── raGroupby.py │ │ │ │ │ ├── raJoin.py │ │ │ │ │ ├── raSelection.py │ │ │ │ │ ├── randomForest.py │ │ │ │ │ ├── randomForestPredict.py │ │ │ │ │ ├── rmse.py │ │ │ │ │ ├── scale.py │ │ │ │ │ ├── scaleApply.py │ │ │ │ │ ├── scaleMinMax.py │ │ │ │ │ ├── selectByVarThresh.py │ │ │ │ │ ├── ses.py │ │ │ │ │ ├── setdiff.py │ │ │ │ │ ├── shapExplainer.py │ │ │ │ │ ├── sherlock.py │ │ │ │ │ ├── sherlockPredict.py │ │ │ │ │ ├── shortestPath.py │ │ │ │ │ ├── sigmoid.py │ │ │ │ │ ├── skewness.py │ │ │ │ │ ├── sliceLine.py │ │ │ │ │ ├── sliceLineDebug.py │ │ │ │ │ ├── sliceLineExtract.py │ │ │ │ │ ├── slicefinder.py │ │ │ │ │ ├── smape.py │ │ │ │ │ ├── smote.py │ │ │ │ │ ├── softmax.py │ │ │ │ │ ├── solve.py │ │ │ │ │ ├── split.py │ │ │ │ │ ├── splitBalanced.py │ │ │ │ │ ├── sqrtMatrix.py │ │ │ │ │ ├── stableMarriage.py │ │ │ │ │ ├── statsNA.py │ │ │ │ │ ├── steplm.py │ │ │ │ │ ├── stratstats.py │ │ │ │ │ ├── symmetricDifference.py │ │ │ │ │ ├── tSNE.py │ │ │ │ │ ├── toOneHot.py │ │ │ │ │ ├── tomeklink.py │ │ │ │ │ ├── topk_cleaning.py │ │ │ │ │ ├── underSampling.py │ │ │ │ │ ├── union.py │ │ │ │ │ ├── univar.py │ │ │ │ │ ├── vectorToCsv.py │ │ │ │ │ ├── wer.py │ │ │ │ │ ├── winsorize.py │ │ │ │ │ ├── winsorizeApply.py │ │ │ │ │ ├── xdummy1.py │ │ │ │ │ ├── xdummy2.py │ │ │ │ │ ├── xgboost.py │ │ │ │ │ ├── xgboostPredictClassification.py │ │ │ │ │ └── xgboostPredictRegression.py │ │ │ ├── nn │ │ │ │ ├── __init__.py │ │ │ │ ├── affine.py │ │ │ │ ├── layer.py │ │ │ │ ├── relu.py │ │ │ │ └── sequential.py │ │ │ ├── nodes │ │ │ │ ├── __init__.py │ │ │ │ ├── combine.py │ │ │ │ ├── frame.py │ │ │ │ ├── list.py │ │ │ │ ├── list_access.py │ │ │ │ ├── matrix.py │ │ │ │ ├── multi_return.py │ │ │ │ ├── scalar.py │ │ │ │ └── source.py │ │ │ └── operation_node.py │ │ ├── project_info.py │ │ ├── script_building │ │ │ ├── __init__.py │ │ │ ├── dag.py │ │ │ └── script.py │ │ ├── scuro │ │ │ ├── __init__.py │ │ │ ├── dataloader │ │ │ │ ├── __init__.py │ │ │ │ ├── audio_loader.py │ │ │ │ ├── base_loader.py │ │ │ │ ├── image_loader.py │ │ │ │ ├── json_loader.py │ │ │ │ ├── text_loader.py │ │ │ │ ├── timeseries_loader.py │ │ │ │ └── video_loader.py │ │ │ ├── drsearch │ │ │ │ ├── __init__.py │ │ │ │ ├── hyperparameter_tuner.py │ │ │ │ ├── multimodal_optimizer.py │ │ │ │ ├── operator_registry.py │ │ │ │ ├── optimization_data.py │ │ │ │ ├── ranking.py │ │ │ │ ├── representation_dag.py │ │ │ │ ├── representation_dag_visualizer.py │ │ │ │ ├── similarity_measures.py │ │ │ │ ├── task.py │ │ │ │ └── unimodal_optimizer.py │ │ │ ├── main.py │ │ │ ├── modality │ │ │ │ ├── __init__.py │ │ │ │ ├── joined.py │ │ │ │ ├── joined_transformed.py │ │ │ │ ├── modality.py │ │ │ │ ├── transformed.py │ │ │ │ ├── type.py │ │ │ │ └── unimodal_modality.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── discrete_model.py │ │ │ │ └── model.py │ │ │ ├── representations │ │ │ │ ├── __init__.py │ │ │ │ ├── aggregate.py │ │ │ │ ├── aggregated_representation.py │ │ │ │ ├── average.py │ │ │ │ ├── bert.py │ │ │ │ ├── bow.py │ │ │ │ ├── clip.py │ │ │ │ ├── color_histogram.py │ │ │ │ ├── concatenation.py │ │ │ │ ├── context.py │ │ │ │ ├── covarep_audio_features.py │ │ │ │ ├── fusion.py │ │ │ │ ├── glove.py │ │ │ │ ├── hadamard.py │ │ │ │ ├── image_bind.py │ │ │ │ ├── lstm.py │ │ │ │ ├── max.py │ │ │ │ ├── mel_spectrogram.py │ │ │ │ ├── mfcc.py │ │ │ │ ├── multimodal_attention_fusion.py │ │ │ │ ├── optical_flow.py │ │ │ │ ├── representation.py │ │ │ │ ├── representation_dataloader.py │ │ │ │ ├── resnet.py │ │ │ │ ├── spectrogram.py │ │ │ │ ├── sum.py │ │ │ │ ├── swin_video_transformer.py │ │ │ │ ├── tfidf.py │ │ │ │ ├── timeseries_representations.py │ │ │ │ ├── unimodal.py │ │ │ │ ├── utils.py │ │ │ │ ├── vgg.py │ │ │ │ ├── wav2vec.py │ │ │ │ ├── window_aggregation.py │ │ │ │ ├── word2vec.py │ │ │ │ └── x3d.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── converter.py │ │ │ │ ├── identifier.py │ │ │ │ ├── schema_helpers.py │ │ │ │ ├── static_variables.py │ │ │ │ └── torch_dataset.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── consts.py │ │ │ ├── converters.py │ │ │ └── helpers.py │ └── tests │ │ ├── README.md │ │ ├── __init__.py │ │ ├── algorithms │ │ ├── __init__.py │ │ ├── test_cov.py │ │ ├── test_gmm.py │ │ ├── test_gmm_train_predict.py │ │ ├── test_kmeans.py │ │ ├── test_l2svm.py │ │ ├── test_multiLogReg.py │ │ ├── test_pca.py │ │ ├── test_signal.py │ │ └── test_solve.py │ │ ├── auto_tests │ │ ├── test_dist.py │ │ ├── test_img_brightness.py │ │ ├── test_img_brightness_linearized.py │ │ ├── test_img_crop.py │ │ ├── test_img_crop_linearized.py │ │ ├── test_img_cutout.py │ │ ├── test_img_cutout_linearized.py │ │ ├── test_img_invert.py │ │ ├── test_img_invert_linearized.py │ │ ├── test_img_mirror.py │ │ ├── test_img_mirror_linearized_0.py │ │ ├── test_img_mirror_linearized_1.py │ │ ├── test_img_posterize.py │ │ ├── test_img_posterize_linearized.py │ │ ├── test_img_rotate.py │ │ ├── test_img_rotate_linearized.py │ │ ├── test_img_sample_pairing.py │ │ ├── test_img_sample_pairing_linearized.py │ │ ├── test_img_shear.py │ │ ├── test_img_shear_linearized.py │ │ ├── test_img_transform.py │ │ ├── test_img_transform_linearized.py │ │ ├── test_img_translate.py │ │ ├── test_img_translate_linearized.py │ │ ├── test_lm.py │ │ ├── test_normalize.py │ │ ├── test_randomForest.py │ │ ├── test_randomForestPredict.py │ │ └── test_toOneHot.py │ │ ├── basics │ │ ├── __init__.py │ │ ├── test___str__.py │ │ ├── test_context_creation.py │ │ └── test_context_stats.py │ │ ├── docs_test │ │ ├── __init__.py │ │ ├── test_algorithms_basics.py │ │ ├── test_end_to_end_tutorial.py │ │ └── test_simple_example.py │ │ ├── examples │ │ ├── __init__.py │ │ └── tutorials │ │ │ ├── __init__.py │ │ │ ├── neural_net_source.dml │ │ │ ├── preprocess.dml │ │ │ ├── test_adult.py │ │ │ ├── test_adult_neural.py │ │ │ └── test_mnist.py │ │ ├── federated │ │ ├── runFedTest.sh │ │ ├── test_federated_adult_neural.py │ │ ├── test_federated_aggregations.py │ │ ├── test_federated_aggregations_noHeader.py │ │ ├── test_federated_basic.py │ │ ├── test_federated_matrix_mult.py │ │ ├── test_federated_mnist.py │ │ ├── test_federated_read.py │ │ └── test_federated_tutorial.py │ │ ├── frame │ │ ├── __init__.py │ │ ├── test_hyperband.py │ │ ├── test_rIndexing.py │ │ ├── test_r_c_bind.py │ │ ├── test_replace.py │ │ ├── test_slice.py │ │ ├── test_transform_apply.py │ │ ├── test_transform_encode.py │ │ └── test_write_read.py │ │ ├── iotests │ │ ├── __init__.py │ │ ├── test_io_csv.py │ │ └── test_io_pandas_systemds.py │ │ ├── lineage │ │ ├── README.md │ │ ├── __init__.py │ │ ├── test_lineagetrace.py │ │ └── trace1.dml │ │ ├── list │ │ ├── __init__.py │ │ ├── return_list.dml │ │ ├── test_list.py │ │ ├── test_list_readwrite.py │ │ └── test_list_unknown.py │ │ ├── manual_tests │ │ ├── multi_log_reg_adult.py │ │ ├── multi_log_reg_mnist.py │ │ ├── save_log_reg_mnist_sysds.py │ │ └── time │ │ │ ├── for_loop_time_run.dml │ │ │ ├── for_loop_time_run.py │ │ │ ├── run.sh │ │ │ ├── startup_time_run.dml │ │ │ └── startup_time_run.py │ │ ├── matrix │ │ ├── __init__.py │ │ ├── test_aggregations.py │ │ ├── test_arg_min_max.py │ │ ├── test_binary_op.py │ │ ├── test_block_converter.py │ │ ├── test_casting.py │ │ ├── test_ceil.py │ │ ├── test_cholesky.py │ │ ├── test_cumulative.py │ │ ├── test_diag.py │ │ ├── test_eigen.py │ │ ├── test_exp.py │ │ ├── test_fft.py │ │ ├── test_floor.py │ │ ├── test_inv.py │ │ ├── test_is_special.py │ │ ├── test_log.py │ │ ├── test_lu.py │ │ ├── test_order.py │ │ ├── test_print.py │ │ ├── test_qr.py │ │ ├── test_quantile.py │ │ ├── test_rIndexing.py │ │ ├── test_r_c_bind.py │ │ ├── test_rand.py │ │ ├── test_replace.py │ │ ├── test_reverse.py │ │ ├── test_roll.py │ │ ├── test_sign.py │ │ ├── test_slice.py │ │ ├── test_split.py │ │ ├── test_sqrt.py │ │ ├── test_svd.py │ │ ├── test_to_one_hot.py │ │ ├── test_transpose.py │ │ ├── test_triangular.py │ │ ├── test_trigonometric.py │ │ ├── test_unique.py │ │ └── test_write.py │ │ ├── nn │ │ ├── __init__.py │ │ ├── neural_network.py │ │ ├── test_affine.py │ │ ├── test_layer.py │ │ ├── test_neural_network.py │ │ ├── test_relu.py │ │ └── test_sequential.py │ │ ├── python_java_data_transfer │ │ ├── __init__.py │ │ ├── test_dense_numpy_matrix.py │ │ └── test_pandas_frame.py │ │ ├── script │ │ ├── __init__.py │ │ └── test_dml_script.py │ │ ├── scuro │ │ ├── data_generator.py │ │ ├── test_data_loaders.py │ │ ├── test_fusion_orders.py │ │ ├── test_hp_tuner.py │ │ ├── test_multimodal_fusion.py │ │ ├── test_multimodal_join.py │ │ ├── test_operator_registry.py │ │ ├── test_unimodal_optimizer.py │ │ ├── test_unimodal_representations.py │ │ └── test_window_operations.py │ │ ├── source │ │ ├── __init__.py │ │ ├── neural_net_source.dml │ │ ├── source_01.dml │ │ ├── source_02.dml │ │ ├── source_multi_arguments.dml │ │ ├── source_with_default_values.dml │ │ ├── source_with_list_input.dml │ │ ├── source_with_no_return.dml │ │ ├── test_source_01.py │ │ ├── test_source_02.py │ │ ├── test_source_list.py │ │ ├── test_source_multi_arguments.py │ │ ├── test_source_neural_net.py │ │ ├── test_source_no_return.py │ │ ├── test_source_reuse.py │ │ └── test_source_with_default_values.py │ │ └── test_utils.py └── resources │ └── protobuf │ └── Frame.proto └── test ├── config ├── SystemDS-MultiTenant-config.xml ├── SystemDS-config.xml └── hadoop_bin_windows │ └── bin │ ├── .gitignore │ ├── hadoop │ ├── hadoop.cmd │ ├── hadoop.dll │ ├── hadoop.exp │ ├── hadoop.lib │ ├── hadoop.pdb │ ├── hdfs │ ├── hdfs.cmd │ ├── libwinutils.lib │ ├── mapred │ ├── mapred.cmd │ ├── winutils.exe │ ├── winutils.pdb │ ├── yarn │ └── yarn.cmd ├── java └── org │ └── apache │ └── sysds │ ├── performance │ ├── Main.java │ ├── PerfUtil.java │ ├── README.md │ ├── TimingUtils.java │ ├── compression │ │ ├── APerfTest.java │ │ ├── IOBandwidth.java │ │ ├── SchemaTest.java │ │ ├── Serialize.java │ │ ├── StreamCompress.java │ │ └── TransformPerf.java │ ├── frame │ │ └── Transform.java │ ├── generators │ │ ├── Const.java │ │ ├── ConstFrame.java │ │ ├── ConstMatrix.java │ │ ├── FrameFile.java │ │ ├── FrameTransformFile.java │ │ ├── GenMatrices.java │ │ ├── GenPair.java │ │ ├── IGenerate.java │ │ ├── IGeneratePair.java │ │ └── MatrixFile.java │ ├── matrix │ │ ├── MMSparsityPerformance.java │ │ ├── MatrixAggregate.java │ │ ├── MatrixAppend.java │ │ ├── MatrixBinaryCellPerf.java │ │ ├── MatrixMultiplicationPerf.java │ │ ├── MatrixReplacePerf.java │ │ ├── MatrixStorage.java │ │ ├── ReshapePerf.java │ │ └── SparseAppend.java │ ├── micro │ │ ├── FrameCompressedTransform.java │ │ └── InformationLoss.java │ └── simple │ │ ├── DetectTypeArray.java │ │ └── NNZ.java │ └── test │ ├── AutomatedTestBase.java │ ├── LoggingUtils.java │ ├── TestConfiguration.java │ ├── TestUtils.java │ ├── applications │ ├── ApplyTransformTest.java │ ├── ArimaTest.java │ ├── BivariateCategoricalCategoricallTest.java │ ├── BivariateOrdinalOrdinalTest.java │ ├── BivariateScaleCategoricalTest.java │ ├── BivariateScaleScaleTest.java │ ├── CsplineCGTest.java │ ├── CsplineDSTest.java │ ├── EntityResolutionBinaryTest.java │ ├── EntityResolutionBlockingTest.java │ ├── EntityResolutionClusteringTest.java │ ├── EntityResolutionConnectedComponentsTest.java │ ├── GANTest.java │ ├── GLMTest.java │ ├── GNMFTest.java │ ├── HITSTest.java │ ├── ID3Test.java │ ├── L2SVMTest.java │ ├── LinearLogRegTest.java │ ├── LinearRegressionTest.java │ ├── MDABivariateStatsTest.java │ ├── MultiClassSVMTest.java │ ├── NaiveBayesParforTest.java │ ├── NaiveBayesTest.java │ ├── OrderStatisticsTest.java │ ├── PageRankTest.java │ ├── ParForBivariateStatsTest.java │ ├── ParForCVMulticlassSVMTest.java │ ├── ParForCorrelationTest.java │ ├── ParForCorrelationTestLarge.java │ ├── ParForNaiveBayesTest.java │ ├── ParForSampleTest.java │ ├── ScalableDecompositionTest.java │ ├── UnivariateCategoricalTest.java │ ├── UnivariateStatsBase.java │ ├── UnivariateUnweightedScaleDenseTest.java │ ├── UnivariateUnweightedScaleSparseTest.java │ ├── UnivariateWeightedScaleDenseTest.java │ ├── UnivariateWeightedScaleSparseTest.java │ ├── WelchTTest.java │ └── nn │ │ ├── BaseTest.java │ │ ├── FMTests.java │ │ ├── MNISTLeNet.java │ │ ├── NNComponentTest.java │ │ ├── NNGradientTest.java │ │ ├── NNMaxPool2dComponentTest.java │ │ ├── NNTests.java │ │ ├── TestFolder.java │ │ └── transformers │ │ ├── BertLayerTest.java │ │ └── MultiAttentionLayerTest.java │ ├── component │ ├── codegen │ │ ├── CPlanComparisonTest.java │ │ ├── CPlanModIntdivPrimitives.java │ │ ├── CPlanVectorPrimitivesTest.java │ │ └── SparseVectorAllocTest.java │ ├── compress │ │ ├── AbstractCompressedUnaryTests.java │ │ ├── AsyncCompressTest.java │ │ ├── CompressedCustomTests.java │ │ ├── CompressedLoggingTests.java │ │ ├── CompressedMatrixTest.java │ │ ├── CompressedSingleTests.java │ │ ├── CompressedTestBase.java │ │ ├── CompressedVectorTest.java │ │ ├── CompressibleInputGenerator.java │ │ ├── ExtendedMatrixTests.java │ │ ├── InvalidInputTest.java │ │ ├── ParCompressedMatrixTest.java │ │ ├── SingletonLookupHashMapTest.java │ │ ├── TestBase.java │ │ ├── TestConstants.java │ │ ├── bitmap │ │ │ ├── BitMapSortTest.java │ │ │ ├── BitMapSparseTest.java │ │ │ └── BitMapTest.java │ │ ├── colgroup │ │ │ ├── ColGroupBase.java │ │ │ ├── ColGroupDeltaDDCTest.java │ │ │ ├── ColGroupFactoryLoggingTest.java │ │ │ ├── ColGroupFactoryTest.java │ │ │ ├── ColGroupLinearFunctionalBase.java │ │ │ ├── ColGroupLinearFunctionalTest.java │ │ │ ├── ColGroupMorphingPerformanceCompare.java │ │ │ ├── ColGroupNegativeTests.java │ │ │ ├── ColGroupTest.java │ │ │ ├── ColGroupTestColShift.java │ │ │ ├── ColGroupUtilsTest.java │ │ │ ├── CombineColGroups.java │ │ │ ├── CustomColGroupTest.java │ │ │ ├── GenOffsetOLETest.java │ │ │ ├── JolEstimateDDCTest.java │ │ │ ├── JolEstimateDeltaDDCTest.java │ │ │ ├── JolEstimateOLETest.java │ │ │ ├── JolEstimateRLETest.java │ │ │ ├── JolEstimateSDCTest.java │ │ │ ├── JolEstimateTest.java │ │ │ ├── JolEstimateUncompressedTest.java │ │ │ ├── NegativeConstTests.java │ │ │ └── scheme │ │ │ │ ├── ConstSchemeTest.java │ │ │ │ ├── EmptySchemeTest.java │ │ │ │ ├── NegativeSchemeTest.java │ │ │ │ ├── SchemeTestBase.java │ │ │ │ ├── SchemeTestCONST.java │ │ │ │ ├── SchemeTestDDC.java │ │ │ │ ├── SchemeTestSDC.java │ │ │ │ └── UncompressedSchemeTest.java │ │ ├── combine │ │ │ ├── CombineEncodings.java │ │ │ ├── CombineEncodingsUnique.java │ │ │ └── CombineTest.java │ │ ├── cost │ │ │ ├── ACostTest.java │ │ │ ├── ComputeCostTest.java │ │ │ ├── InstructionCounterTest.java │ │ │ └── MemoryCostTest.java │ │ ├── dictionary │ │ │ ├── CombineTest.java │ │ │ ├── CustomDictionaryTest.java │ │ │ ├── DeltaDictionaryTest.java │ │ │ ├── DictionaryTests.java │ │ │ └── PlaceHolderDictTest.java │ │ ├── estim │ │ │ ├── JoinCompressionInfoTest.java │ │ │ ├── SampleEstimatorTest.java │ │ │ ├── encoding │ │ │ │ ├── EncodeNegativeTest.java │ │ │ │ ├── EncodeSampleCustom.java │ │ │ │ ├── EncodeSampleDenseNonUniform.java │ │ │ │ ├── EncodeSampleMultiColTest.java │ │ │ │ ├── EncodeSampleSingleColTest.java │ │ │ │ ├── EncodeSampleTest.java │ │ │ │ ├── EncodeSampleUnbalancedTest.java │ │ │ │ └── EncodeSampleUniformTest.java │ │ │ └── sample │ │ │ │ ├── SampleDistinctNegativeTest.java │ │ │ │ ├── SampleDistinctTest.java │ │ │ │ └── ShlosserEstimatorTest.java │ │ ├── functional │ │ │ ├── LinearRegNegativeTest.java │ │ │ └── LinearRegressionTests.java │ │ ├── indexes │ │ │ ├── CustomIndexTest.java │ │ │ ├── IndexesTest.java │ │ │ └── NegativeIndexTest.java │ │ ├── insertionsort │ │ │ └── TestInsertionSorters.java │ │ ├── io │ │ │ ├── IOCompressionTestUtils.java │ │ │ ├── IOEmpty.java │ │ │ ├── IONegativeTest.java │ │ │ ├── IOSpark.java │ │ │ ├── IOTest.java │ │ │ └── SeparateDictionariesAndIndexes.java │ │ ├── lib │ │ │ ├── CLALibBinaryCellOpCustomTest.java │ │ │ ├── CLALibBinaryCellOpLoggingTest.java │ │ │ ├── CLALibBinaryCellOpNegativeTest.java │ │ │ ├── CLALibBinaryCellOpTest.java │ │ │ ├── CLALibCompAggLoggingTest.java │ │ │ ├── CLALibCompAggTest.java │ │ │ ├── CLALibLLMCustomTest.java │ │ │ ├── CLALibLMMTest.java │ │ │ ├── CLALibReshapeTests.java │ │ │ ├── CLALibSelectionMultCustomTest.java │ │ │ ├── CLALibSelectionMultTest.java │ │ │ ├── CLALibSliceTest.java │ │ │ ├── CLALibTernaryOpTest.java │ │ │ ├── CombineGroupsTest.java │ │ │ └── SeqTableTest.java │ │ ├── mapping │ │ │ ├── CustomMappingTest.java │ │ │ ├── MappingPreAggregateTests.java │ │ │ ├── MappingTestUtil.java │ │ │ ├── MappingTests.java │ │ │ ├── PreAggregateDDC_DDCTest.java │ │ │ ├── PreAggregateDDC_SDCZTest.java │ │ │ ├── PreAggregateSDCZ_DDCTest.java │ │ │ └── PreAggregateSDCZ_SDCZTest.java │ │ ├── offset │ │ │ ├── CustomOffsetTest.java │ │ │ ├── LargeOffsetTest.java │ │ │ ├── NegativeOffsetTest.java │ │ │ ├── OffsetPreAggTests.java │ │ │ ├── OffsetReverseTest.java │ │ │ ├── OffsetSingleTests.java │ │ │ ├── OffsetTestUtil.java │ │ │ ├── OffsetTests.java │ │ │ └── OffsetTestsDefaultConstructor.java │ │ ├── plan │ │ │ ├── CustomEncodePlanTest.java │ │ │ └── EncodePerformanceTest.java │ │ ├── qcompress │ │ │ ├── CompareCompressionTypeTest.java │ │ │ ├── QuantizationFusedCompressionTest.java │ │ │ └── QuantizationFusedForcedCompressionTypesTest.java │ │ ├── readers │ │ │ ├── ReadersTest.java │ │ │ └── ReadersTestCompareReaders.java │ │ ├── util │ │ │ ├── ArrCountMapTest.java │ │ │ ├── ArrayListTest.java │ │ │ ├── CountMapTest.java │ │ │ ├── CountTest.java │ │ │ ├── HashMapLongIntTest.java │ │ │ ├── ListHashMapTest.java │ │ │ ├── hashTest.java │ │ │ └── pow2tests.java │ │ └── workload │ │ │ └── WorkloadTest.java │ ├── convert │ │ └── RDDConverterUtilsExtTest.java │ ├── cp │ │ └── VariableMapTest.java │ ├── estim │ │ ├── OpBindChainTest.java │ │ ├── OpBindTest.java │ │ ├── OpElemWChainTest.java │ │ ├── OpElemWTest.java │ │ ├── OpSingleTest.java │ │ ├── OuterProductTest.java │ │ ├── SelfProductTest.java │ │ ├── SquaredProductChainTest.java │ │ └── SquaredProductTest.java │ ├── federated │ │ ├── FedWorkerBase.java │ │ ├── FedWorkerMatrix.java │ │ ├── FedWorkerMatrixCompress.java │ │ ├── FedWorkerMatrixMultiply.java │ │ ├── FedWorkerMatrixMultiplyWorkload.java │ │ ├── FedWorkerReadMatrix.java │ │ ├── FedWorkerReadMatrixCompress.java │ │ ├── FedWorkerScalar.java │ │ ├── FederatedPlanCostEnumeratorTest.java │ │ ├── FederatedPlanVisualizer.py │ │ ├── FederatedTestUtils.java │ │ └── FederatedUrlParserTest.java │ ├── frame │ │ ├── DataCorruptionTest.java │ │ ├── FrameAppendTest_Old.java │ │ ├── FrameApplySchema.java │ │ ├── FrameApplySchemaLogging.java │ │ ├── FrameCastingTest.java │ │ ├── FrameCopyTest.java │ │ ├── FrameCreationTest.java │ │ ├── FrameCustomTest.java │ │ ├── FrameEvictionTest.java │ │ ├── FrameFromMatrixBlockTest.java │ │ ├── FrameGetSetTest.java │ │ ├── FrameIndexingTest.java │ │ ├── FrameIterators.java │ │ ├── FrameRemoveEmpty.java │ │ ├── FrameSerializationTest.java │ │ ├── FrameTest.java │ │ ├── FrameToStringTest.java │ │ ├── FrameUtilTest.java │ │ ├── MatrixFromFrameTest.java │ │ ├── array │ │ │ ├── ArrayWrapperTest.java │ │ │ ├── ColumnMetadataTests.java │ │ │ ├── CustomArrayTests.java │ │ │ ├── FrameArrayConstantTests.java │ │ │ ├── FrameArrayTests.java │ │ │ ├── HashMapToIntTest.java │ │ │ ├── NegativeArrayTests.java │ │ │ ├── Py4jConverterUtilsTest.java │ │ │ └── RecodeMapTest.java │ │ ├── compress │ │ │ ├── CompressedStatisticsTest.java │ │ │ ├── FrameCompressTest.java │ │ │ ├── FrameCompressTestLogging.java │ │ │ ├── FrameCompressTestUtils.java │ │ │ └── FrameSettingsBuilder.java │ │ ├── iterators │ │ │ └── IteratorTest.java │ │ └── transform │ │ │ ├── TransformCompressedTestLogger.java │ │ │ ├── TransformCompressedTestMultiCol.java │ │ │ ├── TransformCompressedTestSingleCol.java │ │ │ ├── TransformCompressedTestSingleColBinSpecific.java │ │ │ ├── TransformCustomTest.java │ │ │ └── TransformLogger.java │ ├── matrix │ │ ├── CountDistinctTest.java │ │ ├── CumsumprodTest.java │ │ ├── DenseAndSparseTest.java │ │ ├── EigenDecompTest.java │ │ ├── EqualsTest.java │ │ ├── FillMatrixTest.java │ │ ├── FourierTest.java │ │ ├── LibMatrixDatagenTest.java │ │ ├── MatrixAggKernelTest.java │ │ ├── MatrixBlockSerializationTest.java │ │ ├── MatrixMultiplyKernelTest.java │ │ ├── MatrixMultiplyTest.java │ │ ├── MatrixToSparseOrDense.java │ │ ├── ProdTest.java │ │ ├── RandTest.java │ │ ├── STFTTest.java │ │ ├── SeqTableTest.java │ │ ├── SliceTest.java │ │ ├── SparseCSRTest.java │ │ ├── SparseFactory.java │ │ ├── TSMMTest.java │ │ ├── UnaryOpTest.java │ │ ├── binary │ │ │ ├── BinaryOpTest.java │ │ │ ├── BinaryOperationInPlaceTest.java │ │ │ ├── BinaryOperationInPlaceTestParameterized.java │ │ │ └── GetAccessTypeTest.java │ │ └── libMatrixReorg │ │ │ ├── ReshapeTest.java │ │ │ ├── RollTest.java │ │ │ ├── TransposeCSRTest.java │ │ │ ├── TransposeInPlaceBrennerTest.java │ │ │ ├── TransposeInplaceTest.java │ │ │ └── TransposeTwiceTest.java │ ├── misc │ │ ├── CLIOptionsParserTest.java │ │ ├── DMLScriptTest.java │ │ ├── DoubleParserTest.java │ │ ├── IOUtilFunctionsTest.java │ │ ├── MemoryEstimateTest.java │ │ ├── NumPartsFilesTest.java │ │ ├── OpTypeTest.java │ │ ├── OptimizerUtilsTest.java │ │ ├── RewriteUtilsTest.java │ │ ├── ThreadPoolTests.java │ │ ├── TypeTest.java │ │ ├── UtilFunctionsTest.java │ │ ├── UtilHash.java │ │ ├── UtilsTest.java │ │ └── functionobjects │ │ │ ├── AndTest.java │ │ │ ├── LogTest.java │ │ │ ├── Log_NZTest.java │ │ │ ├── NegativeTests.java │ │ │ ├── RightScalarOpTest.java │ │ │ └── ifElseTest.java │ ├── paramserv │ │ ├── RpcObjectTest.java │ │ └── SerializationTest.java │ ├── parfor │ │ ├── ParForDependencyAnalysisTest.java │ │ ├── ParForIDHandling.java │ │ ├── ResultMergeTest.java │ │ └── TaskPartitionerTest.java │ ├── resource │ │ ├── CPCostUtilsTest.java │ │ ├── CloudUtilsTests.java │ │ ├── CostEstimatorTest.java │ │ ├── EnumeratorTests.java │ │ ├── InstructionsCostEstimatorTest.java │ │ ├── RecompilationTest.java │ │ ├── ResourceOptimizerTest.java │ │ └── ResourceTestUtils.java │ ├── sparse │ │ ├── SparseBlockAlignment.java │ │ ├── SparseBlockAppendSort.java │ │ ├── SparseBlockDelete.java │ │ ├── SparseBlockGetFirstIndex.java │ │ ├── SparseBlockGetSet.java │ │ ├── SparseBlockIndexRange.java │ │ ├── SparseBlockIterator.java │ │ ├── SparseBlockMemEstimate.java │ │ ├── SparseBlockMerge.java │ │ ├── SparseBlockScan.java │ │ └── SparseBlockSize.java │ ├── tensor │ │ ├── DenseBlockConstIndexingTest.java │ │ ├── DenseBlockConstructionTest.java │ │ ├── DenseBlockCountNonZeroTest.java │ │ ├── DenseBlockGetSetIndexingTest.java │ │ ├── DenseBlockIncrementTest.java │ │ ├── DenseBlockSetDenseBlockTest.java │ │ ├── DenseBlockSetRowTest.java │ │ ├── TensorConstructionTest.java │ │ ├── TensorGetSetIndexingTest.java │ │ ├── TensorSerializationTest.java │ │ └── TensorUtilTests.java │ └── utils │ │ ├── HopDagValidationTest.java │ │ ├── IOUtilsTest.java │ │ ├── SettingsCheckerTest.java │ │ └── UnixPipeUtilsTest.java │ ├── functions │ ├── aggregate │ │ ├── AggregateInfTest.java │ │ ├── AggregateNaNTest.java │ │ ├── ColStdDevsTest.java │ │ ├── ColSumTest.java │ │ ├── ColSumsSqTest.java │ │ ├── ColVariancesTest.java │ │ ├── ContainsTest.java │ │ ├── FullAggregateTest.java │ │ ├── FullColAggregateTest.java │ │ ├── FullGroupedAggregateMatrixTest.java │ │ ├── FullGroupedAggregateTest.java │ │ ├── FullRowAggregateTest.java │ │ ├── LengthTest.java │ │ ├── MaxTest.java │ │ ├── MinTest.java │ │ ├── NColTest.java │ │ ├── NRowTest.java │ │ ├── ProdTest.java │ │ ├── PushdownSumBinaryTest.java │ │ ├── RowColProdsAggregateTest.java │ │ ├── RowStdDevsTest.java │ │ ├── RowSumTest.java │ │ ├── RowSumsSqTest.java │ │ ├── RowVariancesTest.java │ │ ├── StdDevTest.java │ │ ├── SumSqTest.java │ │ ├── SumTest.java │ │ ├── TensorSumTest.java │ │ ├── TraceTest.java │ │ └── VarianceTest.java │ ├── append │ │ ├── AppendChainTest.java │ │ ├── AppendMatrixTest.java │ │ ├── AppendVectorTest.java │ │ ├── RBindCBindMatrixTest.java │ │ └── StringAppendTest.java │ ├── async │ │ ├── AsyncBroadcastTest.java │ │ ├── CheckpointSharedOpsTest.java │ │ ├── CostBasedOrderTest.java │ │ ├── LineageReuseSparkTest.java │ │ ├── MaxParallelizeOrderTest.java │ │ ├── PrefetchRDDTest.java │ │ └── ReuseAsyncOpTest.java │ ├── binary │ │ ├── matrix │ │ │ ├── BinUaggChainTest.java │ │ │ ├── CentralMomentTest.java │ │ │ ├── CovarianceTest.java │ │ │ ├── DiagMatrixMultiplicationTest.java │ │ │ ├── ElementwiseAdditionMultiplicationTest.java │ │ │ ├── ElementwiseAdditionTest.java │ │ │ ├── ElementwiseBitwLogicalTest.java │ │ │ ├── ElementwiseDivisionTest.java │ │ │ ├── ElementwiseLogicalTest.java │ │ │ ├── ElementwiseModulusTest.java │ │ │ ├── ElementwiseMultiplicationTest.java │ │ │ ├── ElementwiseSubtractionTest.java │ │ │ ├── MapMultChainTest.java │ │ │ ├── MatrixMultiplicationTest.java │ │ │ ├── MatrixVectorTest.java │ │ │ ├── QuantileTest.java │ │ │ ├── ScalarAdditionTest.java │ │ │ ├── ScalarDivisionTest.java │ │ │ ├── ScalarModulusTest.java │ │ │ ├── ScalarMultiplicationTest.java │ │ │ ├── ScalarSubtractionTest.java │ │ │ ├── TransposeMatrixMultiplicationTest.java │ │ │ ├── UDFBackwardsCompatibilityTest.java │ │ │ ├── UaggOuterChainTest.java │ │ │ ├── UltraSparseMRMatrixMultiplicationTest.java │ │ │ └── ZipMMSparkMatrixMultiplicationTest.java │ │ ├── matrix_full_cellwise │ │ │ ├── FullMatrixMatrixCellwiseOperationTest.java │ │ │ ├── FullMatrixVectorColCellwiseOperationTest.java │ │ │ ├── FullMatrixVectorRowCellwiseOperationTest.java │ │ │ ├── FullMinus1MultTest.java │ │ │ ├── FullSortedOuterCompareTest.java │ │ │ ├── FullVectorVectorCellwiseCompareOperationTest.java │ │ │ └── FullVectorVectorCellwiseOperationTest.java │ │ ├── matrix_full_other │ │ │ ├── FullDistributedMatrixMultiplicationTest.java │ │ │ ├── FullIntegerDivisionTest.java │ │ │ ├── FullLogicalMatrixTest.java │ │ │ ├── FullLogicalScalarLeftTest.java │ │ │ ├── FullLogicalScalarRightTest.java │ │ │ ├── FullMatrixMultiplicationTest.java │ │ │ ├── FullMatrixMultiplicationTransposeSelf2Test.java │ │ │ ├── FullMatrixMultiplicationTransposeSelfTest.java │ │ │ ├── FullMatrixMultiplicationUltraSparseTest.java │ │ │ ├── FullMinMaxComparisonTest.java │ │ │ ├── FullPowerTest.java │ │ │ └── MatrixMultShortLhsTest.java │ │ ├── scalar │ │ │ ├── AdditionTest.java │ │ │ ├── AndTest.java │ │ │ ├── DivisionTest.java │ │ │ ├── EqualTest.java │ │ │ ├── FullStringComparisonTest.java │ │ │ ├── GreaterThanOrEqualTest.java │ │ │ ├── GreaterThanTest.java │ │ │ ├── LessThanOrEqualTest.java │ │ │ ├── LessThanTest.java │ │ │ ├── LogarithmTest.java │ │ │ ├── LogicalTest.java │ │ │ ├── ModulusTest.java │ │ │ ├── MultiplicationTest.java │ │ │ ├── OrTest.java │ │ │ ├── PowerTest.java │ │ │ ├── SubtractionTest.java │ │ │ └── XorTest.java │ │ └── tensor │ │ │ ├── ElementwiseAdditionTest.java │ │ │ └── ElementwiseMultiplicationTest.java │ ├── blocks │ │ ├── VariableTest.java │ │ └── WhileTest.java │ ├── builtin │ │ ├── part1 │ │ │ ├── AutoDiffTest.java │ │ │ ├── BuiltinALSPredictTest.java │ │ │ ├── BuiltinALSTest.java │ │ │ ├── BuiltinAdasynRealDataTest.java │ │ │ ├── BuiltinAmputeTest.java │ │ │ ├── BuiltinArimaTest.java │ │ │ ├── BuiltinAucTest.java │ │ │ ├── BuiltinAutoencoder2LayerTest.java │ │ │ ├── BuiltinBayesianOptimisationTest.java │ │ │ ├── BuiltinCVLmTest.java │ │ │ ├── BuiltinCategoricalEncodersTest.java │ │ │ ├── BuiltinComponentsTest.java │ │ │ ├── BuiltinConfusionMatrixTest.java │ │ │ ├── BuiltinCooccurrenceMatrixTest.java │ │ │ ├── BuiltinCorrectTyposTest.java │ │ │ ├── BuiltinCorrelationMatrixTest.java │ │ │ ├── BuiltinCoxTest.java │ │ │ ├── BuiltinCsplineTest.java │ │ │ ├── BuiltinDBSCANTest.java │ │ │ ├── BuiltinDMVTest.java │ │ │ ├── BuiltinDateProcessingTest.java │ │ │ ├── BuiltinDbscanApplyTest.java │ │ │ ├── BuiltinDecisionTreePredictTest.java │ │ │ ├── BuiltinDecisionTreeRealDataTest.java │ │ │ ├── BuiltinDecisionTreeTest.java │ │ │ ├── BuiltinDedupTest.java │ │ │ ├── BuiltinDeepWalkTest.java │ │ │ ├── BuiltinDenialConstraintTest.java │ │ │ ├── BuiltinDifferenceStatistics.java │ │ │ ├── BuiltinDistTest.java │ │ │ ├── BuiltinEMATest.java │ │ │ ├── BuiltinErrorHandlingTest.java │ │ │ ├── BuiltinFDTest.java │ │ │ ├── BuiltinFFNeuralNetworkTest.java │ │ │ ├── BuiltinFactorizationTest.java │ │ │ ├── BuiltinFixInvalidLengths.java │ │ │ ├── BuiltinGLMTest.java │ │ │ ├── BuiltinGMMPredictTest.java │ │ │ ├── BuiltinGMMTest.java │ │ │ ├── BuiltinGarchTest.java │ │ │ ├── BuiltinGaussianClassifierTest.java │ │ │ ├── BuiltinGloVeTest.java │ │ │ ├── BuiltinGridSearchTest.java │ │ │ ├── BuiltinHospitalResidencyMatchTest.java │ │ │ ├── BuiltinHyperbandTest.java │ │ │ ├── BuiltinImageBrightnessTest.java │ │ │ ├── BuiltinImageCropLinTest.java │ │ │ ├── BuiltinImageCropTest.java │ │ │ ├── BuiltinImageCutoutLinTest.java │ │ │ ├── BuiltinImageMirrorLinearizedTest.java │ │ │ ├── BuiltinImageSamplePairingLinearizedTest.java │ │ │ ├── BuiltinImageTranslateLinearizedTest.java │ │ │ ├── BuiltinImpurityMeasuresTest.java │ │ │ ├── BuiltinImputeFDTest.java │ │ │ ├── BuiltinImputeKNNTest.java │ │ │ ├── BuiltinIncSliceLineTest.java │ │ │ ├── BuiltinKNNBFTest.java │ │ │ ├── BuiltinKNNGraphTest.java │ │ │ ├── BuiltinKNNTest.java │ │ │ ├── BuiltinKmTest.java │ │ │ ├── BuiltinKmeansPredictTest.java │ │ │ ├── BuiltinKmeansTest.java │ │ │ ├── BuiltinL2SVMTest.java │ │ │ ├── BuiltinLassoTest.java │ │ │ ├── BuiltinLeNetTest.java │ │ │ └── BuiltinLmPredictTest.java │ │ ├── part2 │ │ │ ├── BuiltinLmTest.java │ │ │ ├── BuiltinLogSumExpTest.java │ │ │ ├── BuiltinMCCTest.java │ │ │ ├── BuiltinMDTest.java │ │ │ ├── BuiltinMatrixProfileTest.java │ │ │ ├── BuiltinMeanImputationTest.java │ │ │ ├── BuiltinMiceTest.java │ │ │ ├── BuiltinMultiLogRegPredictTest.java │ │ │ ├── BuiltinMultiLogRegTest.java │ │ │ ├── BuiltinMulticlassSVMPredictTest.java │ │ │ ├── BuiltinMulticlassSVMTest.java │ │ │ ├── BuiltinNaLocfTest.java │ │ │ ├── BuiltinNaiveBayesPredictTest.java │ │ │ ├── BuiltinNaiveBayesTest.java │ │ │ ├── BuiltinNormalizeTest.java │ │ │ ├── BuiltinOutlierByArima.java │ │ │ ├── BuiltinOutlierByIQRTest.java │ │ │ ├── BuiltinOutlierBySDTest.java │ │ │ ├── BuiltinOutlierTest.java │ │ │ ├── BuiltinPCATest.java │ │ │ ├── BuiltinPPCATest.java │ │ │ ├── BuiltinPorterStemmerTest.java │ │ │ ├── BuiltinQuantizeByClusterTest.java │ │ │ ├── BuiltinRaGroupbyTest.java │ │ │ ├── BuiltinRaJoinTest.java │ │ │ ├── BuiltinRaSelectionTest.java │ │ │ ├── BuiltinRandomForestTest.java │ │ │ ├── BuiltinSESTest.java │ │ │ ├── BuiltinSQRTMatrixTest.java │ │ │ ├── BuiltinSTEPLmTest.java │ │ │ ├── BuiltinScaleTest.java │ │ │ ├── BuiltinShapExplainerTest.java │ │ │ ├── BuiltinSherlockPredictTest.java │ │ │ ├── BuiltinSherlockTest.java │ │ │ ├── BuiltinShortestPathTest.java │ │ │ ├── BuiltinSigmoidTest.java │ │ │ ├── BuiltinSliceLineRealDataTest.java │ │ │ ├── BuiltinSliceLineTest.java │ │ │ ├── BuiltinSmoteTest.java │ │ │ ├── BuiltinSoftmaxTest.java │ │ │ ├── BuiltinSplitBalancedTest.java │ │ │ ├── BuiltinSplitTest.java │ │ │ ├── BuiltinStableMarriageTest.java │ │ │ ├── BuiltinStatsNATest.java │ │ │ ├── BuiltinStratstatsTest.java │ │ │ ├── BuiltinTSNETest.java │ │ │ ├── BuiltinToOneHotTest.java │ │ │ ├── BuiltinTomeklinkTest.java │ │ │ ├── BuiltinUNetExtrapolateTest.java │ │ │ ├── BuiltinUnderSamplingTest.java │ │ │ ├── BuiltinWerTest.java │ │ │ ├── BuiltinWinsorizeTest.java │ │ │ ├── BuiltinXgBoostPredictTest_classification.java │ │ │ ├── BuiltinXgBoostPredictTest_regression.java │ │ │ ├── BuiltinXgBoostTest_classification.java │ │ │ ├── BuiltinXgBoostTest_regression.java │ │ │ └── MultipleBuiltinsTest.java │ │ └── setoperations │ │ │ ├── BuiltinIntersectionTest.java │ │ │ ├── BuiltinSetDiffTest.java │ │ │ ├── BuiltinSymmetricDifferenceTest.java │ │ │ ├── BuiltinUnionTest.java │ │ │ └── SetOperationsTestBase.java │ ├── caching │ │ ├── BufferpoolLeakTest.java │ │ ├── BufferpoolShallowCopies.java │ │ ├── CachingPWriteExportTest.java │ │ ├── InputVariableOverwriteTest.java │ │ ├── KeyBufferPoolComponents.java │ │ ├── PinVariablesTest.java │ │ └── UMMTest.java │ ├── codegen │ │ ├── APICodegenTest.java │ │ ├── CellwiseTmplTest.java │ │ ├── DAGCellwiseTmplTest.java │ │ ├── MiscPatternTest.java │ │ ├── MultiAggTmplTest.java │ │ ├── OuterProdTmplTest.java │ │ ├── RowAggTmplTest.java │ │ ├── RowConv2DOperationsTest.java │ │ ├── RowVectorComparisonTest.java │ │ └── SumProductChainTest.java │ ├── codegenalg │ │ ├── partone │ │ │ ├── AlgorithmAutoEncoder.java │ │ │ ├── AlgorithmKMeans.java │ │ │ ├── AlgorithmL2SVM.java │ │ │ ├── AlgorithmLinregCG.java │ │ │ ├── AlgorithmMDABivar.java │ │ │ ├── AlgorithmMLogreg.java │ │ │ ├── AlgorithmMSVM.java │ │ │ └── AlgorithmPCA.java │ │ └── parttwo │ │ │ ├── AlgorithmARIMA.java │ │ │ ├── AlgorithmDatagen.java │ │ │ ├── AlgorithmGLM.java │ │ │ ├── AlgorithmPNMF.java │ │ │ ├── AlgorithmPageRank.java │ │ │ └── AlgorithmStepwiseRegression.java │ ├── compress │ │ ├── CompressInstruction.java │ │ ├── CompressInstructionRewrite.java │ │ ├── CompressRewriteSpark.java │ │ ├── CompressScale.java │ │ ├── LocalInstruction.java │ │ ├── LocalInstructionWithCompression.java │ │ ├── LocalInstructionWithoutCompression.java │ │ ├── codegen │ │ │ └── SparseSideInputTest.java │ │ ├── configuration │ │ │ ├── CompressBase.java │ │ │ └── CompressForce.java │ │ ├── instructionsSpark │ │ │ ├── CompressedSparkInstructionsTest.java │ │ │ ├── CompressedSparkInstructionsTestDense.java │ │ │ └── CompressedSparkInstructionsTestSparse.java │ │ ├── matrixByBin │ │ │ └── CompressByBinTest.java │ │ ├── reshape │ │ │ └── CompressedReshapeTest.java │ │ ├── table │ │ │ └── CompressedTableOverwriteTest.java │ │ ├── wordembedding │ │ │ └── WordEmbeddingTest.java │ │ └── workload │ │ │ ├── WorkloadAlgorithmTest.java │ │ │ └── WorkloadAnalysisTest.java │ ├── countDistinct │ │ ├── CountDistinctBase.java │ │ ├── CountDistinctCol.java │ │ ├── CountDistinctColAlias.java │ │ ├── CountDistinctColAliasException.java │ │ ├── CountDistinctRow.java │ │ ├── CountDistinctRowAlias.java │ │ ├── CountDistinctRowAliasException.java │ │ ├── CountDistinctRowCol.java │ │ ├── CountDistinctRowColBase.java │ │ ├── CountDistinctRowColParameterized.java │ │ └── CountDistinctRowOrColBase.java │ ├── countDistinctApprox │ │ ├── CountDistinctApproxCol.java │ │ ├── CountDistinctApproxColAlias.java │ │ ├── CountDistinctApproxColAliasException.java │ │ ├── CountDistinctApproxRow.java │ │ ├── CountDistinctApproxRowAlias.java │ │ ├── CountDistinctApproxRowAliasException.java │ │ ├── CountDistinctApproxRowCol.java │ │ └── CountDistinctApproxRowColParameterized.java │ ├── data │ │ ├── misc │ │ │ ├── FullReblockTest.java │ │ │ ├── FullStringInitializeTest.java │ │ │ ├── MatrixMarketFormatTest.java │ │ │ ├── NoRenameTest.java │ │ │ ├── ReadMMTest.java │ │ │ ├── ReblockTest.java │ │ │ ├── TimeTest.java │ │ │ ├── VariableTest.java │ │ │ ├── WriteMMTest.java │ │ │ ├── WriteReadZeroDimsTest.java │ │ │ └── WriteTest.java │ │ ├── rand │ │ │ ├── RandRuntimePlatformBase.java │ │ │ ├── RandRuntimePlatformNormalTest.java │ │ │ ├── RandRuntimePlatformPoissonTest.java │ │ │ ├── RandRuntimePlatformUniformTest.java │ │ │ ├── RandTest1.java │ │ │ ├── RandTest2.java │ │ │ ├── RandTest3.java │ │ │ ├── RandTest4.java │ │ │ ├── RandTest5.java │ │ │ ├── RandVarMinMaxTest.java │ │ │ ├── RandVarSeedTest.java │ │ │ ├── SampleSeedTest.java │ │ │ ├── SampleTest.java │ │ │ └── SequenceTest.java │ │ └── tensor │ │ │ ├── SqlTest.java │ │ │ ├── TensorBinaryBlockParallelTest.java │ │ │ ├── TensorBinaryBlockTest.java │ │ │ ├── TensorConstructionTest.java │ │ │ ├── TensorRandTest.java │ │ │ ├── TensorTextCellParallelTest.java │ │ │ └── TensorTextCellTest.java │ ├── dnn │ │ ├── Conv1DTest.java │ │ ├── Conv2DBackwardDataTest.java │ │ ├── Conv2DBackwardTest.java │ │ ├── Conv2DTest.java │ │ ├── LSTMTest.java │ │ ├── PoolBackwardTest.java │ │ ├── PoolTest.java │ │ └── ReluBackwardTest.java │ ├── einsum │ │ └── EinsumTest.java │ ├── federated │ │ ├── FederatedTestObjectConstructor.java │ │ ├── algorithms │ │ │ ├── FederatedAlsCGTest.java │ │ │ ├── FederatedBivarTest.java │ │ │ ├── FederatedCorTest.java │ │ │ ├── FederatedGLMTest.java │ │ │ ├── FederatedKmeansTest.java │ │ │ ├── FederatedL2SVMTest.java │ │ │ ├── FederatedLmPipeline.java │ │ │ ├── FederatedLogRegTest.java │ │ │ ├── FederatedMSVMTest.java │ │ │ ├── FederatedPCATest.java │ │ │ ├── FederatedPNMFTest.java │ │ │ ├── FederatedUnivarTest.java │ │ │ ├── FederatedVarTest.java │ │ │ └── FederatedYL2SVMTest.java │ │ ├── codegen │ │ │ ├── FederatedCellwiseTmplTest.java │ │ │ ├── FederatedCodegenMultipleFedMOTest.java │ │ │ ├── FederatedMultiAggTmplTest.java │ │ │ ├── FederatedOuterProductTmplTest.java │ │ │ └── FederatedRowwiseTmplTest.java │ │ ├── fedplanning │ │ │ ├── FederatedDynamicPlanningTest.java │ │ │ ├── FederatedKMeansPlanningTest.java │ │ │ ├── FederatedL2SVMPlanningTest.java │ │ │ └── FederatedMultiplyPlanningTest.java │ │ ├── io │ │ │ ├── FederatedCompressionTest.java │ │ │ ├── FederatedReaderCSV.java │ │ │ ├── FederatedReaderTest.java │ │ │ ├── FederatedSSLTest.java │ │ │ ├── FederatedSparsityPropagationTest.java │ │ │ ├── FederatedTimeoutTest.java │ │ │ └── FederatedWriterTest.java │ │ ├── monitoring │ │ │ ├── FederatedBackendPerformanceTest.java │ │ │ ├── FederatedCoordinatorIntegrationCRUDTest.java │ │ │ ├── FederatedMonitoringTestBase.java │ │ │ ├── FederatedWorkerIntegrationCRUDTest.java │ │ │ └── FederatedWorkerStatisticsTest.java │ │ ├── multitenant │ │ │ ├── FederatedLineageTraceReuseTest.java │ │ │ ├── FederatedMultiTenantTest.java │ │ │ ├── FederatedReuseReadTest.java │ │ │ ├── FederatedReuseSlicesTest.java │ │ │ ├── FederatedSerializationReuseTest.java │ │ │ └── MultiTenantTestBase.java │ │ ├── paramserv │ │ │ ├── AvgModelFederatedParamservTest.java │ │ │ ├── EncryptedFederatedParamservTest.java │ │ │ ├── FederatedParamservTest.java │ │ │ ├── NbatchesFederatedParamservTest.java │ │ │ └── ParamServTestUtils.java │ │ ├── primitives │ │ │ ├── part1 │ │ │ │ ├── FederatedBinaryMatrixTest.java │ │ │ │ ├── FederatedBinaryVectorTest.java │ │ │ │ ├── FederatedBroadcastTest.java │ │ │ │ ├── FederatedCastToFrameTest.java │ │ │ │ ├── FederatedCastToMatrixTest.java │ │ │ │ ├── FederatedCentralMomentTest.java │ │ │ │ ├── FederatedColAggregateTest.java │ │ │ │ ├── FederatedConstructionTest.java │ │ │ │ ├── FederatedLeftIndexTest.java │ │ │ │ └── FederatedMisAlignedTest.java │ │ │ ├── part2 │ │ │ │ ├── FederatedMultiplyTest.java │ │ │ │ ├── FederatedNegativeTest.java │ │ │ │ ├── FederatedProdTest.java │ │ │ │ ├── FederatedQuantileTest.java │ │ │ │ ├── FederatedQuantileWeightsTest.java │ │ │ │ ├── FederatedRCBindTest.java │ │ │ │ ├── FederatedRdiagTest.java │ │ │ │ ├── FederatedRemoveEmptyTest.java │ │ │ │ ├── FederatedReplaceTest.java │ │ │ │ ├── FederatedReshapeTest.java │ │ │ │ ├── FederatedRevTest.java │ │ │ │ ├── FederatedRightIndexTest.java │ │ │ │ ├── FederatedRollTest.java │ │ │ │ └── FederatedRowIndexTest.java │ │ │ ├── part3 │ │ │ │ ├── FederatedSplitTest.java │ │ │ │ ├── FederatedStatisticsTest.java │ │ │ │ ├── FederatedSumTest.java │ │ │ │ ├── FederatedTokenizeTest.java │ │ │ │ ├── FederatedTransferLocalDataTest.java │ │ │ │ ├── FederatedTriTest.java │ │ │ │ ├── FederatedWeightedCrossEntropyTest.java │ │ │ │ ├── FederatedWeightedDivMatrixMultTest.java │ │ │ │ ├── FederatedWeightedSigmoidTest.java │ │ │ │ ├── FederatedWeightedSquaredLossTest.java │ │ │ │ └── FederatedWeightedUnaryMatrixMultTest.java │ │ │ ├── part4 │ │ │ │ ├── FederatedLogicalTest.java │ │ │ │ └── FederatedRowAggregateTest.java │ │ │ └── part5 │ │ │ │ ├── FederatedCovarianceTest.java │ │ │ │ ├── FederatedCtableTest.java │ │ │ │ ├── FederatedFrameMapTest.java │ │ │ │ ├── FederatedFullAggregateTest.java │ │ │ │ ├── FederatedFullCumulativeTest.java │ │ │ │ ├── FederatedIfelseTest.java │ │ │ │ ├── FederatedMMChainTest.java │ │ │ │ └── FederatedMatrixScalarOperationsTest.java │ │ └── transform │ │ │ ├── TransformFederatedEncodeApplyTest.java │ │ │ └── TransformFederatedEncodeDecodeTest.java │ ├── fedplanning │ │ ├── FTypeCombTest.java │ │ ├── FederatedCostEstimatorTest.java │ │ ├── FederatedDynamicPlanningTest.java │ │ ├── FederatedKMeansPlanningTest.java │ │ ├── FederatedL2SVMPlanningTest.java │ │ └── FederatedMultiplyPlanningTest.java │ ├── frame │ │ ├── ApplySchemaTest.java │ │ ├── DetectSchemaTest.java │ │ ├── FrameAppendDistTest.java │ │ ├── FrameColumnNamesTest.java │ │ ├── FrameConstructorTest.java │ │ ├── FrameConverterTest.java │ │ ├── FrameDropInvalidLengthTest.java │ │ ├── FrameDropInvalidTypeTest.java │ │ ├── FrameEqualTest.java │ │ ├── FrameFunctionTest.java │ │ ├── FrameIndexingDistTest.java │ │ ├── FrameMapMarginTest.java │ │ ├── FrameMapTest.java │ │ ├── FrameMatrixCastingSliceLineTest.java │ │ ├── FrameMatrixCastingTest.java │ │ ├── FrameMatrixReblockTest.java │ │ ├── FrameMatrixWriteTest.java │ │ ├── FrameMetaReadWriteTest.java │ │ ├── FrameReadWriteTest.java │ │ ├── FrameRemoveEmptyTest.java │ │ ├── FrameReplaceTest.java │ │ ├── FrameScalarCastingIntegratedTest.java │ │ ├── FrameScalarCastingTest.java │ │ ├── FrameSchemaReadTest.java │ │ ├── FrameValueSwapTest.java │ │ ├── ParforFrameIntermediateTest.java │ │ └── TypeOfTest.java │ ├── homomorphicEncryption │ │ └── InOutTest.java │ ├── indexing │ │ ├── IndexRangeBlockAlignmentTest.java │ │ ├── IndexedAdditionAssignmentTest.java │ │ ├── LeftIndexingScalarTest.java │ │ ├── LeftIndexingSparseDenseTest.java │ │ ├── LeftIndexingSparseSparseTest.java │ │ ├── LeftIndexingTest.java │ │ ├── LeftIndexingUpdateInPlaceTest.java │ │ ├── RightIndexingMatrixTest.java │ │ ├── RightIndexingVectorTest.java │ │ ├── RowBatchRightIndexingTest.java │ │ └── UnboundedScalarRightIndexingTest.java │ ├── io │ │ ├── FullDynWriteTest.java │ │ ├── IOTest1.java │ │ ├── IOTest2.java │ │ ├── IOTest3.java │ │ ├── IOTest4.java │ │ ├── IOTest5.java │ │ ├── ReadWriteListTest.java │ │ ├── RenameIssueTest.java │ │ ├── ScalarIOTest.java │ │ ├── SeqParReadTest.java │ │ ├── SeqParReadTest2.java │ │ ├── SeqSizeTest.java │ │ ├── binary │ │ │ ├── BlocksizeTest.java │ │ │ └── SerializeTest.java │ │ ├── cog │ │ │ ├── COGTestBase.java │ │ │ ├── ReadCOGTest.java │ │ │ ├── ReadCOGTest1Tile1BandFloat32PC1ComNoneSquare.java │ │ │ ├── ReadCOGTest1Tile1BandInt32PC1ComNoneSquare.java │ │ │ ├── ReadCOGTestNTiles1BandFloat32PC1ComNoneSquare.java │ │ │ ├── ReadCOGTestNTilesNBandsBytePC1ComNoneSquare.java │ │ │ ├── ReadCOGTestNTilesNBandsUInt16PC1ComNoneRect.java │ │ │ ├── ReadCOGTestNTilesNBandsUInt16PC2ComDeflateRect.java │ │ │ ├── ReadCOGTestNTilesNBandsUInt16PC2ComNoneRect.java │ │ │ └── ReadCOGTestNTilesNBandsUInt16PC2ComNoneRectBIGTIFF.java │ │ ├── compressed │ │ │ ├── CompressedTestBase.java │ │ │ ├── ReadCompressedTest.java │ │ │ └── WriteCompressedTest.java │ │ ├── csv │ │ │ ├── CSVParametersTest.java │ │ │ ├── CSVTestBase.java │ │ │ ├── FormatChangeTest.java │ │ │ ├── FormatChangeTest1.java │ │ │ ├── FormatChangeTest2.java │ │ │ ├── ReadCSVTest.java │ │ │ ├── ReadCSVTest1.java │ │ │ ├── ReadCSVTest2.java │ │ │ ├── ReadCSVTest3.java │ │ │ ├── ReadCSVTest4Nan.java │ │ │ ├── ReadCSVTest5Nan.java │ │ │ ├── ReadCSVTest6Nan.java │ │ │ ├── ReadCSVTest7.java │ │ │ ├── ReadCSVTest8.java │ │ │ ├── ReadFrameCSVTest1.java │ │ │ ├── ReadFrameCSVTest2.java │ │ │ ├── ReadFrameCSVTest3.java │ │ │ └── WriteCSVTest.java │ │ ├── hdf5 │ │ │ ├── ReadHDF5Test.java │ │ │ ├── ReadHDF5Test1.java │ │ │ ├── ReadHDF5Test2.java │ │ │ ├── ReadHDF5Test3.java │ │ │ ├── ReadHDF5TestBase.java │ │ │ ├── WriteHDF5Test.java │ │ │ └── WriteHDF5TestBase.java │ │ ├── json │ │ │ ├── FrameReaderWriterJSONLParallelTest.java │ │ │ └── FrameReaderWriterJSONLTest.java │ │ ├── libsvm │ │ │ ├── LIBSVMConfig.java │ │ │ ├── ReadLIBSVMTest.java │ │ │ ├── ReadLIBSVMTest1.java │ │ │ ├── ReadLIBSVMTest2.java │ │ │ ├── ReadLIBSVMTest3.java │ │ │ ├── ReadLIBSVMTestBase.java │ │ │ ├── WriteLIBSVMTest.java │ │ │ ├── WriteLIBSVMTest1.java │ │ │ ├── WriteLIBSVMTest2.java │ │ │ └── WriteLIBSVMTestBase.java │ │ ├── matrixmarket │ │ │ ├── FormatChangeTest.java │ │ │ └── ReadMMTest.java │ │ ├── parquet │ │ │ └── FrameParquetSchemaTest.java │ │ └── proto │ │ │ └── FrameReaderWriterProtoTest.java │ ├── iogen │ │ ├── FrameGenerateReaderCSVTest.java │ │ ├── FrameGenerateReaderCustomTest.java │ │ ├── FrameGenerateReaderJSONTest.java │ │ ├── FrameGenerateReaderXMLTest.java │ │ ├── GenerateReaderFrameTest.java │ │ ├── GenerateReaderMatrixTest.java │ │ ├── MatrixGenerateReaderLibSVMTest.java │ │ ├── MatrixGenerateReaderMMTest.java │ │ └── Util.java │ ├── jmlc │ │ ├── FrameCastingTest.java │ │ ├── FrameDecodeTest.java │ │ ├── FrameEncodeTest.java │ │ ├── FrameIndexingAppendTest.java │ │ ├── FrameLeftIndexingTest.java │ │ ├── FrameReadMetaTest.java │ │ ├── FrameTransformTest.java │ │ ├── InputToStringTest.java │ │ ├── JMLCClonedPreparedScriptTest.java │ │ ├── JMLCInputOutputTest.java │ │ ├── JMLCParfor2ForCompileTest.java │ │ ├── JMLConnectionTest.java │ │ ├── MulticlassSVMScoreTest.java │ │ ├── NamespaceFunctionTest.java │ │ ├── ResultVariableTest.java │ │ └── ReuseModelVariablesTest.java │ ├── lineage │ │ ├── CacheEvictionTest.java │ │ ├── DedupReuseTest.java │ │ ├── FedFullReuseTest.java │ │ ├── FedUDFReuseTest.java │ │ ├── FullReusePerfTest.java │ │ ├── FullReuseTest.java │ │ ├── FunctionFullReuseTest.java │ │ ├── GPUFullReuseTest.java │ │ ├── GPULineageCacheEvictionTest.java │ │ ├── LineageBase.java │ │ ├── LineageCodegenTest.java │ │ ├── LineageDebuggerTest.java │ │ ├── LineageExploitationBufferPoolTest.java │ │ ├── LineageFedReuseAlg.java │ │ ├── LineageMLContextTest.java │ │ ├── LineageReadTest.java │ │ ├── LineageReuseAlg.java │ │ ├── LineageReuseEvalTest.java │ │ ├── LineageRewriteTest.java │ │ ├── LineageTraceBuiltinTest.java │ │ ├── LineageTraceDedupTest.java │ │ ├── LineageTraceEqualsTest.java │ │ ├── LineageTraceExecSparkTest.java │ │ ├── LineageTraceExecTest.java │ │ ├── LineageTraceFrameTest.java │ │ ├── LineageTraceFunctionTest.java │ │ ├── LineageTraceGPUTest.java │ │ ├── LineageTraceParforTest.java │ │ ├── LineageTraceRandomSparkTest.java │ │ ├── LineageTraceRandomTest.java │ │ ├── LineageTraceSparkTest.java │ │ ├── LineageTraceTest.java │ │ ├── MiscLineageProbingTest.java │ │ ├── PartialReuseTest.java │ │ ├── SBFullReuseTest.java │ │ └── UnmarkLoopDepVarsTest.java │ ├── linearization │ │ ├── DagLinearizationTest.java │ │ └── ILinearizeTest.java │ ├── misc │ │ ├── AdditionAssignmentTest.java │ │ ├── AsBooleanVsAsLogicalTest.java │ │ ├── AssertExpressionTest.java │ │ ├── BooleanExpressionTest.java │ │ ├── ConditionalValidateTest.java │ │ ├── DataTypeCastingTest.java │ │ ├── DataTypeChangeTest.java │ │ ├── ExistsVariableTest.java │ │ ├── FunctionInExpressionTest.java │ │ ├── FunctionInliningTest.java │ │ ├── FunctionNamespaceTest.java │ │ ├── FunctionNotFoundTest.java │ │ ├── FunctionPotpourriTest.java │ │ ├── FunctionReturnTest.java │ │ ├── IPAConstantFoldingScalarVariablePropagationTest.java │ │ ├── IPADeadCodeEliminationTest.java │ │ ├── IPAFunctionInliningTest.java │ │ ├── IPALiteralReplacementTest.java │ │ ├── IPANnzPropagationTest.java │ │ ├── IPAScalarPropagationMulitReturnTest.java │ │ ├── IPAScalarRecursionTest.java │ │ ├── IPAScalarVariablePropagationTest.java │ │ ├── IPAUnknownRecursionTest.java │ │ ├── InvalidBuiltinFunctionCallTest.java │ │ ├── InvalidFunctionAssignmentTest.java │ │ ├── InvalidFunctionSignatureTest.java │ │ ├── ListAndStructTest.java │ │ ├── ListAppendRemove.java │ │ ├── ListAppendSizeTest.java │ │ ├── LongOverflowTest.java │ │ ├── NNZPropagationTest.java │ │ ├── NegativeLoopIncrementsTest.java │ │ ├── NrowNcolStringTest.java │ │ ├── NrowNcolUnknownCSVReadTest.java │ │ ├── OuterTableExpandTest.java │ │ ├── PrintExpressionTest.java │ │ ├── PrintListTest.java │ │ ├── PrintMatrixTest.java │ │ ├── ReadAfterWriteTest.java │ │ ├── ScalarAssignmentTest.java │ │ ├── ScalarFunctionTest.java │ │ ├── ScalarMatrixUnaryBinaryTermTest.java │ │ ├── ScalarToMatrixInLoopTest.java │ │ ├── SetWorkingDirTest.java │ │ ├── SizePropagationTest.java │ │ ├── ToStringTest.java │ │ ├── TypeTyposTest.java │ │ ├── UnivariateStatsBasicTest.java │ │ ├── ValueTypeAutoCastingTest.java │ │ ├── ValueTypeCastingTest.java │ │ ├── ValueTypeMatrixScalarBuiltinTest.java │ │ └── ZeroRowsColsMatrixTest.java │ ├── mlcontext │ │ ├── DataFrameMatrixConversionTest.java │ │ ├── DataFrameRowFrameConversionTest.java │ │ ├── DataFrameVectorFrameConversionTest.java │ │ ├── DataFrameVectorScriptTest.java │ │ ├── FrameTest.java │ │ ├── GNMFTest.java │ │ ├── MLContextFrameTest.java │ │ ├── MLContextLinregTest.java │ │ ├── MLContextMultipleScriptsTest.java │ │ ├── MLContextOptLevelTest.java │ │ ├── MLContextOutputBlocksizeTest.java │ │ ├── MLContextPNMFTest.java │ │ ├── MLContextPageRankTest.java │ │ ├── MLContextParforDatasetTest.java │ │ ├── MLContextScratchCleanupTest.java │ │ ├── MLContextTest.java │ │ ├── MLContextTestBase.java │ │ └── MLContextUnivariateStatisticsTest.java │ ├── nary │ │ ├── NaryCBindTest.java │ │ ├── NaryListCBindTest.java │ │ ├── NaryListRBindTest.java │ │ ├── NaryListTest.java │ │ ├── NaryListTestAdvanced.java │ │ ├── NaryMinMaxTest.java │ │ └── NaryRBindTest.java │ ├── ooc │ │ ├── BinaryMatrixMatrixTest.java │ │ ├── BinaryMatrixScalarTest.java │ │ ├── CSVReaderTest.java │ │ ├── CTableTest.java │ │ ├── CentralMomentTest.java │ │ ├── CentralMomentWeightsTest.java │ │ ├── ColAggregationTest.java │ │ ├── ContainsTest.java │ │ ├── MatrixVectorBinaryMultiplicationTest.java │ │ ├── OOCExceptionHandlingTest.java │ │ ├── RandTest.java │ │ ├── ReplaceTest.java │ │ ├── RightIndexingCoordsTest.java │ │ ├── RightIndexingTest.java │ │ ├── RowAggregationTest.java │ │ ├── SeqTest.java │ │ ├── SortTest.java │ │ ├── StreamCollectTest.java │ │ ├── SumScalarMultiplicationTest.java │ │ ├── TeeTest.java │ │ ├── TransposeSelfMMTest.java │ │ ├── TransposeTest.java │ │ ├── UnaryTest.java │ │ └── lmDSTest.java │ ├── paramserv │ │ ├── BaseDataPartitionerTest.java │ │ ├── LocalDataPartitionerTest.java │ │ ├── ParamservLocalNNAveragingTest.java │ │ ├── ParamservLocalNNTest.java │ │ ├── ParamservLocalNNTestwithNbatches.java │ │ ├── ParamservRecompilationTest.java │ │ ├── ParamservRuntimeNegativeTest.java │ │ ├── ParamservSBPTest.java │ │ ├── ParamservSparkNNTest.java │ │ ├── ParamservSparkNNTestwithNbatches.java │ │ ├── ParamservSyntaxTest.java │ │ └── SparkDataPartitionerTest.java │ ├── parfor │ │ ├── misc │ │ │ ├── ForLoopPredicateTest.java │ │ │ ├── ParForAccumulatorResultMergeTest.java │ │ │ ├── ParForAdversarialLiteralsTest.java │ │ │ ├── ParForEvalBuiltinTest.java │ │ │ ├── ParForFunctionSerializationTest.java │ │ │ ├── ParForImageBrightnessTest.java │ │ │ ├── ParForImageMirrorTest.java │ │ │ ├── ParForListFrameResultVarsTest.java │ │ │ ├── ParForNaNResultMergeTest.java │ │ │ ├── ParForParallelRemoteResultMergeTest.java │ │ │ ├── ParForRecursiveFunctionTest.java │ │ │ ├── ParForRemoteRobustnessTest.java │ │ │ ├── ParForReplaceThreadIDRecompileTest.java │ │ │ ├── ParForRulebasedOptimizerTest.java │ │ │ └── ParForSerialRemoteResultMergeTest.java │ │ └── partition │ │ │ ├── ParForBlockwiseDataPartitioningTest.java │ │ │ ├── ParForColwiseDataPartitioningTest.java │ │ │ ├── ParForDataPartitionExecuteTest.java │ │ │ ├── ParForDataPartitionLeftIndexingTest.java │ │ │ ├── ParForMultipleDataPartitioningTest.java │ │ │ ├── ParForRepeatedOptimizationTest.java │ │ │ └── ParForRowwiseDataPartitioningTest.java │ ├── pipelines │ │ ├── BuiltinExecutePipelineTest.java │ │ ├── BuiltinFitPipelineTest.java │ │ ├── BuiltinImageCutoutTest.java │ │ ├── BuiltinImageInvertTest.java │ │ ├── BuiltinImageMirrorTest.java │ │ ├── BuiltinImagePosterizeLinTest.java │ │ ├── BuiltinImagePosterizeTest.java │ │ ├── BuiltinImageRotateLinTest.java │ │ ├── BuiltinImageRotateTest.java │ │ ├── BuiltinImageSamplePairingTest.java │ │ ├── BuiltinImageShearLinTest.java │ │ ├── BuiltinImageShearTest.java │ │ ├── BuiltinImageTransformLinTest.java │ │ ├── BuiltinImageTransformTest.java │ │ ├── BuiltinImageTranslateTest.java │ │ ├── BuiltinTopkCleaningClassificationTest.java │ │ ├── BuiltinTopkCleaningRegressionTest.java │ │ └── BuiltinTopkLogicalTest.java │ ├── quaternary │ │ ├── RewritesWeightedSigmoidTest.java │ │ ├── WeightedCrossEntropyTest.java │ │ ├── WeightedDivMatrixMultTest.java │ │ ├── WeightedSigmoidTest.java │ │ ├── WeightedSquaredLossTest.java │ │ └── WeightedUnaryMatrixMultTest.java │ ├── recompile │ │ ├── BranchRemovalTest.java │ │ ├── CSVReadInFunctionTest.java │ │ ├── CSVReadUnknownSizeTest.java │ │ ├── FunctionRecompileTest.java │ │ ├── IPAAssignConstantPropagationTest.java │ │ ├── IPAComplexAppendTest.java │ │ ├── IPAConstantPropagationFunTest.java │ │ ├── IPAConstantPropagationTest.java │ │ ├── IPAFrameAppendTest.java │ │ ├── IPAPropagationSizeMultipleFunctionsTest.java │ │ ├── LiteralReplaceCastScalarReadTest.java │ │ ├── LoopRecompileTest.java │ │ ├── MultipleReadsIPATest.java │ │ ├── PredicateRecompileTest.java │ │ ├── RandJobRecompileTest.java │ │ ├── RandRecompileTest.java │ │ ├── RandSizeExpressionEvalTest.java │ │ ├── ReblockRecompileTest.java │ │ ├── RecursiveFunctionRecompileTest.java │ │ ├── RemoveEmptyPotpourriTest.java │ │ ├── RemoveEmptyRecompileTest.java │ │ ├── RewriteComplexMapMultChainTest.java │ │ ├── SparsityFunctionRecompileTest.java │ │ └── SparsityRecompileTest.java │ ├── reorg │ │ ├── FullDiagTest.java │ │ ├── FullOrderTest.java │ │ ├── FullReverseTest.java │ │ ├── FullRollTest.java │ │ ├── FullTransposeTest.java │ │ ├── MatrixReshapeTest.java │ │ ├── MultipleOrderByColsTest.java │ │ └── VectorReshapeTest.java │ ├── rewrite │ │ ├── RewriteBinaryMV2OuterTest.java │ │ ├── RewriteCSETransposeScalarTest.java │ │ ├── RewriteCTableToRExpandTest.java │ │ ├── RewriteCanonicalizeMatrixMultScalarAddTest.java │ │ ├── RewriteConstantConjunctionDisjunctionTest.java │ │ ├── RewriteCumsumConstantTest.java │ │ ├── RewriteDetTest.java │ │ ├── RewriteDistributiveMatrixMultTest.java │ │ ├── RewriteElementwiseMultChainOptimizationAllTest.java │ │ ├── RewriteElementwiseMultChainOptimizationTest.java │ │ ├── RewriteEliminateAggregatesTest.java │ │ ├── RewriteEliminateRemoveEmptyTest.java │ │ ├── RewriteFoldMinMaxTest.java │ │ ├── RewriteFoldRCBindTest.java │ │ ├── RewriteForLoopRemovalTest.java │ │ ├── RewriteFuseBinaryOpChainTest.java │ │ ├── RewriteFuseBinarySubDAGToUnaryOperationTest.java │ │ ├── RewriteFuseLeftIndexingChainToAppendTest.java │ │ ├── RewriteFuseNzOperationsTest.java │ │ ├── RewriteFuseOrderOperationChainTest.java │ │ ├── RewriteFusedRandTest.java │ │ ├── RewriteHoistingLoopInvariantOpsTest.java │ │ ├── RewriteHoistingTimeTest.java │ │ ├── RewriteIfElseTest.java │ │ ├── RewriteIndexingRemovalTest.java │ │ ├── RewriteIndexingVectorizationTest.java │ │ ├── RewriteListTsmmCVTest.java │ │ ├── RewriteLoopVectorization.java │ │ ├── RewriteMMCBindZeroVector.java │ │ ├── RewriteMatrixMultChainOptSparseTest.java │ │ ├── RewriteMatrixMultChainOptTest.java │ │ ├── RewriteMatrixMultChainOptTest2.java │ │ ├── RewriteMatrixMultChainOptTransposeTest.java │ │ ├── RewriteMergeBlocksTest.java │ │ ├── RewriteNNIssueTest.java │ │ ├── RewriteNaryMultTest.java │ │ ├── RewriteNaryPlusTest.java │ │ ├── RewriteNonScalarPrintTest.java │ │ ├── RewriteNotOverComparisonsTest.java │ │ ├── RewritePullupAbsTest.java │ │ ├── RewritePushdownBinaryOperationOnDiagTest.java │ │ ├── RewritePushdownSumBinaryMult.java │ │ ├── RewritePushdownSumOnBinaryTest.java │ │ ├── RewritePushdownUaggTest.java │ │ ├── RewriteQuantizationFusedCompressionTest.java │ │ ├── RewriteRemoveComparisonChainsTest.java │ │ ├── RewriteRemoveUnnecessaryBinaryOperationTest.java │ │ ├── RewriteRemoveUnnecessaryCTableTest.java │ │ ├── RewriteRemoveUnnecessaryMinusTest.java │ │ ├── RewriteRemoveUnnecessaryReorgOperationTest.java │ │ ├── RewriteRemoveUnnecessaryRevTest.java │ │ ├── RewriteRemoveUnnecessaryVectorizeOperationTest.java │ │ ├── RewriteSPCheckpoint.java │ │ ├── RewriteScalarRightIndexingTest.java │ │ ├── RewriteSimplifyBinaryMatrixScalarOperationTest.java │ │ ├── RewriteSimplifyBinaryToUnaryOperationTest.java │ │ ├── RewriteSimplifyBushyBinaryOperationTest.java │ │ ├── RewriteSimplifyCTableWithConstantMatrixInputsTest.java │ │ ├── RewriteSimplifyConstantSortTest.java │ │ ├── RewriteSimplifyCumsumColOrFullAggregatesTest.java │ │ ├── RewriteSimplifyCumsumReverseTest.java │ │ ├── RewriteSimplifyDistributiveBinaryOperationTest.java │ │ ├── RewriteSimplifyEmptyColMeansTest.java │ │ ├── RewriteSimplifyLowerTriExtractionTest.java │ │ ├── RewriteSimplifyMultiBinaryToBinaryOperationTest.java │ │ ├── RewriteSimplifyNegatedSubtractionTest.java │ │ ├── RewriteSimplifyNnzComputationTest.java │ │ ├── RewriteSimplifyOrderedSortTest.java │ │ ├── RewriteSimplifyOuterSeqExpandTest.java │ │ ├── RewriteSimplifyReplaceZeroOperationTest.java │ │ ├── RewriteSimplifyReverseOperationTest.java │ │ ├── RewriteSimplifyReverseSequenceStepTest.java │ │ ├── RewriteSimplifyRowColSumMVMultTest.java │ │ ├── RewriteSimplifyScalarMatrixPMOperationTest.java │ │ ├── RewriteSimplifySumDiagToTraceTest.java │ │ ├── RewriteSimplifyTraceMatrixMultTest.java │ │ ├── RewriteSimplifyTraceSumTest.java │ │ ├── RewriteSimplifyTraceTransposeTest.java │ │ ├── RewriteSimplifyTransposeAdditionTest.java │ │ ├── RewriteSimplifyTransposeAggBinBinaryChainsTest.java │ │ ├── RewriteSimplifyTransposedAppendTest.java │ │ ├── RewriteSimplifyTransposedCumsumTest.java │ │ ├── RewriteSimplifyUnaryAggReorgOperationTest.java │ │ ├── RewriteSimplifyUnaryPPredOperationTest.java │ │ ├── RewriteSimplifyUnionDistinctTest.java │ │ ├── RewriteSimplifyWeightedSigmoidMMChainsTest.java │ │ ├── RewriteSimplifyWeightedSquaredLossTest.java │ │ ├── RewriteSimplifyWeightedUnaryMMTest.java │ │ ├── RewriteSlicedMatrixMultTest.java │ │ └── RewriteTransposeTest.java │ ├── ternary │ │ ├── ABATernaryAggregateTest.java │ │ ├── CTableMatrixIgnoreZerosTest.java │ │ ├── CTableSequenceTest.java │ │ ├── CentralMomentWeightsTest.java │ │ ├── CovarianceWeightsTest.java │ │ ├── FullIfElseTest.java │ │ ├── QuantileWeightsTest.java │ │ ├── TableOutputTest.java │ │ └── TernaryAggregateTest.java │ ├── transform │ │ ├── ColumnEncoderMixedFunctionalityTests.java │ │ ├── ColumnEncoderSerializationTest.java │ │ ├── FrameCSVReadWriteTest.java │ │ ├── TokenizeMultithreadedTest.java │ │ ├── TokenizeTest.java │ │ ├── TransformApplyEmptyRecodeMapTest.java │ │ ├── TransformApplyUnknownsTest.java │ │ ├── TransformCSVFrameEncodeDecodeTest.java │ │ ├── TransformCSVFrameEncodeReadTest.java │ │ ├── TransformEncodeDecodeTest.java │ │ ├── TransformEncodeUDFTest.java │ │ ├── TransformFrameBuildMultithreadedTest.java │ │ ├── TransformFrameEncodeApplySubsetTest.java │ │ ├── TransformFrameEncodeApplyTest.java │ │ ├── TransformFrameEncodeBagOfWords.java │ │ ├── TransformFrameEncodeColmapTest.java │ │ ├── TransformFrameEncodeDecodeTest.java │ │ ├── TransformFrameEncodeDecodeTokenTest.java │ │ ├── TransformFrameEncodeMultithreadedTest.java │ │ ├── TransformFrameEncodeWordEmbedding1Test.java │ │ ├── TransformFrameEncodeWordEmbedding2Test.java │ │ ├── TransformFrameEncodeWordEmbeddingMMTest.java │ │ ├── TransformFrameEncodeWordEmbeddingRowSumTest.java │ │ └── TransformRealDatasetsTest.java │ ├── unary │ │ ├── matrix │ │ │ ├── ACosTest.java │ │ │ ├── ASinTest.java │ │ │ ├── ATanTest.java │ │ │ ├── AbsTest.java │ │ │ ├── CastAsScalarTest.java │ │ │ ├── CholeskyTest.java │ │ │ ├── CosTest.java │ │ │ ├── DetTest.java │ │ │ ├── DiagTest.java │ │ │ ├── EigenFactorizeTest.java │ │ │ ├── ExtractTriangularTest.java │ │ │ ├── FullCummaxTest.java │ │ │ ├── FullCumminTest.java │ │ │ ├── FullCumprodTest.java │ │ │ ├── FullCumsumTest.java │ │ │ ├── FullCumsumprodTest.java │ │ │ ├── FullRowcumsumTest.java │ │ │ ├── FullSelectPosTest.java │ │ │ ├── FullSignTest.java │ │ │ ├── IQMTest.java │ │ │ ├── IsSpecialValueTest.java │ │ │ ├── LUFactorizeTest.java │ │ │ ├── MLUnaryBuiltinTest.java │ │ │ ├── MatrixInverseTest.java │ │ │ ├── MinusTest.java │ │ │ ├── NegationTest.java │ │ │ ├── PrintTest.java │ │ │ ├── QRSolverTest.java │ │ │ ├── RemoveEmptySelTest.java │ │ │ ├── RemoveEmptyTest.java │ │ │ ├── ReplaceTest.java │ │ │ ├── RoundTest.java │ │ │ ├── SVDFactorizeTest.java │ │ │ ├── SinTest.java │ │ │ ├── SqrtTest.java │ │ │ ├── TanTest.java │ │ │ └── TransposeTest.java │ │ └── scalar │ │ │ ├── ACosTest.java │ │ │ ├── ASinTest.java │ │ │ ├── ATanTest.java │ │ │ ├── AbsTest.java │ │ │ ├── BooleanTest.java │ │ │ ├── CosTest.java │ │ │ ├── ExponentTest.java │ │ │ ├── FullDistributionTest.java │ │ │ ├── NegationTest.java │ │ │ ├── NotTest.java │ │ │ ├── PrintTest.java │ │ │ ├── RoundTest.java │ │ │ ├── SinTest.java │ │ │ ├── SqrtTest.java │ │ │ ├── StopTest.java │ │ │ ├── StopTest2.java │ │ │ ├── StopTestCtrlStr.java │ │ │ └── TanTest.java │ ├── unique │ │ ├── UniqueBase.java │ │ ├── UniqueRow.java │ │ └── UniqueRowCol.java │ ├── updateinplace │ │ ├── BinaryUpdateInPlaceTest.java │ │ ├── UnaryUpdateInPlaceTest.java │ │ └── UpdateInPlaceTest.java │ └── vect │ │ ├── AutoVectorizationTest.java │ │ └── LeftIndexingChainUpdateTest.java │ ├── gpu │ ├── BuiltinUnaryGPUInstructionTest.java │ ├── codegen │ │ ├── CellwiseTmplTest.java │ │ └── RowAggTmplTest.java │ ├── cudaSupportFunctions │ │ ├── CudaCublasDotTest.java │ │ ├── CudaCublasGeMVTest.java │ │ ├── CudaCublasGeamTest.java │ │ ├── CudaCublasGemmTest.java │ │ ├── CudaCusparseCsr2CscTest.java │ │ ├── CudaCusparseCsrGeamTest.java │ │ ├── CudaCusparseCsrGemmTest.java │ │ ├── CudaCusparseCsrMMTest.java │ │ └── CudaCusparseCsrMVTest.java │ └── nn │ │ ├── DNNOperationsGPUTest.java │ │ └── ResNet18GPUTest.java │ ├── usertest │ ├── Base.java │ ├── UserInterfaceTest.java │ └── pythonapi │ │ └── StartupTest.java │ └── util │ └── DependencyThreadPoolTest.java ├── resources ├── component │ ├── compress │ │ ├── 1-1.csv │ │ ├── 1-1.csv.mtd │ │ ├── 1-1_y.csv │ │ ├── 1-1_y.csv.mtd │ │ ├── README.md │ │ └── sample │ │ │ ├── s1.dat │ │ │ └── s2.dat │ ├── federated │ │ ├── 1000x10.csv │ │ ├── 1000x10.csv.mtd │ │ ├── 100x10.csv │ │ ├── 100x10.csv.mtd │ │ ├── comp.xml │ │ ├── def.xml │ │ └── workload.xml │ └── transformers │ │ ├── bert_layer │ │ ├── input_W_K_test1.csv │ │ ├── input_W_K_test2.csv │ │ ├── input_W_K_test3.csv │ │ ├── input_W_K_test4.csv │ │ ├── input_W_Q_test1.csv │ │ ├── input_W_Q_test2.csv │ │ ├── input_W_Q_test3.csv │ │ ├── input_W_Q_test4.csv │ │ ├── input_W_V_test1.csv │ │ ├── input_W_V_test2.csv │ │ ├── input_W_V_test3.csv │ │ ├── input_W_V_test4.csv │ │ ├── input_W_context_test1.csv │ │ ├── input_W_context_test2.csv │ │ ├── input_W_context_test3.csv │ │ ├── input_W_context_test4.csv │ │ ├── input_W_intermediate_test1.csv │ │ ├── input_W_intermediate_test2.csv │ │ ├── input_W_intermediate_test3.csv │ │ ├── input_W_intermediate_test4.csv │ │ ├── input_W_out_test1.csv │ │ ├── input_W_out_test2.csv │ │ ├── input_W_out_test3.csv │ │ ├── input_W_out_test4.csv │ │ ├── input_b_K_test1.csv │ │ ├── input_b_K_test2.csv │ │ ├── input_b_K_test3.csv │ │ ├── input_b_K_test4.csv │ │ ├── input_b_Q_test1.csv │ │ ├── input_b_Q_test2.csv │ │ ├── input_b_Q_test3.csv │ │ ├── input_b_Q_test4.csv │ │ ├── input_b_V_test1.csv │ │ ├── input_b_V_test2.csv │ │ ├── input_b_V_test3.csv │ │ ├── input_b_V_test4.csv │ │ ├── input_b_context_test1.csv │ │ ├── input_b_context_test2.csv │ │ ├── input_b_context_test3.csv │ │ ├── input_b_context_test4.csv │ │ ├── input_b_intermediate_test1.csv │ │ ├── input_b_intermediate_test2.csv │ │ ├── input_b_intermediate_test3.csv │ │ ├── input_b_intermediate_test4.csv │ │ ├── input_b_out_test1.csv │ │ ├── input_b_out_test2.csv │ │ ├── input_b_out_test3.csv │ │ ├── input_b_out_test4.csv │ │ ├── input_beta_ln1_test1.csv │ │ ├── input_beta_ln1_test2.csv │ │ ├── input_beta_ln1_test3.csv │ │ ├── input_beta_ln1_test4.csv │ │ ├── input_beta_ln2_test1.csv │ │ ├── input_beta_ln2_test2.csv │ │ ├── input_beta_ln2_test3.csv │ │ ├── input_beta_ln2_test4.csv │ │ ├── input_dstates_test3.csv │ │ ├── input_dstates_test4.csv │ │ ├── input_gamma_ln1_test1.csv │ │ ├── input_gamma_ln1_test2.csv │ │ ├── input_gamma_ln1_test3.csv │ │ ├── input_gamma_ln1_test4.csv │ │ ├── input_gamma_ln2_test1.csv │ │ ├── input_gamma_ln2_test2.csv │ │ ├── input_gamma_ln2_test3.csv │ │ ├── input_gamma_ln2_test4.csv │ │ ├── input_states_test1.csv │ │ ├── input_states_test2.csv │ │ ├── input_states_test3.csv │ │ ├── input_states_test4.csv │ │ ├── output_attention_test1.csv │ │ ├── output_attention_test2.csv │ │ ├── output_attention_test3.csv │ │ ├── output_attention_test4.csv │ │ ├── output_dW_K_test3.csv │ │ ├── output_dW_K_test4.csv │ │ ├── output_dW_Q_test3.csv │ │ ├── output_dW_Q_test4.csv │ │ ├── output_dW_V_test3.csv │ │ ├── output_dW_V_test4.csv │ │ ├── output_dW_context_test3.csv │ │ ├── output_dW_context_test4.csv │ │ ├── output_dW_intermediate_test3.csv │ │ ├── output_dW_intermediate_test4.csv │ │ ├── output_dW_out_test3.csv │ │ ├── output_dW_out_test4.csv │ │ ├── output_db_K_test3.csv │ │ ├── output_db_K_test4.csv │ │ ├── output_db_Q_test3.csv │ │ ├── output_db_Q_test4.csv │ │ ├── output_db_V_test3.csv │ │ ├── output_db_V_test4.csv │ │ ├── output_db_context_test3.csv │ │ ├── output_db_context_test4.csv │ │ ├── output_db_intermediate_test3.csv │ │ ├── output_db_intermediate_test4.csv │ │ ├── output_db_out_test3.csv │ │ ├── output_db_out_test4.csv │ │ ├── output_dbeta_ln1_test3.csv │ │ ├── output_dbeta_ln1_test4.csv │ │ ├── output_dbeta_ln2_test3.csv │ │ ├── output_dbeta_ln2_test4.csv │ │ ├── output_dgamma_ln1_test3.csv │ │ ├── output_dgamma_ln1_test4.csv │ │ ├── output_dgamma_ln2_test3.csv │ │ ├── output_dgamma_ln2_test4.csv │ │ ├── output_dstates_test3.csv │ │ ├── output_dstates_test4.csv │ │ ├── output_states_test1.csv │ │ ├── output_states_test2.csv │ │ ├── output_states_test3.csv │ │ └── output_states_test4.csv │ │ └── multi_attention_layer │ │ ├── input_attention_test4.csv │ │ ├── input_attention_test5.csv │ │ ├── input_attention_test6.csv │ │ ├── input_dcontext_test4.csv │ │ ├── input_dcontext_test5.csv │ │ ├── input_dcontext_test6.csv │ │ ├── input_key_test1.csv │ │ ├── input_key_test2.csv │ │ ├── input_key_test3.csv │ │ ├── input_key_test4.csv │ │ ├── input_key_test5.csv │ │ ├── input_key_test6.csv │ │ ├── input_query_test1.csv │ │ ├── input_query_test2.csv │ │ ├── input_query_test3.csv │ │ ├── input_query_test4.csv │ │ ├── input_query_test5.csv │ │ ├── input_query_test6.csv │ │ ├── input_value_test1.csv │ │ ├── input_value_test2.csv │ │ ├── input_value_test3.csv │ │ ├── input_value_test4.csv │ │ ├── input_value_test5.csv │ │ ├── input_value_test6.csv │ │ ├── output_attention_test1.csv │ │ ├── output_attention_test2.csv │ │ ├── output_attention_test3.csv │ │ ├── output_context_test1.csv │ │ ├── output_context_test2.csv │ │ ├── output_context_test3.csv │ │ ├── output_dkey_test4.csv │ │ ├── output_dkey_test5.csv │ │ ├── output_dkey_test6.csv │ │ ├── output_dquery_test4.csv │ │ ├── output_dquery_test5.csv │ │ ├── output_dquery_test6.csv │ │ ├── output_dvalue_test4.csv │ │ ├── output_dvalue_test5.csv │ │ └── output_dvalue_test6.csv ├── conf │ ├── invalid-codegen-conf.xml │ ├── invalid-gpu-conf.xml │ ├── invalid-shadow-buffer1-conf.xml │ ├── invalid-shadow-buffer2-conf.xml │ └── shadow-buffer-conf.xml ├── datasets │ ├── 20news │ │ ├── 20news.tfspec_recode.json │ │ ├── 20news_subset.csv │ │ └── 20news_subset_untokenized.csv │ ├── ChickWeight.csv │ ├── DenialConstraints.csv │ ├── EEG.csv │ ├── EEG_tfspec.json │ ├── GloVe │ │ ├── coocMatrixTest.csv │ │ └── gloveExpectedTop10.csv │ ├── MNIST │ │ └── mnist_test.csv │ ├── Salaries.csv │ ├── Salaries_testDenialConstraints.csv │ ├── Salaries_tfspec.json │ ├── amazonReview2023 │ │ └── Digital_Music_Text_Head2k_With_RCD_Col.csv │ ├── caveman_4_20.ijv │ ├── caveman_4_20.ijv.mtd │ ├── cog │ │ ├── testCOG_1.tif │ │ ├── testCOG_1.tif.mtd │ │ ├── testCOG_2.tif │ │ ├── testCOG_2.tif.mtd │ │ ├── testCOG_3.tif │ │ ├── testCOG_3.tif.mtd │ │ ├── testCOG_4.tif │ │ ├── testCOG_4.tif.mtd │ │ ├── testCOG_5.tif │ │ ├── testCOG_5.tif.mtd │ │ ├── testCOG_6.tif │ │ ├── testCOG_6.tif.mtd │ │ ├── testCOG_7.tif │ │ ├── testCOG_7.tif.mtd │ │ ├── testCOG_8.tif │ │ └── testCOG_8.tif.mtd │ ├── csv_mix │ │ └── quotes1.csv │ ├── diabetes │ │ ├── diabetes.csv │ │ └── tfspec.json │ ├── games │ │ └── games.csv │ ├── homes │ │ ├── homes.csv │ │ ├── homes.csv.mtd │ │ ├── homes.tfidspec.json │ │ ├── homes.tfspec.json │ │ ├── homes.tfspec2.json │ │ ├── homes.tfspec_bin2.json │ │ ├── homes.tfspec_recode2.json │ │ ├── homes.transformed.csv │ │ ├── homesAllMissing.csv │ │ ├── homesAllMissing.csv.mtd │ │ ├── homesAllMissing.tfidspec.json │ │ ├── homesAllMissing.tfspec.json │ │ ├── homesNAN.colnames.csv │ │ ├── homesNAN.csv │ │ ├── homesNAN.csv.mtd │ │ ├── homesNAN.tfidspec.json │ │ ├── homesNAN.tfspec.json │ │ ├── homesOmit.tfidspec.json │ │ ├── homesOmit.tfspec.json │ │ └── homesOmit.transformed.csv │ ├── homes2 │ │ ├── homes.csv.mtd │ │ ├── homes.csv │ │ │ ├── homes1.csv │ │ │ └── homes2.csv │ │ ├── homes.tfidspec.json │ │ ├── homes.tfspec.json │ │ ├── homes.tfspec2.json │ │ └── homes.transformed.csv │ ├── homes3 │ │ ├── homes.csv │ │ ├── homes.csv.mtd │ │ ├── homes.tfspec_bin.json │ │ ├── homes.tfspec_bin2.json │ │ ├── homes.tfspec_binDummy.json │ │ ├── homes.tfspec_binDummy2.json │ │ ├── homes.tfspec_binHeightDummy.json │ │ ├── homes.tfspec_binHeightDummy2.json │ │ ├── homes.tfspec_bin_height.json │ │ ├── homes.tfspec_bin_height2.json │ │ ├── homes.tfspec_colmap1.json │ │ ├── homes.tfspec_colmap2.json │ │ ├── homes.tfspec_dummy.json │ │ ├── homes.tfspec_dummy2.json │ │ ├── homes.tfspec_dummy_sparse.json │ │ ├── homes.tfspec_hash.json │ │ ├── homes.tfspec_hash2.json │ │ ├── homes.tfspec_hash_dummy.json │ │ ├── homes.tfspec_hash_recode.json │ │ ├── homes.tfspec_hash_recode2.json │ │ ├── homes.tfspec_impute.json │ │ ├── homes.tfspec_impute2.json │ │ ├── homes.tfspec_omit.json │ │ ├── homes.tfspec_omit2.json │ │ ├── homes.tfspec_recode.json │ │ ├── homes.tfspec_recode2.json │ │ ├── homes.tfspec_recode_bin.json │ │ ├── homes.tfspec_recode_dummy.json │ │ └── homes.tfspec_recode_dummy2.json │ ├── iris │ │ ├── iris.csv │ │ ├── iris.csv.mtd │ │ ├── iris.tfidspec.json │ │ ├── iris.tfspec.json │ │ └── iris.transformed.csv │ ├── nashville_scaled.csv │ ├── nashville_scaled.csv.mtd │ ├── pipelines │ │ ├── clean.csv │ │ ├── company.csv │ │ └── dirty.csv │ ├── popbycitizenship.csv │ ├── sherlockWeights │ │ ├── cW1.ijv │ │ ├── cW1.ijv.mtd │ │ ├── cW2.ijv │ │ ├── cW2.ijv.mtd │ │ ├── cW3.ijv │ │ ├── cW3.ijv.mtd │ │ ├── cb1.ijv │ │ ├── cb1.ijv.mtd │ │ ├── cb2.ijv │ │ ├── cb2.ijv.mtd │ │ ├── cb3.ijv │ │ ├── cb3.ijv.mtd │ │ ├── fW1.ijv │ │ ├── fW1.ijv.mtd │ │ ├── fW2.ijv │ │ ├── fW2.ijv.mtd │ │ ├── fW3.ijv │ │ ├── fW3.ijv.mtd │ │ ├── fb1.ijv │ │ ├── fb1.ijv.mtd │ │ ├── fb2.ijv │ │ ├── fb2.ijv.mtd │ │ ├── fb3.ijv │ │ ├── fb3.ijv.mtd │ │ ├── label_encoding.ijv │ │ ├── label_encoding.ijv.mtd │ │ ├── pW1.ijv │ │ ├── pW1.ijv.mtd │ │ ├── pW2.ijv │ │ ├── pW2.ijv.mtd │ │ ├── pW3.ijv │ │ ├── pW3.ijv.mtd │ │ ├── pb1.ijv │ │ ├── pb1.ijv.mtd │ │ ├── pb2.ijv │ │ ├── pb2.ijv.mtd │ │ ├── pb3.ijv │ │ ├── pb3.ijv.mtd │ │ ├── sW1.ijv │ │ ├── sW1.ijv.mtd │ │ ├── sW2.ijv │ │ ├── sW2.ijv.mtd │ │ ├── sW3.ijv │ │ ├── sW3.ijv.mtd │ │ ├── sb1.ijv │ │ ├── sb1.ijv.mtd │ │ ├── sb2.ijv │ │ ├── sb2.ijv.mtd │ │ ├── sb3.ijv │ │ ├── sb3.ijv.mtd │ │ ├── wW1.ijv │ │ ├── wW1.ijv.mtd │ │ ├── wW2.ijv │ │ ├── wW2.ijv.mtd │ │ ├── wW3.ijv │ │ ├── wW3.ijv.mtd │ │ ├── wb1.ijv │ │ ├── wb1.ijv.mtd │ │ ├── wb2.ijv │ │ ├── wb2.ijv.mtd │ │ ├── wb3.ijv │ │ └── wb3.ijv.mtd │ ├── stemming │ │ └── dictionary.csv │ ├── synthetic_classification.csv │ ├── titanic │ │ ├── tfspec.json │ │ └── titanic.csv │ └── wine │ │ ├── tfspec.json │ │ ├── winequality-red-white.csv │ │ └── winequality-white.csv ├── expected │ ├── BILSTM_OUT_10.0_5.0_2.0_6.0.csv │ ├── BILSTM_OUT_2.0_5.0_2.0_2.0.csv │ ├── BILSTM_OUT_3.0_5.0_2.0_2.0.csv │ ├── BILSTM_OUT_6.0_5.0_6.0_4.0.csv │ ├── BILSTM_back_dW_1.0_5.0_6.0_4.0.csv │ ├── BILSTM_back_dW_10.0_5.0_2.0_6.0.csv │ ├── BILSTM_back_dW_4.0_5.0_6.0_4.0.csv │ ├── BILSTM_back_dW_5.0_5.0_6.0_4.0.csv │ ├── BILSTM_back_dW_6.0_5.0_6.0_4.0.csv │ ├── BILSTM_back_dX_1.0_5.0_6.0_4.0.csv │ ├── BILSTM_back_dX_10.0_5.0_2.0_6.0.csv │ ├── BILSTM_back_dX_4.0_5.0_6.0_4.0.csv │ ├── BILSTM_back_dX_5.0_5.0_6.0_4.0.csv │ ├── BILSTM_back_dX_6.0_5.0_6.0_4.0.csv │ ├── BILSTM_back_dc_1.0_5.0_6.0_4.0.csv │ ├── BILSTM_back_dc_10.0_5.0_2.0_6.0.csv │ ├── BILSTM_back_dc_4.0_5.0_6.0_4.0.csv │ ├── BILSTM_back_dc_5.0_5.0_6.0_4.0.csv │ ├── BILSTM_back_dc_6.0_5.0_6.0_4.0.csv │ ├── ImageTransformInput.csv │ ├── ImageTransformLinInput.csv │ ├── ImageTransformLinRotated.csv │ ├── ImageTransformPosterized.csv │ ├── ImageTransformRotated.csv │ ├── ImageTransformShearedX.csv │ ├── ImageTransformShearedY.csv │ ├── ImageTransformTransformed.csv │ └── ImageTransformTranslated.csv └── log4j.properties └── scripts ├── applications ├── GAN │ ├── GAN_cnn.dml │ ├── GAN_mnist.dml │ └── GAN_simple.dml ├── apply-transform │ ├── apply-transform.dml │ ├── bindefns.mtx │ ├── bindefns.mtx.mtd │ ├── dummy_code_maps.mtx │ ├── dummy_code_maps.mtx.mtd │ ├── missing_value_map.mtx │ ├── missing_value_map.mtx.mtd │ ├── newX.mtx │ ├── newX.mtx.mtd │ ├── newX_nomissing.mtx │ ├── newX_nomissing.mtx.mtd │ ├── normalization_maps.mtx │ └── normalization_maps.mtx.mtd ├── arima_box-jenkins │ ├── arima.R │ ├── arima.dml │ ├── arima_old.R │ └── arima_old.dml ├── cspline │ ├── CsplineCG.R │ ├── CsplineCG.dml │ ├── CsplineDS.R │ └── CsplineDS.dml ├── ctableStats │ ├── Binomial.dml │ ├── ctci.dml │ ├── ctci_odds.dml │ ├── wilson_score.dml │ └── zipftest.dml ├── decomp │ └── ScalableDecomposition.dml ├── descriptivestats │ ├── Categorical.R │ ├── Categorical.dml │ ├── CategoricalCategorical.R │ ├── CategoricalCategorical.dml │ ├── CategoricalCategoricalWithWeightsTest.R │ ├── CategoricalCategoricalWithWeightsTest.dml │ ├── IQMTest.dml │ ├── OddsRatio.R │ ├── OddsRatio.dml │ ├── OrdinalOrdinal.R │ ├── OrdinalOrdinal.dml │ ├── OrdinalOrdinalWithWeightsTest.R │ ├── OrdinalOrdinalWithWeightsTest.dml │ ├── QuantileTest.dml │ ├── Scale.R │ ├── Scale.dml │ ├── ScaleCategorical.R │ ├── ScaleCategorical.dml │ ├── ScaleCategoricalWithWeightsTest.R │ ├── ScaleCategoricalWithWeightsTest.dml │ ├── ScaleScale.R │ ├── ScaleScale.dml │ ├── ScaleScalePearsonRWithWeightsTest.R │ ├── ScaleScalePearsonRWithWeightsTest.dml │ ├── SimpleQuantileTest.dml │ ├── WeightedCategoricalTest.R │ ├── WeightedCategoricalTest.dml │ ├── WeightedScaleTest.R │ └── WeightedScaleTest.dml ├── entity_resolution │ ├── binary │ │ ├── expected.csv │ │ ├── expected.csv.mtd │ │ ├── input.csv │ │ └── input.csv.mtd │ ├── blocking │ │ └── blocking_naive.dml │ ├── clustering │ │ ├── expected.csv │ │ ├── expected.csv.mtd │ │ ├── input.csv │ │ └── input.csv.mtd │ └── connected_components │ │ └── cluster_by_connected_components.dml ├── glm │ ├── GLM.R │ └── GLM.dml ├── gnmf │ ├── GNMF.R │ └── GNMF.dml ├── hits │ ├── HITS.R │ └── HITS.dml ├── id3 │ ├── id3.R │ └── id3.dml ├── impute │ ├── imputeGaussMCMC.dml │ ├── imputeGaussMCMC.nogradient.dml │ ├── old │ │ ├── imputeGaussMCMC.dml │ │ └── wfundInputGenerator.dml │ ├── test │ │ └── testInputGenerator.dml │ ├── testShadowRecurrenceInputGenerator.dml │ ├── tmp.dml │ ├── wfundInputGenerator.The0thReportAttempt.dml │ ├── wfundInputGenerator.pre2013-08-26.dml │ ├── wfundInputGenerator1.dml │ └── wfundInputGenerator2.dml ├── kmeans │ └── Kmeans.dml ├── l2svm │ ├── L2SVM.R │ └── L2SVM.dml ├── linearLogReg │ ├── LinearLogReg.R │ └── LinearLogReg.dml ├── linear_regression │ ├── LinearRegression.R │ └── LinearRegression.dml ├── m-svm │ ├── m-svm.R │ └── m-svm.dml ├── mdabivar │ ├── MDABivariateStats.R │ └── MDABivariateStats.dml ├── naive-bayes-parfor │ ├── naive-bayes.R │ ├── naive-bayes.dml │ └── readme.txt ├── naive-bayes │ ├── naive-bayes.R │ └── naive-bayes.dml ├── nn │ ├── compare_backends │ │ ├── README.md │ │ ├── compare.dml │ │ ├── gen_conv2d.dml │ │ ├── gen_conv2d_bwd_data.dml │ │ ├── gen_conv2d_bwd_filter.dml │ │ ├── gen_maxpool.dml │ │ ├── gen_maxpool_bwd.dml │ │ ├── gen_softmax.dml │ │ ├── run_tests.sh │ │ ├── test_avgpool.dml │ │ ├── test_avgpool.sh │ │ ├── test_avgpool_bwd.dml │ │ ├── test_avgpool_bwd.sh │ │ ├── test_conv2d.dml │ │ ├── test_conv2d.sh │ │ ├── test_conv2d_bwd_data.dml │ │ ├── test_conv2d_bwd_data.sh │ │ ├── test_conv2d_bwd_filter.dml │ │ ├── test_conv2d_bwd_filter.sh │ │ ├── test_maxpool.dml │ │ ├── test_maxpool.sh │ │ ├── test_maxpool_bwd.dml │ │ ├── test_maxpool_bwd.sh │ │ ├── test_softmax.dml │ │ └── test_softmax.sh │ ├── component │ │ ├── batch_norm1d.dml │ │ ├── batch_norm2d.dml │ │ ├── bert_layer_backward.dml │ │ ├── bert_layer_forward.dml │ │ ├── conv2d.dml │ │ ├── conv2d_depthwise.dml │ │ ├── conv2d_transpose.dml │ │ ├── conv2d_transpose_depthwise.dml │ │ ├── cross_entropy_loss.dml │ │ ├── cross_entropy_loss2d.dml │ │ ├── elu.dml │ │ ├── embedding.dml │ │ ├── gelu.dml │ │ ├── im2col.dml │ │ ├── logcosh.dml │ │ ├── max_pool2d.dml │ │ ├── multi_attention_backward.dml │ │ ├── multi_attention_forward.dml │ │ ├── padding.dml │ │ ├── resnet_basic.dml │ │ ├── resnet_bottleneck.dml │ │ ├── selu.dml │ │ ├── softmax2d.dml │ │ ├── tanh.dml │ │ ├── threshold.dml │ │ ├── top_k.dml │ │ ├── transpose_ABCD_to_ACBD.dml │ │ └── transpose_NCHW_to_CNHW.dml │ ├── conv2d_simple.dml │ ├── grad_check.dml │ ├── max_pool2d_simple.dml │ ├── run_tests_gradients.dml │ └── util.dml ├── page_rank │ └── PageRank.dml ├── parfor │ ├── parfor_bivariate.R │ ├── parfor_bivariate0.dml │ ├── parfor_bivariate1.dml │ ├── parfor_bivariate2.dml │ ├── parfor_bivariate3.dml │ ├── parfor_bivariate4.dml │ ├── parfor_corr.R │ ├── parfor_corr0.dml │ ├── parfor_corr1.dml │ ├── parfor_corr2.dml │ ├── parfor_corr3.dml │ ├── parfor_corr4.dml │ ├── parfor_corr5.dml │ ├── parfor_corr6.dml │ ├── parfor_corr_large.R │ ├── parfor_corr_large1.dml │ ├── parfor_corr_large2.dml │ ├── parfor_corr_large3.dml │ ├── parfor_corr_large4.dml │ ├── parfor_cv_multiclasssvm.R │ ├── parfor_cv_multiclasssvm0.dml │ ├── parfor_cv_multiclasssvm1.dml │ ├── parfor_cv_multiclasssvm4.dml │ ├── parfor_naive-bayes.R │ ├── parfor_naive-bayes1.dml │ ├── parfor_naive-bayes2.dml │ ├── parfor_naive-bayes3.dml │ ├── parfor_naive-bayes4.dml │ ├── parfor_sample.dml │ ├── parfor_univariate.R │ ├── parfor_univariate0.dml │ ├── parfor_univariate1.dml │ └── parfor_univariate4.dml ├── validation │ ├── CV_LogisticRegression.dml │ ├── CV_MultiClassSVM.dml │ ├── CV_MultiClassSVM.sasha.dml │ ├── LinearLogisticRegression.dml │ ├── MultiClassSVM.dml │ ├── MultiClassSVMScore.dml │ ├── genRandData4LogisticRegression.dml │ └── genRandData4MultiClassSVM.dml └── welchTTest │ ├── welchTTest.R │ └── welchTTest.dml ├── component ├── compress │ └── workload │ │ ├── TLeftMult.dml │ │ ├── TRightMult.dml │ │ ├── functions │ │ ├── l2svm.dml │ │ ├── l2svm_Y.dml │ │ ├── lmCG.dml │ │ ├── lmDS.dml │ │ ├── pca.dml │ │ ├── scale.dml │ │ ├── scale_continued.dml │ │ └── scale_onlySide.dml │ │ ├── leftMult.dml │ │ ├── loop │ │ ├── leftMult.dml │ │ ├── leftMultStaticLoop.dml │ │ └── leftMultWhile.dml │ │ ├── mean.dml │ │ ├── mmrbem+.dml │ │ ├── plus.dml │ │ ├── rightMult.dml │ │ ├── sliceCols.dml │ │ ├── sliceIndex.dml │ │ └── sum.dml ├── misc │ └── InputVariableOverwriteTest.dml ├── parfor │ ├── parfor1.dml │ ├── parfor10.dml │ ├── parfor11.dml │ ├── parfor12.dml │ ├── parfor13.dml │ ├── parfor14.dml │ ├── parfor15.dml │ ├── parfor16.dml │ ├── parfor17.dml │ ├── parfor18.dml │ ├── parfor19.dml │ ├── parfor2.dml │ ├── parfor20.dml │ ├── parfor21.dml │ ├── parfor22.dml │ ├── parfor23.dml │ ├── parfor24.dml │ ├── parfor25.dml │ ├── parfor26.dml │ ├── parfor26b.dml │ ├── parfor26c.dml │ ├── parfor26c2.dml │ ├── parfor26d.dml │ ├── parfor27.dml │ ├── parfor28.dml │ ├── parfor28b.dml │ ├── parfor28c.dml │ ├── parfor28d.dml │ ├── parfor28e.dml │ ├── parfor28f.dml │ ├── parfor28g.dml │ ├── parfor28h.dml │ ├── parfor29.dml │ ├── parfor3.dml │ ├── parfor30.dml │ ├── parfor31.dml │ ├── parfor31b.dml │ ├── parfor32.dml │ ├── parfor32b.dml │ ├── parfor32c.dml │ ├── parfor32d.dml │ ├── parfor32e.dml │ ├── parfor33.dml │ ├── parfor34.dml │ ├── parfor35.dml │ ├── parfor35b.dml │ ├── parfor35c.dml │ ├── parfor35d.dml │ ├── parfor36.dml │ ├── parfor37.dml │ ├── parfor38.dml │ ├── parfor39.dml │ ├── parfor4.dml │ ├── parfor40.dml │ ├── parfor41.dml │ ├── parfor42.dml │ ├── parfor43.dml │ ├── parfor44.dml │ ├── parfor45.dml │ ├── parfor46.dml │ ├── parfor47.dml │ ├── parfor48.dml │ ├── parfor48b.dml │ ├── parfor48c.dml │ ├── parfor49a.dml │ ├── parfor49b.dml │ ├── parfor5.dml │ ├── parfor51.dml │ ├── parfor52.dml │ ├── parfor53a.dml │ ├── parfor53b.dml │ ├── parfor53c.dml │ ├── parfor53d.dml │ ├── parfor53e.dml │ ├── parfor54a.dml │ ├── parfor54b.dml │ ├── parfor54c.dml │ ├── parfor54d.dml │ ├── parfor54e.dml │ ├── parfor54f.dml │ ├── parfor55a.dml │ ├── parfor55b.dml │ ├── parfor6.dml │ ├── parfor7.dml │ ├── parfor8.dml │ └── parfor9.dml └── resource │ ├── Algorithm_L2SVM.dml │ ├── Algorithm_Linreg.dml │ ├── Algorithm_PCA.dml │ ├── Algorithm_PNMF.dml │ ├── ReadAndWrite.dml │ ├── artifacts │ ├── minimal_aws_regional_prices.csv │ └── minimal_ec2_stats.csv │ ├── data │ ├── A.csv.mtd │ ├── B.csv │ ├── B.csv.mtd │ ├── C.csv │ ├── C.csv.mtd │ ├── D.csv │ └── D.csv.mtd │ ├── mm_test.dml │ └── mm_transpose_test.dml ├── functions ├── aggregate │ ├── AllMax.R │ ├── AllMax.dml │ ├── AllMean.R │ ├── AllMean.dml │ ├── AllMin.R │ ├── AllMin.dml │ ├── AllProd.R │ ├── AllProd.dml │ ├── AllSum.R │ ├── AllSum.dml │ ├── ColMaxs.R │ ├── ColMaxs.dml │ ├── ColMeans.R │ ├── ColMeans.dml │ ├── ColMins.R │ ├── ColMins.dml │ ├── ColProds.R │ ├── ColProds.dml │ ├── ColStdDevs.R │ ├── ColStdDevs.dml │ ├── ColSumScalarTest.dml │ ├── ColSumTest.dml │ ├── ColSums.R │ ├── ColSums.dml │ ├── ColSumsSq.R │ ├── ColSumsSq.dml │ ├── ColVariances.R │ ├── ColVariances.dml │ ├── ContainsVal.dml │ ├── ContainsVect.dml │ ├── DiagSum.R │ ├── DiagSum.dml │ ├── GroupedAggregate.R │ ├── GroupedAggregate.dml │ ├── GroupedAggregateMatrix.R │ ├── GroupedAggregateMatrix.dml │ ├── GroupedAggregateMatrixNoDims.dml │ ├── GroupedAggregateWeights.R │ ├── GroupedAggregateWeights.dml │ ├── InfSum.dml │ ├── LengthScalarTest.dml │ ├── LengthTest.dml │ ├── MaxScalarTest.dml │ ├── MaxTest.dml │ ├── MinScalarTest.dml │ ├── MinTest.dml │ ├── NColScalarTest.dml │ ├── NColTest.dml │ ├── NRowScalarTest.dml │ ├── NRowTest.dml │ ├── ProdScalarTest.dml │ ├── ProdTest.dml │ ├── PushdownSum1.R │ ├── PushdownSum1.dml │ ├── PushdownSum2.R │ ├── PushdownSum2.dml │ ├── RowIndexMaxs.R │ ├── RowIndexMaxs.dml │ ├── RowIndexMins.R │ ├── RowIndexMins.dml │ ├── RowMaxs.R │ ├── RowMaxs.dml │ ├── RowMeans.R │ ├── RowMeans.dml │ ├── RowMins.R │ ├── RowMins.dml │ ├── RowProds.R │ ├── RowProds.dml │ ├── RowStdDevs.R │ ├── RowStdDevs.dml │ ├── RowSumScalarTest.dml │ ├── RowSumTest.dml │ ├── RowSums.R │ ├── RowSums.dml │ ├── RowSumsSq.R │ ├── RowSumsSq.dml │ ├── RowVariances.R │ ├── RowVariances.dml │ ├── StdDev.R │ ├── StdDev.dml │ ├── SumScalarTest.dml │ ├── SumSq.R │ ├── SumSq.dml │ ├── SumTest.dml │ ├── TensorSum.dml │ ├── TraceInvalid1.dml │ ├── TraceInvalid2.dml │ ├── TraceScalarTest.dml │ ├── TraceTest.dml │ ├── Variance.R │ └── Variance.dml ├── append │ ├── AppendChainTest.R │ ├── AppendChainTest.dml │ ├── AppendMatrixTest.R │ ├── AppendMatrixTest.dml │ ├── AppendVectorTest.R │ ├── AppendVectorTest.dml │ ├── RBindCBindMatrixTest.R │ ├── RBindCBindMatrixTest.dml │ ├── RBindMatrixTest.R │ ├── RBindMatrixTest.dml │ ├── basic_string_append.dml │ └── loop_string_append.dml ├── async │ ├── BroadcastVar1.dml │ ├── BroadcastVar2.dml │ ├── CheckpointSharedOps1.dml │ ├── CheckpointSharedOps2.dml │ ├── CheckpointSharedOps3.dml │ ├── CostBasedOrder1.dml │ ├── LineageReuseSpark1.dml │ ├── LineageReuseSpark2.dml │ ├── LineageReuseSpark3.dml │ ├── LineageReuseSpark4.dml │ ├── LineageReuseSpark5.dml │ ├── LineageReuseSpark6.dml │ ├── LineageReuseSpark7.dml │ ├── LineageReuseSpark8.dml │ ├── MaxParallelizeOrder1.dml │ ├── MaxParallelizeOrder2.dml │ ├── MaxParallelizeOrder3.dml │ ├── MaxParallelizeOrder4.dml │ ├── MaxParallelizeOrder5.dml │ ├── PrefetchRDD1.dml │ ├── PrefetchRDD2.dml │ ├── PrefetchRDD3.dml │ ├── PrefetchRDD4.dml │ ├── PrefetchRDD5.dml │ ├── ReuseAsyncOp1.dml │ └── ReuseAsyncOp2.dml ├── binary │ ├── frame │ │ ├── frameComparisonTest.R │ │ ├── frameComparisonTest.dml │ │ ├── map.dml │ │ └── mapMargin.dml │ ├── matrix │ │ ├── AMultASpecial1Test.dml │ │ ├── AMultBSpecial2Test.dml │ │ ├── BinUaggChain_Col.R │ │ ├── BinUaggChain_Col.dml │ │ ├── CentralMoment.R │ │ ├── CentralMoment.dml │ │ ├── Covariance.R │ │ ├── Covariance.dml │ │ ├── DiagMatrixMultiplication.R │ │ ├── DiagMatrixMultiplication.dml │ │ ├── DiagMatrixMultiplicationTranspose.R │ │ ├── DiagMatrixMultiplicationTranspose.dml │ │ ├── ElementwiseAdditionMultiplicationTerm1.dml │ │ ├── ElementwiseAdditionMultiplicationTerm2.dml │ │ ├── ElementwiseAdditionMultiplicationTerm3.dml │ │ ├── ElementwiseAdditionTest.dml │ │ ├── ElementwiseAdditionVariableDimensionsTest.dml │ │ ├── ElementwiseAndTest.R │ │ ├── ElementwiseAndTest.dml │ │ ├── ElementwiseBitwAndTest.R │ │ ├── ElementwiseBitwAndTest.dml │ │ ├── ElementwiseBitwOrTest.R │ │ ├── ElementwiseBitwOrTest.dml │ │ ├── ElementwiseBitwShiftLTest.R │ │ ├── ElementwiseBitwShiftLTest.dml │ │ ├── ElementwiseBitwShiftRTest.R │ │ ├── ElementwiseBitwShiftRTest.dml │ │ ├── ElementwiseBitwXorTest.R │ │ ├── ElementwiseBitwXorTest.dml │ │ ├── ElementwiseDivisionTest.dml │ │ ├── ElementwiseDivisionVariableDimensionsTest.dml │ │ ├── ElementwiseModulusTest.dml │ │ ├── ElementwiseModulusVariableDimensionsTest.dml │ │ ├── ElementwiseMultiplicationTest.dml │ │ ├── ElementwiseMultiplicationVariableDimensionsTest.dml │ │ ├── ElementwiseNotTest.R │ │ ├── ElementwiseNotTest.dml │ │ ├── ElementwiseOrTest.R │ │ ├── ElementwiseOrTest.dml │ │ ├── ElementwiseSubtractionTest.dml │ │ ├── ElementwiseSubtractionVariableDimensionsTest.dml │ │ ├── ElementwiseXorTest.R │ │ ├── ElementwiseXorTest.dml │ │ ├── IQM.R │ │ ├── IQM.dml │ │ ├── MapMultChain.R │ │ ├── MapMultChain.dml │ │ ├── MapMultChainWeights.R │ │ ├── MapMultChainWeights.dml │ │ ├── MapMultChainWeights2.R │ │ ├── MapMultChainWeights2.dml │ │ ├── MapMultLimitTest.dml │ │ ├── MatrixMultiplicationTest.dml │ │ ├── MatrixVectorMultiplication.R │ │ ├── MatrixVectorMultiplication.dml │ │ ├── Median.R │ │ ├── Median.dml │ │ ├── MultiInputCbindTest.dml │ │ ├── OuterProduct.R │ │ ├── OuterProduct.dml │ │ ├── Quantile.R │ │ ├── Quantile.dml │ │ ├── QuantileBug.R │ │ ├── QuantileBug.dml │ │ ├── RowClassMeetTest.dml │ │ ├── ScalarAdditionTest.dml │ │ ├── ScalarDivisionTest.dml │ │ ├── ScalarModulusTest.dml │ │ ├── ScalarMultiplicationTest.dml │ │ ├── ScalarSubtractionTest.dml │ │ ├── TransposeMatrixMultiplication.R │ │ ├── TransposeMatrixMultiplication.dml │ │ ├── TransposeMatrixMultiplicationMinus.R │ │ ├── TransposeMatrixMultiplicationMinus.dml │ │ ├── TransposeSelfMatrixMultiplication.R │ │ ├── TransposeSelfMatrixMultiplication.dml │ │ ├── UaggOuterChain.R │ │ ├── UaggOuterChain.dml │ │ ├── UaggOuterChainColSums.R │ │ ├── UaggOuterChainColSums.dml │ │ ├── UaggOuterChainEquals.R │ │ ├── UaggOuterChainEquals.dml │ │ ├── UaggOuterChainEqualsColSums.R │ │ ├── UaggOuterChainEqualsColSums.dml │ │ ├── UaggOuterChainEqualsRowIndexMax.R │ │ ├── UaggOuterChainEqualsRowIndexMax.dml │ │ ├── UaggOuterChainEqualsRowIndexMin.R │ │ ├── UaggOuterChainEqualsRowIndexMin.dml │ │ ├── UaggOuterChainEqualsSums.R │ │ ├── UaggOuterChainEqualsSums.dml │ │ ├── UaggOuterChainGreater.R │ │ ├── UaggOuterChainGreater.dml │ │ ├── UaggOuterChainGreaterColSums.R │ │ ├── UaggOuterChainGreaterColSums.dml │ │ ├── UaggOuterChainGreaterEquals.R │ │ ├── UaggOuterChainGreaterEquals.dml │ │ ├── UaggOuterChainGreaterEqualsColSums.R │ │ ├── UaggOuterChainGreaterEqualsColSums.dml │ │ ├── UaggOuterChainGreaterEqualsRowIndexMax.R │ │ ├── UaggOuterChainGreaterEqualsRowIndexMax.dml │ │ ├── UaggOuterChainGreaterEqualsRowIndexMin.R │ │ ├── UaggOuterChainGreaterEqualsRowIndexMin.dml │ │ ├── UaggOuterChainGreaterEqualsSums.R │ │ ├── UaggOuterChainGreaterEqualsSums.dml │ │ ├── UaggOuterChainGreaterRowIndexMax.R │ │ ├── UaggOuterChainGreaterRowIndexMax.dml │ │ ├── UaggOuterChainGreaterRowIndexMin.R │ │ ├── UaggOuterChainGreaterRowIndexMin.dml │ │ ├── UaggOuterChainGreaterSums.R │ │ ├── UaggOuterChainGreaterSums.dml │ │ ├── UaggOuterChainLessEquals.R │ │ ├── UaggOuterChainLessEquals.dml │ │ ├── UaggOuterChainLessEqualsColSums.R │ │ ├── UaggOuterChainLessEqualsColSums.dml │ │ ├── UaggOuterChainLessEqualsRowIndexMax.R │ │ ├── UaggOuterChainLessEqualsRowIndexMax.dml │ │ ├── UaggOuterChainLessEqualsRowIndexMin.R │ │ ├── UaggOuterChainLessEqualsRowIndexMin.dml │ │ ├── UaggOuterChainLessEqualsSums.R │ │ ├── UaggOuterChainLessEqualsSums.dml │ │ ├── UaggOuterChainNotEquals.R │ │ ├── UaggOuterChainNotEquals.dml │ │ ├── UaggOuterChainNotEqualsColSums.R │ │ ├── UaggOuterChainNotEqualsColSums.dml │ │ ├── UaggOuterChainNotEqualsRowIndexMax.R │ │ ├── UaggOuterChainNotEqualsRowIndexMax.dml │ │ ├── UaggOuterChainNotEqualsRowIndexMin.R │ │ ├── UaggOuterChainNotEqualsRowIndexMin.dml │ │ ├── UaggOuterChainNotEqualsSums.R │ │ ├── UaggOuterChainNotEqualsSums.dml │ │ ├── UaggOuterChainRowIndexMax.R │ │ ├── UaggOuterChainRowIndexMax.dml │ │ ├── UaggOuterChainRowIndexMin.R │ │ ├── UaggOuterChainRowIndexMin.dml │ │ ├── UaggOuterChainSums.R │ │ ├── UaggOuterChainSums.dml │ │ ├── UltraSparseMatrixMultiplication.R │ │ ├── UltraSparseMatrixMultiplication.dml │ │ ├── UltraSparseMatrixMultiplication2.R │ │ ├── UltraSparseMatrixMultiplication2.dml │ │ ├── ZipMMTest.R │ │ └── ZipMMTest.dml │ ├── matrix_full_cellwise │ │ ├── FullMatrixCellwiseOperation_Addition.R │ │ ├── FullMatrixCellwiseOperation_Addition.dml │ │ ├── FullMatrixCellwiseOperation_Division.R │ │ ├── FullMatrixCellwiseOperation_Division.dml │ │ ├── FullMatrixCellwiseOperation_Multiplication.R │ │ ├── FullMatrixCellwiseOperation_Multiplication.dml │ │ ├── FullMatrixCellwiseOperation_Substraction.R │ │ ├── FullMatrixCellwiseOperation_Substraction.dml │ │ ├── FullMatrixVectorColCellwiseOperation_Addition.R │ │ ├── FullMatrixVectorColCellwiseOperation_Addition.dml │ │ ├── FullMatrixVectorColCellwiseOperation_Division.R │ │ ├── FullMatrixVectorColCellwiseOperation_Division.dml │ │ ├── FullMatrixVectorColCellwiseOperation_Multiplication.R │ │ ├── FullMatrixVectorColCellwiseOperation_Multiplication.dml │ │ ├── FullMatrixVectorColCellwiseOperation_Substraction.R │ │ ├── FullMatrixVectorColCellwiseOperation_Substraction.dml │ │ ├── FullMatrixVectorRowCellwiseOperation_Addition.R │ │ ├── FullMatrixVectorRowCellwiseOperation_Addition.dml │ │ ├── FullMatrixVectorRowCellwiseOperation_Division.R │ │ ├── FullMatrixVectorRowCellwiseOperation_Division.dml │ │ ├── FullMatrixVectorRowCellwiseOperation_Multiplication.R │ │ ├── FullMatrixVectorRowCellwiseOperation_Multiplication.dml │ │ ├── FullMatrixVectorRowCellwiseOperation_Substraction.R │ │ ├── FullMatrixVectorRowCellwiseOperation_Substraction.dml │ │ ├── FullSortedOuterCompare.R │ │ ├── FullSortedOuterCompare.dml │ │ ├── FullVectorVectorCellwiseOperation.R │ │ ├── FullVectorVectorCellwiseOperation.dml │ │ ├── Minus1MultTest.R │ │ └── Minus1MultTest.dml │ ├── matrix_full_other │ │ ├── FullDistributedMatrixMultiplication.R │ │ ├── FullDistributedMatrixMultiplication.dml │ │ ├── FullMatrixMultiplication.R │ │ ├── FullMatrixMultiplication.dml │ │ ├── FullMinMaxComparison.R │ │ ├── FullMinMaxComparison1.dml │ │ ├── FullMinMaxComparison2.dml │ │ ├── FullMinMaxComparison3.dml │ │ ├── FullMinMaxComparison4.dml │ │ ├── FullPower.R │ │ ├── FullPower.dml │ │ ├── IntegerDivision_div.R │ │ ├── IntegerDivision_div.dml │ │ ├── IntegerDivision_mod.R │ │ ├── IntegerDivision_mod.dml │ │ ├── LogicalMatrixTest.R │ │ ├── LogicalMatrixTest.dml │ │ ├── LogicalScalarLeftTest.R │ │ ├── LogicalScalarLeftTest.dml │ │ ├── LogicalScalarRightTest.R │ │ ├── LogicalScalarRightTest.dml │ │ ├── MatrixMultShortLhs.R │ │ ├── MatrixMultShortLhs.dml │ │ ├── TransposeSelfMatrixMultiplication1.R │ │ ├── TransposeSelfMatrixMultiplication1.dml │ │ ├── TransposeSelfMatrixMultiplication2.R │ │ └── TransposeSelfMatrixMultiplication2.dml │ ├── scalar │ │ ├── AdditionSingleTest.dml │ │ ├── AdditionTest.dml │ │ ├── AndTest.dml │ │ ├── DivisionSingleTest.dml │ │ ├── DivisionTest.dml │ │ ├── EqualTest.dml │ │ ├── FullStringComparisonTest.dml │ │ ├── GreaterThanOrEqualTest.dml │ │ ├── GreaterThanTest.dml │ │ ├── LessThanOrEqualTest.dml │ │ ├── LessThanTest.dml │ │ ├── LogarithmTest.dml │ │ ├── LogicalAndTest.R │ │ ├── LogicalAndTest.dml │ │ ├── LogicalOrTest.R │ │ ├── LogicalOrTest.dml │ │ ├── LogicalXorTest.R │ │ ├── LogicalXorTest.dml │ │ ├── ModulusSingleTest.dml │ │ ├── ModulusTest.dml │ │ ├── MultiplicationTest.dml │ │ ├── OrTest.dml │ │ ├── PowerTest.dml │ │ ├── SubtractionMultipleOperantsTest.dml │ │ ├── SubtractionTest.dml │ │ └── XorTest.dml │ └── tensor │ │ ├── ElementwiseAdditionTest.dml │ │ └── ElementwiseMultiplicationTest.dml ├── blocks │ ├── VariableAnalysis1Test.dml │ ├── VariablePassing1Test.dml │ ├── VariablePassing2Test.dml │ └── WhileTest.dml ├── builtin │ ├── BuiltinUNetExtrapolateTest.dml │ ├── ConnectedComponents.dml │ ├── GMM.R │ ├── GMM.dml │ ├── GMM_Predict.dml │ ├── GNMF.dml │ ├── GaussianClassifier.R │ ├── GaussianClassifier.dml │ ├── GaussianClassifierPrediction.dml │ ├── GridSearchLM.dml │ ├── GridSearchLM2.dml │ ├── GridSearchLMCV.dml │ ├── GridSearchMLogreg.dml │ ├── HyperbandLM.dml │ ├── HyperbandLM2.dml │ ├── HyperbandLM3.dml │ ├── MultiLogReg.dml │ ├── NaiveBayes.R │ ├── NaiveBayes.dml │ ├── NaiveBayesPredict.R │ ├── NaiveBayesPredict.dml │ ├── PNMF.dml │ ├── SQRTMatrix.dml │ ├── WoE_test.dml │ ├── abstainTest.dml │ ├── adasynRealData.dml │ ├── als.dml │ ├── alsPredict.dml │ ├── alsTopkPredict.dml │ ├── ampute.R │ ├── ampute.dml │ ├── arima.R │ ├── arima.dml │ ├── auc.dml │ ├── autoDiff.dml │ ├── autoencoder_2layer.R │ ├── autoencoder_2layer.dml │ ├── confusionMatrix.dml │ ├── cooccurrenceMatrix.dml │ ├── correct_typos.dml │ ├── correlationMatrix.R │ ├── correlationMatrix.dml │ ├── cox.dml │ ├── cspline.R │ ├── cspline.dml │ ├── cvlm.dml │ ├── date_processing.dml │ ├── dbscan.R │ ├── dbscan.dml │ ├── dbscanApply.R │ ├── dbscanApply.dml │ ├── decisionTree.dml │ ├── decisionTreePredict.dml │ ├── decisionTreeRealData1.dml │ ├── decisionTreeRealData2.dml │ ├── decisionTreeRealData3.dml │ ├── decisionTreeRealData4.dml │ ├── deepWalk.dml │ ├── denial_constraints.dml │ ├── differenceStatistics.dml │ ├── disguisedMissingValue.dml │ ├── dist.R │ ├── dist.dml │ ├── distributed_representation.dml │ ├── dummy1.dml │ ├── dummy2.dml │ ├── exponentialMovingAverage.dml │ ├── ffNeuralNetwork.dml │ ├── frequencyEncode_test.dml │ ├── functional_dependency.dml │ ├── garch.R │ ├── garch.dml │ ├── glmTest.R │ ├── glmTest.dml │ ├── glove.dml │ ├── handsOffClustering.dml │ ├── image_brightness.R │ ├── image_brightness.dml │ ├── image_crop.R │ ├── image_crop.dml │ ├── image_crop_linearized.dml │ ├── image_cutout.dml │ ├── image_cutout_linearized.dml │ ├── image_invert.dml │ ├── image_mirror.R │ ├── image_mirror.dml │ ├── image_mirror_linearized.dml │ ├── image_posterize.dml │ ├── image_posterize_linearized.dml │ ├── image_rotate.dml │ ├── image_rotate_linearized.dml │ ├── image_sample_pairing.dml │ ├── image_sample_pairing_linearized.dml │ ├── image_shear.dml │ ├── image_shear_linearized.dml │ ├── image_transform.R │ ├── image_transform.dml │ ├── image_transform_linearized.R │ ├── image_transform_linearized.dml │ ├── image_translate.R │ ├── image_translate.dml │ ├── image_translate_linearized.dml │ ├── impurityMeasures.dml │ ├── imputeByKNN.dml │ ├── imputeFD.dml │ ├── incSliceLine.dml │ ├── incSliceLineFull.dml │ ├── intersect.R │ ├── intersect.dml │ ├── km.dml │ ├── kmeans.dml │ ├── kmeansPredict.dml │ ├── knn.R │ ├── knn.dml │ ├── knnGraph.dml │ ├── knnbf.dml │ ├── knnbfReference.dml │ ├── l2svm.R │ ├── l2svm.dml │ ├── lasso.dml │ ├── leNetTest.dml │ ├── lm.R │ ├── lm.dml │ ├── lmCG.dml │ ├── lmDS.dml │ ├── lmpredict.R │ ├── lmpredict.dml │ ├── logsumexp.R │ ├── logsumexp.dml │ ├── matching_dependency.dml │ ├── matrix_profile.dml │ ├── mcc.R │ ├── mcc.dml │ ├── meanImputation.R │ ├── meanImputation.dml │ ├── medianImputation.R │ ├── medianImputation.dml │ ├── mice.R │ ├── mice.dml │ ├── multiLogRegPredict.R │ ├── multiLogRegPredict.dml │ ├── multipleBuiltins.R │ ├── multipleBuiltins.dml │ ├── multisvm.R │ ├── multisvm.dml │ ├── multisvmPredict.dml │ ├── na_locfTest.R │ ├── na_locfTest.dml │ ├── normalize.R │ ├── normalize.dml │ ├── normalizeAll.dml │ ├── normalizeListEval.dml │ ├── normalizeListEvalAll.dml │ ├── outlier.R │ ├── outlier.dml │ ├── outlierByArima.R │ ├── outlierByArima.dml │ ├── outlier_by_IQR.dml │ ├── outlier_by_sd.dml │ ├── pca.dml │ ├── pca2.dml │ ├── pca4.dml │ ├── pca5.dml │ ├── porterStemmerTest.dml │ ├── ppca.dml │ ├── quantizeByCluster.dml │ ├── raGroupby.dml │ ├── raJoin.dml │ ├── raSelection.R │ ├── raSelection.dml │ ├── randomForestTest.dml │ ├── residencymatch.dml │ ├── scale.R │ ├── scale.dml │ ├── ses.dml │ ├── setdiff.R │ ├── setdiff.dml │ ├── shapExplainerComponent.dml │ ├── shapExplainerUnit.dml │ ├── sherlock.dml │ ├── sherlockPredict.dml │ ├── shortestPathTest.dml │ ├── sigmoid.R │ ├── sigmoid.dml │ ├── sliceLineRealData.dml │ ├── slicefinder.R │ ├── slicefinder.dml │ ├── slicefinderPrep.dml │ ├── smote.dml │ ├── softmax1.dml │ ├── softmax2.dml │ ├── split.dml │ ├── splitBalanced.dml │ ├── stablemarriage.dml │ ├── statsNATest.R │ ├── statsNATest.dml │ ├── steplm.R │ ├── steplm.dml │ ├── stratstats.R │ ├── stratstats.dml │ ├── symmetricDifference.R │ ├── symmetricDifference.dml │ ├── tSNE.dml │ ├── toOneHot.dml │ ├── tomeklink.R │ ├── tomeklink.dml │ ├── underSamplingTest.dml │ ├── union.R │ ├── union.dml │ ├── wer.dml │ ├── winsorize.R │ ├── winsorize.dml │ ├── winsorizeFoo.dml │ ├── winsorizeMain.dml │ ├── xgboost_classification.dml │ ├── xgboost_predict_classification.dml │ ├── xgboost_predict_regression.dml │ └── xgboost_regression.dml ├── caching │ ├── BufferpoolLeak.dml │ ├── BufferpoolShallow.dml │ ├── UMMTest1.dml │ └── export.dml ├── codegen │ ├── CompressedCellwiseMain.R │ ├── CompressedCellwiseMain.dml │ ├── CompressedCellwiseSide.R │ ├── CompressedCellwiseSide.dml │ ├── CompressedCellwiseSumSeq.R │ ├── CompressedCellwiseSumSeq.dml │ ├── CompressedCellwiseSumSq.R │ ├── CompressedCellwiseSumSq.dml │ ├── CompressedMultiAggregateMain.R │ ├── CompressedMultiAggregateMain.dml │ ├── CompressedMultiAggregateSide.R │ ├── CompressedMultiAggregateSide.dml │ ├── CompressedOuterProductMain.R │ ├── CompressedOuterProductMain.dml │ ├── CompressedRowAggregateMain.R │ ├── CompressedRowAggregateMain.dml │ ├── DAGcellwisetmpl1.R │ ├── DAGcellwisetmpl1.dml │ ├── DAGcellwisetmpl2.R │ ├── DAGcellwisetmpl2.dml │ ├── DAGcellwisetmpl3.R │ ├── DAGcellwisetmpl3.dml │ ├── RowConv2DTest.R │ ├── RowConv2DTest.dml │ ├── SparseSideInput1.R │ ├── SparseSideInput1.dml │ ├── SparseSideInput2.R │ ├── SparseSideInput2.dml │ ├── SparseSideInput3.R │ ├── SparseSideInput3.dml │ ├── SparseSideInput4.R │ ├── SparseSideInput4.dml │ ├── SumAdditionChain.R │ ├── SumAdditionChain.dml │ ├── SumProductChain.R │ ├── SumProductChain.dml │ ├── SystemDS-config-codegen-compress.xml │ ├── SystemDS-config-codegen.xml │ ├── SystemDS-config-codegen6.xml │ ├── cellwisetmpl1.R │ ├── cellwisetmpl1.dml │ ├── cellwisetmpl10.R │ ├── cellwisetmpl10.dml │ ├── cellwisetmpl11.R │ ├── cellwisetmpl11.dml │ ├── cellwisetmpl12.R │ ├── cellwisetmpl12.dml │ ├── cellwisetmpl13.R │ ├── cellwisetmpl13.dml │ ├── cellwisetmpl14.R │ ├── cellwisetmpl14.dml │ ├── cellwisetmpl15.R │ ├── cellwisetmpl15.dml │ ├── cellwisetmpl16.R │ ├── cellwisetmpl16.dml │ ├── cellwisetmpl17.R │ ├── cellwisetmpl17.dml │ ├── cellwisetmpl18.R │ ├── cellwisetmpl18.dml │ ├── cellwisetmpl19.R │ ├── cellwisetmpl19.dml │ ├── cellwisetmpl2.R │ ├── cellwisetmpl2.dml │ ├── cellwisetmpl20.R │ ├── cellwisetmpl20.dml │ ├── cellwisetmpl21.R │ ├── cellwisetmpl21.dml │ ├── cellwisetmpl22.R │ ├── cellwisetmpl22.dml │ ├── cellwisetmpl23.R │ ├── cellwisetmpl23.dml │ ├── cellwisetmpl24.R │ ├── cellwisetmpl24.dml │ ├── cellwisetmpl25.R │ ├── cellwisetmpl25.dml │ ├── cellwisetmpl26.R │ ├── cellwisetmpl26.dml │ ├── cellwisetmpl27.R │ ├── cellwisetmpl27.dml │ ├── cellwisetmpl28.R │ ├── cellwisetmpl28.dml │ ├── cellwisetmpl29.R │ ├── cellwisetmpl29.dml │ ├── cellwisetmpl3.R │ ├── cellwisetmpl3.dml │ ├── cellwisetmpl30.R │ ├── cellwisetmpl30.dml │ ├── cellwisetmpl31.R │ ├── cellwisetmpl31.dml │ ├── cellwisetmpl4.R │ ├── cellwisetmpl4.dml │ ├── cellwisetmpl5.R │ ├── cellwisetmpl5.dml │ ├── cellwisetmpl6.R │ ├── cellwisetmpl6.dml │ ├── cellwisetmpl7.R │ ├── cellwisetmpl7.dml │ ├── cellwisetmpl8.R │ ├── cellwisetmpl8.dml │ ├── cellwisetmpl9.R │ ├── cellwisetmpl9.dml │ ├── codegenIntegration.R │ ├── codegenIntegration.dml │ ├── miscPattern1.R │ ├── miscPattern1.dml │ ├── miscPattern2.R │ ├── miscPattern2.dml │ ├── miscPattern3.R │ ├── miscPattern3.dml │ ├── miscPattern4.R │ ├── miscPattern4.dml │ ├── multiAggPattern1.R │ ├── multiAggPattern1.dml │ ├── multiAggPattern2.R │ ├── multiAggPattern2.dml │ ├── multiAggPattern3.R │ ├── multiAggPattern3.dml │ ├── multiAggPattern4.R │ ├── multiAggPattern4.dml │ ├── multiAggPattern5.R │ ├── multiAggPattern5.dml │ ├── multiAggPattern6.R │ ├── multiAggPattern6.dml │ ├── multiAggPattern7.R │ ├── multiAggPattern7.dml │ ├── rmseDist.R │ ├── rmseDist.dml │ ├── rmseDist2.R │ ├── rmseDist2.dml │ ├── rowAggPattern1.R │ ├── rowAggPattern1.dml │ ├── rowAggPattern10.R │ ├── rowAggPattern10.dml │ ├── rowAggPattern11.R │ ├── rowAggPattern11.dml │ ├── rowAggPattern12.R │ ├── rowAggPattern12.dml │ ├── rowAggPattern13.R │ ├── rowAggPattern13.dml │ ├── rowAggPattern14.R │ ├── rowAggPattern14.dml │ ├── rowAggPattern15.R │ ├── rowAggPattern15.dml │ ├── rowAggPattern16.R │ ├── rowAggPattern16.dml │ ├── rowAggPattern17.R │ ├── rowAggPattern17.dml │ ├── rowAggPattern18.R │ ├── rowAggPattern18.dml │ ├── rowAggPattern19.R │ ├── rowAggPattern19.dml │ ├── rowAggPattern2.R │ ├── rowAggPattern2.dml │ ├── rowAggPattern20.R │ ├── rowAggPattern20.dml │ ├── rowAggPattern21.R │ ├── rowAggPattern21.dml │ ├── rowAggPattern22.R │ ├── rowAggPattern22.dml │ ├── rowAggPattern23.R │ ├── rowAggPattern23.dml │ ├── rowAggPattern24.R │ ├── rowAggPattern24.dml │ ├── rowAggPattern25.R │ ├── rowAggPattern25.dml │ ├── rowAggPattern26.R │ ├── rowAggPattern26.dml │ ├── rowAggPattern27.R │ ├── rowAggPattern27.dml │ ├── rowAggPattern28.R │ ├── rowAggPattern28.dml │ ├── rowAggPattern29.R │ ├── rowAggPattern29.dml │ ├── rowAggPattern3.R │ ├── rowAggPattern3.dml │ ├── rowAggPattern30.R │ ├── rowAggPattern30.dml │ ├── rowAggPattern31.R │ ├── rowAggPattern31.dml │ ├── rowAggPattern32.R │ ├── rowAggPattern32.dml │ ├── rowAggPattern33.R │ ├── rowAggPattern33.dml │ ├── rowAggPattern34.R │ ├── rowAggPattern34.dml │ ├── rowAggPattern35.R │ ├── rowAggPattern35.dml │ ├── rowAggPattern36.R │ ├── rowAggPattern36.dml │ ├── rowAggPattern37.R │ ├── rowAggPattern37.dml │ ├── rowAggPattern38.R │ ├── rowAggPattern38.dml │ ├── rowAggPattern39.R │ ├── rowAggPattern39.dml │ ├── rowAggPattern4.R │ ├── rowAggPattern4.dml │ ├── rowAggPattern40.R │ ├── rowAggPattern40.dml │ ├── rowAggPattern41.R │ ├── rowAggPattern41.dml │ ├── rowAggPattern42.R │ ├── rowAggPattern42.dml │ ├── rowAggPattern43.R │ ├── rowAggPattern43.dml │ ├── rowAggPattern44.R │ ├── rowAggPattern44.dml │ ├── rowAggPattern45.R │ ├── rowAggPattern45.dml │ ├── rowAggPattern46.R │ ├── rowAggPattern46.dml │ ├── rowAggPattern47.R │ ├── rowAggPattern47.dml │ ├── rowAggPattern48.R │ ├── rowAggPattern48.dml │ ├── rowAggPattern49.R │ ├── rowAggPattern49.dml │ ├── rowAggPattern5.R │ ├── rowAggPattern5.dml │ ├── rowAggPattern50.R │ ├── rowAggPattern50.dml │ ├── rowAggPattern6.R │ ├── rowAggPattern6.dml │ ├── rowAggPattern7.R │ ├── rowAggPattern7.dml │ ├── rowAggPattern8.R │ ├── rowAggPattern8.dml │ ├── rowAggPattern9.R │ ├── rowAggPattern9.dml │ ├── rowComparisonEq.R │ ├── rowComparisonEq.dml │ ├── rowComparisonGt.R │ ├── rowComparisonGt.dml │ ├── rowComparisonGte.R │ ├── rowComparisonGte.dml │ ├── rowComparisonLt.R │ ├── rowComparisonLt.dml │ ├── rowComparisonLte.R │ ├── rowComparisonLte.dml │ ├── rowComparisonNeq.R │ ├── rowComparisonNeq.dml │ ├── wSparseUnsafeOuterProduct.R │ ├── wSparseUnsafeOuterProduct.dml │ ├── wcemm.R │ ├── wcemm.dml │ ├── wdivmm.R │ ├── wdivmm.dml │ ├── wdivmmNeq.R │ ├── wdivmmNeq.dml │ ├── wdivmmRight.R │ ├── wdivmmRight.dml │ ├── wdivmmRightNotranspose.R │ ├── wdivmmRightNotranspose.dml │ ├── wdivmmTransposeOut.R │ ├── wdivmmTransposeOut.dml │ ├── wdivmmbasic.R │ ├── wdivmmbasic.dml │ ├── wsigmoid.R │ └── wsigmoid.dml ├── codegenalg │ ├── Algorithm_AutoEncoder.R │ ├── Algorithm_AutoEncoder.dml │ ├── Algorithm_GLM.R │ ├── Algorithm_KMeans.dml │ ├── Algorithm_L2SVM.R │ ├── Algorithm_L2SVM.dml │ ├── Algorithm_LinregCG.R │ ├── Algorithm_LinregCG.dml │ ├── Algorithm_MLogreg.R │ ├── Algorithm_MLogreg.dml │ ├── Algorithm_MSVM.R │ ├── Algorithm_MSVM.dml │ ├── Algorithm_PCA.R │ ├── Algorithm_PCA.dml │ ├── Algorithm_PNMF.R │ ├── Algorithm_PageRank.R │ ├── Algorithm_StepLM.dml │ ├── SystemDS-config-codegen-fuse-all.xml │ ├── SystemDS-config-codegen-fuse-no-redundancy.xml │ └── SystemDS-config-codegen.xml ├── compress │ ├── SystemDS-config-compress.xml │ ├── compressInstruction │ │ ├── compress_01.dml │ │ ├── compress_02.dml │ │ ├── compress_07.dml │ │ └── compress_07_noCompress.dml │ ├── compressInstructionRewrite │ │ ├── SystemDS-config-compress-cost.xml │ │ ├── compress_01.dml │ │ ├── compress_02.dml │ │ ├── compress_03.dml │ │ ├── compress_04.dml │ │ ├── compress_05.dml │ │ ├── compress_06.dml │ │ ├── compress_07.dml │ │ ├── compress_08.dml │ │ ├── compress_09.dml │ │ └── compress_10.dml │ ├── compressScale │ │ ├── SystemDS-config-compress-cost-DDC.xml │ │ ├── SystemDS-config-compress-cost-OLE.xml │ │ ├── SystemDS-config-compress-cost-RLE.xml │ │ ├── SystemDS-config-compress-cost.xml │ │ ├── SystemDS-config-default.xml │ │ └── scale.dml │ ├── compress_ewbm_left.dml │ ├── compress_ewbm_right.dml │ ├── compress_ewbp.dml │ ├── compress_mml_sum.dml │ ├── compress_mmr_sum.dml │ ├── compress_mmr_sum_plus.dml │ ├── compress_mmr_sum_plus_2.dml │ ├── compress_plus.dml │ ├── compress_plus_mm.dml │ ├── compress_plus_mm_ewbm_sum.dml │ ├── compress_row_min.dml │ ├── compress_sum.dml │ ├── compress_transpose.dml │ ├── cost │ │ ├── SystemDS-config-compress-cost-lossy.xml │ │ └── SystemDS-config-compress-cost.xml │ ├── densifying │ │ ├── compress_01.dml │ │ ├── compress_02.dml │ │ ├── compress_pca.dml │ │ ├── compress_scale.dml │ │ ├── compress_seq.dml │ │ ├── compress_submean.dml │ │ ├── large.ijv │ │ ├── large.ijv.mtd │ │ ├── small.ijv │ │ └── small.ijv.mtd │ ├── force │ │ ├── SystemDS-config-compress-lossy.xml │ │ └── SystemDS-config-compress.xml │ ├── instructionsSpark │ │ ├── compress_mm.dml │ │ └── compress_sum.dml │ ├── local │ │ ├── SystemDS-config.xml │ │ ├── SystemDS-no-compress-config.xml │ │ └── local.dml │ ├── matrixByBin │ │ └── compressByBins.dml │ ├── reshape │ │ └── CompressedReshapeTest │ │ │ ├── 01.dml │ │ │ ├── 02.dml │ │ │ └── 03.dml │ ├── table │ │ └── CompressedTableOverwriteTest │ │ │ └── 01.dml │ ├── wordembedding │ │ └── 01.dml │ └── workload │ │ ├── SystemDS-config-compress-workload.xml │ │ ├── WorkloadAnalysisKmeans.dml │ │ ├── WorkloadAnalysisL2SVM.dml │ │ ├── WorkloadAnalysisLeftMultLoop.dml │ │ ├── WorkloadAnalysisLmCG.dml │ │ ├── WorkloadAnalysisLmDS.dml │ │ ├── WorkloadAnalysisMLogReg.dml │ │ ├── WorkloadAnalysisPCA.dml │ │ ├── WorkloadAnalysisRightMultLoop.dml │ │ └── WorkloadAnalysisSliceLine.dml ├── countDistinct │ ├── countDistinctCol.dml │ ├── countDistinctColAlias.dml │ ├── countDistinctColAliasException.dml │ ├── countDistinctRow.dml │ ├── countDistinctRowAlias.dml │ ├── countDistinctRowAliasException.dml │ ├── countDistinctRowCol.dml │ └── countDistinctRowColParameterized.dml ├── countDistinctApprox │ ├── countDistinctApproxCol.dml │ ├── countDistinctApproxColAlias.dml │ ├── countDistinctApproxColAliasException.dml │ ├── countDistinctApproxRow.dml │ ├── countDistinctApproxRowAlias.dml │ ├── countDistinctApproxRowAliasException.dml │ ├── countDistinctApproxRowCol.dml │ └── countDistinctApproxRowColParameterized.dml ├── data │ ├── CopyVariableTest.dml │ ├── MatrixMarketFormat.R │ ├── MatrixMarketFormat.dml │ ├── MultipleReblockTest.dml │ ├── NoRenameTest1.dml │ ├── NoRenameTest2.dml │ ├── RandCounterBasedNormal.dml │ ├── RandCounterBasedUniform.dml │ ├── RandRuntimePlatformTest.dml │ ├── RandRuntimePlatformTestPoisson.dml │ ├── RandScalarTest.dml │ ├── RandTensorTest.dml │ ├── RandTest1.dml │ ├── RandTest2.dml │ ├── RandTest3.dml │ ├── RandTest4.dml │ ├── RandTest5.dml │ ├── RandVarMinMax.R │ ├── RandVarMinMax1.dml │ ├── RandVarMinMax2.dml │ ├── RandVarMinMax3.dml │ ├── RandVarSeed.dml │ ├── ReadMMIndexTest.dml │ ├── ReadMMTest.dml │ ├── ReblockTest.dml │ ├── Sample2.dml │ ├── Sample3.dml │ ├── Sample4.dml │ ├── SampleSeed.dml │ ├── Sequence.R │ ├── Sequence.dml │ ├── Sequence2inputs.R │ ├── Sequence2inputs.dml │ ├── SingleReblockTest.dml │ ├── SqlTest.dml │ ├── StrInit.dml │ ├── TensorConstruction.dml │ ├── WriteMMComplexTest.dml │ ├── WriteMMTest.dml │ ├── WriteTest.dml │ ├── WriteTwiceTest.dml │ ├── ZeroDimDataRead.dml │ ├── ZeroDimDataWrite.dml │ └── time.dml ├── dmlscript │ ├── DMLScriptTest.dml │ └── SystemML-config.xml ├── einsum │ └── SystemDS-config-codegen.xml ├── federated │ ├── FederatedAlsCGTest.dml │ ├── FederatedAlsCGTestReference.dml │ ├── FederatedBinaryMatrixTest.dml │ ├── FederatedBinaryMatrixTestReference.dml │ ├── FederatedBivarTest.dml │ ├── FederatedBivarTestReference.dml │ ├── FederatedBroadcastTest.dml │ ├── FederatedBroadcastTestReference.dml │ ├── FederatedCentralMomentTest.dml │ ├── FederatedCentralMomentTestReference.dml │ ├── FederatedCentralMomentWeightedTest.dml │ ├── FederatedCentralMomentWeightedTestReference.dml │ ├── FederatedCorTest.dml │ ├── FederatedCorTestReference.dml │ ├── FederatedCovarianceAlignedTest.dml │ ├── FederatedCovarianceAlignedTestReference.dml │ ├── FederatedCovarianceAlignedWeightedTest.dml │ ├── FederatedCovarianceAlignedWeightedTestReference.dml │ ├── FederatedCovarianceAllAlignedWeightedTest.dml │ ├── FederatedCovarianceAllAlignedWeightedTestReference.dml │ ├── FederatedCovarianceTest.dml │ ├── FederatedCovarianceTestReference.dml │ ├── FederatedCovarianceWeightedTest.dml │ ├── FederatedCovarianceWeightedTestReference.dml │ ├── FederatedCtableFedOutput.dml │ ├── FederatedCtableFedOutputReference.dml │ ├── FederatedCtableSeqVecFedOut.dml │ ├── FederatedCtableSeqVecFedOutReference.dml │ ├── FederatedCtableTest.dml │ ├── FederatedCtableTestReference.dml │ ├── FederatedFrameConstructionTest.dml │ ├── FederatedFrameConstructionTestReference.dml │ ├── FederatedFrameMapTest.dml │ ├── FederatedFrameMapTestReference.dml │ ├── FederatedGLMTest.dml │ ├── FederatedGLMTestReference.dml │ ├── FederatedIfelseAlignedTest.dml │ ├── FederatedIfelseAlignedTestReference.dml │ ├── FederatedIfelseSingleMatrixInputTest.dml │ ├── FederatedIfelseSingleMatrixInputTestReference.dml │ ├── FederatedIfelseTest.dml │ ├── FederatedIfelseTestReference.dml │ ├── FederatedKmeansTest.dml │ ├── FederatedKmeansTestReference.dml │ ├── FederatedL2SVMTest.dml │ ├── FederatedL2SVMTestReference.dml │ ├── FederatedLeftIndexFrameFullTest.dml │ ├── FederatedLeftIndexFrameFullTestReference.dml │ ├── FederatedLeftIndexFullTest.dml │ ├── FederatedLeftIndexFullTestReference.dml │ ├── FederatedLeftIndexScalarTest.dml │ ├── FederatedLeftIndexScalarTestReference.dml │ ├── FederatedLmPipeline.dml │ ├── FederatedLmPipeline4Workers.dml │ ├── FederatedLmPipeline4WorkersReference.dml │ ├── FederatedLmPipelineReference.dml │ ├── FederatedLogRegTest.dml │ ├── FederatedLogRegTestReference.dml │ ├── FederatedMMChainTest.dml │ ├── FederatedMMChainTestReference.dml │ ├── FederatedMMChainWeights2Test.dml │ ├── FederatedMMChainWeights2TestReference.dml │ ├── FederatedMMChainWeightsTest.dml │ ├── FederatedMMChainWeightsTestReference.dml │ ├── FederatedMSVMTest.dml │ ├── FederatedMSVMTestReference.dml │ ├── FederatedMatrixConstructionTest.dml │ ├── FederatedMatrixConstructionTestReference.dml │ ├── FederatedMisAlignedTest.dml │ ├── FederatedMisAlignedTestReference.dml │ ├── FederatedMultiplyTest.dml │ ├── FederatedMultiplyTestReference.dml │ ├── FederatedPCATest.dml │ ├── FederatedPCATestReference.dml │ ├── FederatedPNMFTest.dml │ ├── FederatedPNMFTestReference.dml │ ├── FederatedProdTest.dml │ ├── FederatedProdTestReference.dml │ ├── FederatedRCBindTest.dml │ ├── FederatedRCBindTestReference.dml │ ├── FederatedRdiagTest.dml │ ├── FederatedRdiagTestReference.dml │ ├── FederatedRemoveEmptyTest.dml │ ├── FederatedRemoveEmptyTestReference.dml │ ├── FederatedReplaceTest.dml │ ├── FederatedReplaceTestReference.dml │ ├── FederatedReshapeTest.dml │ ├── FederatedReshapeTestReference.dml │ ├── FederatedRevTest.dml │ ├── FederatedRevTestReference.dml │ ├── FederatedRightIndexFrameFullTest.dml │ ├── FederatedRightIndexFrameFullTestReference.dml │ ├── FederatedRightIndexFullTest.dml │ ├── FederatedRightIndexFullTestReference.dml │ ├── FederatedRightIndexLeftTest.dml │ ├── FederatedRightIndexLeftTestReference.dml │ ├── FederatedRightIndexRightTest.dml │ ├── FederatedRightIndexRightTestReference.dml │ ├── FederatedRollTest.dml │ ├── FederatedRollTestReference.dml │ ├── FederatedRowIndexTest.dml │ ├── FederatedRowIndexTestReference.dml │ ├── FederatedSplitTest.dml │ ├── FederatedSplitTestReference.dml │ ├── FederatedSumTest.dml │ ├── FederatedSumTestReference.dml │ ├── FederatedTokenizeTest.dml │ ├── FederatedTokenizeTestReference.dml │ ├── FederatedTransferLocalDataTest.dml │ ├── FederatedTransferLocalDataTestReference.dml │ ├── FederatedTriTest.dml │ ├── FederatedTriTestReference.dml │ ├── FederatedUnivarTest.dml │ ├── FederatedUnivarTestReference.dml │ ├── FederatedVarTest.dml │ ├── FederatedVarTestReference.dml │ ├── FederatedYL2SVMTest.dml │ ├── FederatedYL2SVMTest2.dml │ ├── FederatedYL2SVMTest2Reference.dml │ ├── FederatedYL2SVMTestReference.dml │ ├── aggregate │ │ ├── FederatedColMaxTest.dml │ │ ├── FederatedColMaxTestReference.dml │ │ ├── FederatedColMeanTest.dml │ │ ├── FederatedColMeanTestReference.dml │ │ ├── FederatedColMinTest.dml │ │ ├── FederatedColMinTestReference.dml │ │ ├── FederatedColProdTest.R │ │ ├── FederatedColProdTest.dml │ │ ├── FederatedColProdTestReference.dml │ │ ├── FederatedColSumTest.dml │ │ ├── FederatedColSumTestReference.dml │ │ ├── FederatedColVarTest.dml │ │ ├── FederatedColVarTestReference.dml │ │ ├── FederatedMMTest.dml │ │ ├── FederatedMMTestReference.dml │ │ ├── FederatedMaxTest.dml │ │ ├── FederatedMaxTestReference.dml │ │ ├── FederatedMeanTest.dml │ │ ├── FederatedMeanTestReference.dml │ │ ├── FederatedMinTest.dml │ │ ├── FederatedMinTestReference.dml │ │ ├── FederatedRowMaxTest.dml │ │ ├── FederatedRowMaxTestReference.dml │ │ ├── FederatedRowMeanTest.dml │ │ ├── FederatedRowMeanTestReference.dml │ │ ├── FederatedRowMinTest.dml │ │ ├── FederatedRowMinTestReference.dml │ │ ├── FederatedRowProdTest.dml │ │ ├── FederatedRowProdTestReference.dml │ │ ├── FederatedRowSumTest.dml │ │ ├── FederatedRowSumTestReference.dml │ │ ├── FederatedRowVarTest.dml │ │ ├── FederatedRowVarTestReference.dml │ │ ├── FederatedSumTest.dml │ │ ├── FederatedSumTestReference.dml │ │ ├── FederatedTernaryColSumTest.dml │ │ ├── FederatedTernaryColSumTestReference.dml │ │ ├── FederatedTernarySumTest.dml │ │ ├── FederatedTernarySumTestReference.dml │ │ ├── FederatedVarTest.dml │ │ └── FederatedVarTestReference.dml │ ├── binary │ │ ├── FederatedLogicalMatrixMatrixTest.dml │ │ ├── FederatedLogicalMatrixMatrixTestReference.dml │ │ ├── FederatedLogicalMatrixScalarTest.dml │ │ └── FederatedLogicalMatrixScalarTestReference.dml │ ├── codegen │ │ ├── FederatedCellwiseTmplTest.dml │ │ ├── FederatedCellwiseTmplTestReference.dml │ │ ├── FederatedCodegenMultipleFedMOTest.dml │ │ ├── FederatedCodegenMultipleFedMOTestReference.dml │ │ ├── FederatedMultiAggTmplTest.dml │ │ ├── FederatedMultiAggTmplTestReference.dml │ │ ├── FederatedOuterProductTmplTest.dml │ │ ├── FederatedOuterProductTmplTestReference.dml │ │ ├── FederatedRowwiseTmplTest.dml │ │ ├── FederatedRowwiseTmplTestReference.dml │ │ └── SystemDS-config-codegen.xml │ ├── cumulative │ │ ├── FederatedCummaxTest.dml │ │ ├── FederatedCummaxTestReference.dml │ │ ├── FederatedCumminTest.dml │ │ ├── FederatedCumminTestReference.dml │ │ ├── FederatedCumprodTest.dml │ │ ├── FederatedCumprodTestReference.dml │ │ ├── FederatedCumsumTest.dml │ │ ├── FederatedCumsumTestReference.dml │ │ ├── FederatedCumsumprodTest.dml │ │ └── FederatedCumsumprodTestReference.dml │ ├── io │ │ ├── FederatedCompressionTest.dml │ │ ├── FederatedCompressionTest1Reference.dml │ │ ├── FederatedReaderTest.dml │ │ ├── FederatedReaderTest1Reference.dml │ │ ├── FederatedReaderTestCol2Reference.dml │ │ ├── FederatedReaderTestCreate.dml │ │ ├── FederatedReaderTestRow2Reference.dml │ │ ├── FederatedReference.dml │ │ ├── FederatedSparsityPropagationTest.dml │ │ ├── FederatedSparsityPropagationTestReference.dml │ │ ├── SSLConfig.xml │ │ └── config │ │ │ ├── FastLZCompressionConfig.xml │ │ │ ├── LZ4CompressionConfig.xml │ │ │ ├── LZFCompressionConfig.xml │ │ │ ├── NoneCompressionConfig.xml │ │ │ ├── SnappyCompressionConfig.xml │ │ │ └── ZlibCompressionConfig.xml │ ├── matrix_scalar │ │ ├── FederatedMatrixAdditionScalar.dml │ │ ├── FederatedMatrixMultiplicationScalar.dml │ │ ├── FederatedMatrixSubtractionScalar.dml │ │ ├── FederatedScalarAdditionMatrix.dml │ │ ├── FederatedScalarMultiplicationMatrix.dml │ │ └── FederatedScalarSubtractionMatrix.dml │ ├── multitenant │ │ ├── FederatedLineageTraceReuseTest.dml │ │ ├── FederatedMultiTenantTest.dml │ │ ├── FederatedReuseReadTest.dml │ │ ├── FederatedReuseSlicesTest.dml │ │ └── FederatedSerializationReuseTest.dml │ ├── paramserv │ │ ├── AvgModelFederatedParamservTest.dml │ │ ├── CNN.dml │ │ ├── CNNModelAvg.dml │ │ ├── CNNwithNbatches.dml │ │ ├── EncryptedFederatedParamservTest.dml │ │ ├── FederatedParamservTest.dml │ │ ├── FederatedParamservTestwithNbatches.dml │ │ ├── NbatchesFederatedParamservTest.dml │ │ ├── TwoNN.dml │ │ ├── TwoNNModelAvg.dml │ │ └── TwoNNwithNbatches.dml │ ├── primitives │ │ ├── FederatedCastToFrameTest.dml │ │ ├── FederatedCastToFrameTestReference.dml │ │ ├── FederatedCastToMatrixTest.dml │ │ └── FederatedCastToMatrixTestReference.dml │ ├── privacy │ │ ├── FederatedPlanCostEnumeratorTest1.dml │ │ ├── FederatedPlanCostEnumeratorTest10.dml │ │ ├── FederatedPlanCostEnumeratorTest11.dml │ │ ├── FederatedPlanCostEnumeratorTest12.dml │ │ ├── FederatedPlanCostEnumeratorTest13.dml │ │ ├── FederatedPlanCostEnumeratorTest2.dml │ │ ├── FederatedPlanCostEnumeratorTest3.dml │ │ ├── FederatedPlanCostEnumeratorTest4.dml │ │ ├── FederatedPlanCostEnumeratorTest5.dml │ │ ├── FederatedPlanCostEnumeratorTest6.dml │ │ ├── FederatedPlanCostEnumeratorTest7.dml │ │ ├── FederatedPlanCostEnumeratorTest8.dml │ │ └── FederatedPlanCostEnumeratorTest9.dml │ ├── quantile │ │ ├── FederatedIQRTest.dml │ │ ├── FederatedIQRTestReference.dml │ │ ├── FederatedIQRWeightsTest.dml │ │ ├── FederatedIQRWeightsTestReference.dml │ │ ├── FederatedMedianTest.dml │ │ ├── FederatedMedianTestReference.dml │ │ ├── FederatedMedianWeightsTest.dml │ │ ├── FederatedMedianWeightsTestReference.dml │ │ ├── FederatedQuantileTest.dml │ │ ├── FederatedQuantileTestReference.dml │ │ ├── FederatedQuantileWeightsTest.dml │ │ ├── FederatedQuantileWeightsTestReference.dml │ │ ├── FederatedQuantilesTest.dml │ │ ├── FederatedQuantilesTestReference.dml │ │ ├── FederatedQuantilesWeightsTest.dml │ │ └── FederatedQuantilesWeightsTestReference.dml │ └── quaternary │ │ ├── FederatedWCeMMEpsTest.dml │ │ ├── FederatedWCeMMEpsTestReference.dml │ │ ├── FederatedWCeMMTest.dml │ │ ├── FederatedWCeMMTestReference.dml │ │ ├── FederatedWDivMMBasicMultTest.dml │ │ ├── FederatedWDivMMBasicMultTestReference.dml │ │ ├── FederatedWDivMMLeftEps2Test.dml │ │ ├── FederatedWDivMMLeftEps2TestReference.dml │ │ ├── FederatedWDivMMLeftEps3Test.dml │ │ ├── FederatedWDivMMLeftEps3TestReference.dml │ │ ├── FederatedWDivMMLeftEpsTest.dml │ │ ├── FederatedWDivMMLeftEpsTestReference.dml │ │ ├── FederatedWDivMMLeftMultMinus4Test.dml │ │ ├── FederatedWDivMMLeftMultMinus4TestReference.dml │ │ ├── FederatedWDivMMLeftMultMinusTest.dml │ │ ├── FederatedWDivMMLeftMultMinusTestReference.dml │ │ ├── FederatedWDivMMLeftMultTest.dml │ │ ├── FederatedWDivMMLeftMultTestReference.dml │ │ ├── FederatedWDivMMLeftTest.dml │ │ ├── FederatedWDivMMLeftTestReference.dml │ │ ├── FederatedWDivMMRightEpsTest.dml │ │ ├── FederatedWDivMMRightEpsTestReference.dml │ │ ├── FederatedWDivMMRightMultMinus4Test.dml │ │ ├── FederatedWDivMMRightMultMinus4TestReference.dml │ │ ├── FederatedWDivMMRightMultMinusTest.dml │ │ ├── FederatedWDivMMRightMultMinusTestReference.dml │ │ ├── FederatedWDivMMRightMultTest.dml │ │ ├── FederatedWDivMMRightMultTestReference.dml │ │ ├── FederatedWDivMMRightTest.dml │ │ ├── FederatedWDivMMRightTestReference.dml │ │ ├── FederatedWSLossPostTest.dml │ │ ├── FederatedWSLossPostTestReference.dml │ │ ├── FederatedWSLossPreTest.dml │ │ ├── FederatedWSLossPreTestReference.dml │ │ ├── FederatedWSLossTest.dml │ │ ├── FederatedWSLossTestReference.dml │ │ ├── FederatedWSigmoidLogTest.dml │ │ ├── FederatedWSigmoidLogTestReference.dml │ │ ├── FederatedWSigmoidMinusLogTest.dml │ │ ├── FederatedWSigmoidMinusLogTestReference.dml │ │ ├── FederatedWSigmoidMinusTest.dml │ │ ├── FederatedWSigmoidMinusTestReference.dml │ │ ├── FederatedWSigmoidTest.dml │ │ ├── FederatedWSigmoidTestReference.dml │ │ ├── FederatedWUMMExpDivTest.dml │ │ ├── FederatedWUMMExpDivTestReference.dml │ │ ├── FederatedWUMMExpMultTest.dml │ │ ├── FederatedWUMMExpMultTestReference.dml │ │ ├── FederatedWUMMMult2Test.dml │ │ ├── FederatedWUMMMult2TestReference.dml │ │ ├── FederatedWUMMPow2Test.dml │ │ └── FederatedWUMMPow2TestReference.dml ├── frame │ ├── ColumnNames.dml │ ├── DetectSchema.dml │ ├── DropInvalidLength.dml │ ├── DropInvalidType.dml │ ├── Frame2MatrixCast.dml │ ├── Frame2ScalarCast.dml │ ├── FrameAppend.R │ ├── FrameAppend.dml │ ├── FrameConstructorTest.dml │ ├── FrameFunction.dml │ ├── FrameGeneral.R │ ├── FrameGeneral.dml │ ├── FrameLeftIndexing.R │ ├── FrameLeftIndexing.dml │ ├── FrameMatrixReblock.dml │ ├── FrameMatrixWrite.dml │ ├── FrameMetaReadWrite.dml │ ├── FrameNAryAppend.R │ ├── FrameNAryAppend.dml │ ├── FrameNAryAppendMisalign.R │ ├── FrameNAryAppendMisalign.dml │ ├── FrameNAryAppendMisalignRSP.R │ ├── FrameNAryAppendMisalignRSP.dml │ ├── FrameNAryAppendMisalignRSP2.R │ ├── FrameNAryAppendMisalignRSP2.dml │ ├── FrameRightIndexing.R │ ├── FrameRightIndexing.dml │ ├── FrameScalarCast.dml │ ├── FrameSchemaRead1.dml │ ├── FrameSchemaRead2.dml │ ├── Matrix2FrameCast.dml │ ├── ParforFrameIntermediates.dml │ ├── ReplaceTest.dml │ ├── Scalar2FrameCast.dml │ ├── SliceLineFailCase.dml │ ├── TypeOf.dml │ ├── applySchema.dml │ ├── fixInvalidLengthstest.dml │ ├── removeEmpty1.dml │ ├── removeEmpty2.dml │ └── valueSwaps.dml ├── indexing │ ├── IndexedAdditionTest.dml │ ├── Jdk7IssueTest.R │ ├── Jdk7IssueTest.dml │ ├── LeftIndexingScalarTest.R │ ├── LeftIndexingScalarTest.dml │ ├── LeftIndexingSparseDenseTest.R │ ├── LeftIndexingSparseDenseTest.dml │ ├── LeftIndexingSparseSparseTest.R │ ├── LeftIndexingSparseSparseTest.dml │ ├── LeftIndexingTest.R │ ├── LeftIndexingTest.dml │ ├── LeftIndexingUpdateInPlaceTest1.R │ ├── LeftIndexingUpdateInPlaceTest1.dml │ ├── LeftIndexingUpdateInPlaceTest2.R │ ├── LeftIndexingUpdateInPlaceTest2.dml │ ├── LeftIndexingUpdateInPlaceTest3.R │ ├── LeftIndexingUpdateInPlaceTest3.dml │ ├── RightIndexingMatrixTest.R │ ├── RightIndexingMatrixTest.dml │ ├── RightIndexingVectorTest.R │ ├── RightIndexingVectorTest.dml │ ├── RowBatchIndexingTest.R │ ├── RowBatchIndexingTest.dml │ └── UnboundedScalarRightIndexingTest.dml ├── io │ ├── DynWriteMatrix.dml │ ├── DynWriteMatrix2.dml │ ├── DynWriteScalar.dml │ ├── IOTest1.dml │ ├── IOTest2.dml │ ├── IOTest3.dml │ ├── IOTest4.dml │ ├── IOTest5.dml │ ├── ListRead.dml │ ├── ListWrite.dml │ ├── Rename.dml │ ├── ScalarComputeWrite.dml │ ├── ScalarRead.dml │ ├── ScalarWrite.dml │ ├── SeqParReadTest.dml │ ├── SeqSizeTest.dml │ ├── binary │ │ ├── BlocksizeTest.dml │ │ └── SerializeTest.dml │ ├── cog │ │ └── ReadCOGTest_1.dml │ ├── compressed │ │ ├── ReadCompressedTest.dml │ │ └── WriteCompressedTest.dml │ ├── csv │ │ ├── ReadCSVTest_1.dml │ │ ├── ReadCSVTest_2.dml │ │ ├── ReadCSVTest_3.dml │ │ ├── ReadCSVTest_4.dml │ │ ├── ReadCSVTest_5.dml │ │ ├── ReadCSVTest_6.dml │ │ ├── ReadCSVTest_7.dml │ │ ├── ReadCSVTest_8.dml │ │ ├── ReadFrameTest_1.dml │ │ ├── ReadFrameTest_2.dml │ │ ├── ReadFrameTest_3.dml │ │ ├── WriteCSVTest.dml │ │ ├── csv_test.dml │ │ ├── csv_verify.R │ │ ├── csv_verify.dml │ │ ├── csv_verify2.R │ │ ├── csvprop_read.dml │ │ ├── csvprop_write.dml │ │ ├── in │ │ │ ├── frame_1.csv │ │ │ ├── frame_1.csv.mtd │ │ │ ├── frame_2.csv │ │ │ ├── frame_3.csv │ │ │ ├── frame_3.csv.mtd │ │ │ ├── nan_integers_4.csv │ │ │ ├── nan_integers_5.csv │ │ │ ├── nan_integers_6.csv │ │ │ ├── nan_integers_6.csv.mtd │ │ │ ├── sparse_7.csv │ │ │ ├── sparse_8.csv │ │ │ ├── transfusion_1.csv │ │ │ ├── transfusion_1.csv.mtd │ │ │ ├── transfusion_1.single.csv │ │ │ ├── transfusion_2.csv │ │ │ │ └── part01 │ │ │ ├── transfusion_2.single.csv │ │ │ ├── transfusion_3.csv.mtd │ │ │ ├── transfusion_3.csv │ │ │ │ └── part01 │ │ │ └── transfusion_3.single.csv │ │ └── writecsv_verify.R │ ├── hdf5 │ │ ├── ReadHDF5Test_1.dml │ │ ├── ReadHDF5Test_2.dml │ │ ├── ReadHDF5Test_3.dml │ │ ├── ReadHDF5_Verify.R │ │ ├── WriteHDF5Test_1.dml │ │ └── in │ │ │ ├── transfusion_1.h5 │ │ │ ├── transfusion_2.h5 │ │ │ ├── transfusion_2.h5.mtd │ │ │ ├── transfusion_3.h5 │ │ │ └── transfusion_3.h5.mtd │ ├── libsvm │ │ ├── ReadLIBSVMTest_1.dml │ │ ├── ReadLIBSVMTest_2.dml │ │ ├── ReadLIBSVMTest_3.dml │ │ ├── WriteLIBSVMTest_1.dml │ │ ├── WriteLIBSVMTest_2.dml │ │ ├── in │ │ │ ├── transfusion_1.libsvm │ │ │ ├── transfusion_1.libsvm.mtd │ │ │ ├── transfusion_2.libsvm │ │ │ ├── transfusion_3.libsvm │ │ │ ├── transfusion_W1.libsvm │ │ │ ├── transfusion_W1.libsvm.mtd │ │ │ ├── transfusion_W2.libsvm │ │ │ └── transfusion_W2.libsvm.mtd │ │ ├── libsvm_verify.R │ │ ├── test1.libsvm │ │ ├── test1.libsvm.mtd │ │ ├── test1w.libsvm │ │ ├── test2.libsvm │ │ ├── test2w.libsvm │ │ ├── test3.libsvm │ │ └── test3w.libsvm │ └── matrixmarket │ │ ├── ReadMMTest_1.dml │ │ ├── ReadMMTest_2.dml │ │ ├── ReadMMTest_3.dml │ │ ├── in │ │ └── ReadMMTest.mtx │ │ ├── mm_test1.dml │ │ ├── mm_verify.R │ │ └── mm_verify.dml ├── iogen │ └── in │ │ ├── CSV │ │ ├── F1 │ │ │ ├── sample-yelp-csv200.frame │ │ │ └── yelp-csv.schema │ │ ├── F2 │ │ │ ├── sample-yelp-csv200.frame │ │ │ └── yelp-csv.schema │ │ ├── F3 │ │ │ ├── sample-yelp-csv200.frame │ │ │ └── yelp-csv.schema │ │ ├── F4 │ │ │ ├── sample-yelp-csv200.frame │ │ │ └── yelp-csv.schema │ │ ├── F5 │ │ │ ├── sample-yelp-csv200.frame │ │ │ └── yelp-csv.schema │ │ ├── F6 │ │ │ ├── sample-yelp-csv200.frame │ │ │ └── yelp-csv.schema │ │ ├── F7 │ │ │ ├── sample-yelp-csv200.frame │ │ │ └── yelp-csv.schema │ │ └── sample-yelp-csv200.raw │ │ ├── Custom │ │ ├── F1 │ │ │ ├── aminer-author.schema │ │ │ └── sample-aminer-author200.frame │ │ ├── F2 │ │ │ ├── aminer-author.schema │ │ │ └── sample-aminer-author200.frame │ │ ├── F3 │ │ │ ├── aminer-author.schema │ │ │ └── sample-aminer-author200.frame │ │ ├── F4 │ │ │ ├── aminer-author.schema │ │ │ └── sample-aminer-author200.frame │ │ ├── F5 │ │ │ ├── aminer-author.schema │ │ │ └── sample-aminer-author200.frame │ │ ├── F6 │ │ │ ├── aminer-author.schema │ │ │ └── sample-aminer-author200.frame │ │ ├── F7 │ │ │ ├── aminer-author.schema │ │ │ └── sample-aminer-author200.frame │ │ └── sample-aminer-author200.raw │ │ ├── JSON │ │ ├── F1 │ │ │ ├── aminer-author-json.schema │ │ │ └── sample-aminer-author-json200.frame │ │ ├── F2 │ │ │ ├── aminer-author-json.schema │ │ │ └── sample-aminer-author-json200.frame │ │ ├── F3 │ │ │ ├── aminer-author-json.schema │ │ │ └── sample-aminer-author-json200.frame │ │ ├── F4 │ │ │ ├── aminer-author-json.schema │ │ │ └── sample-aminer-author-json200.frame │ │ ├── F5 │ │ │ ├── aminer-author-json.schema │ │ │ └── sample-aminer-author-json200.frame │ │ ├── F6 │ │ │ ├── aminer-author-json.schema │ │ │ └── sample-aminer-author-json200.frame │ │ ├── F7 │ │ │ ├── aminer-author-json.schema │ │ │ └── sample-aminer-author-json200.frame │ │ └── sample-aminer-author-json200.raw │ │ ├── LibSVM │ │ ├── F1 │ │ │ └── sample-susy-libsvm200.matrix │ │ ├── F10 │ │ │ └── sample-susy-libsvm200.matrix │ │ ├── F11 │ │ │ └── sample-susy-libsvm200.matrix │ │ ├── F12 │ │ │ └── sample-susy-libsvm200.matrix │ │ ├── F13 │ │ │ └── sample-susy-libsvm200.matrix │ │ ├── F14 │ │ │ └── sample-susy-libsvm200.matrix │ │ ├── F15 │ │ │ └── sample-susy-libsvm200.matrix │ │ ├── F16 │ │ │ └── sample-susy-libsvm200.matrix │ │ ├── F17 │ │ │ └── sample-susy-libsvm200.matrix │ │ ├── F18 │ │ │ └── sample-susy-libsvm200.matrix │ │ ├── F2 │ │ │ └── sample-susy-libsvm200.matrix │ │ ├── F3 │ │ │ └── sample-susy-libsvm200.matrix │ │ ├── F4 │ │ │ └── sample-susy-libsvm200.matrix │ │ ├── F5 │ │ │ └── sample-susy-libsvm200.matrix │ │ ├── F6 │ │ │ └── sample-susy-libsvm200.matrix │ │ ├── F7 │ │ │ └── sample-susy-libsvm200.matrix │ │ ├── F8 │ │ │ └── sample-susy-libsvm200.matrix │ │ ├── F9 │ │ │ └── sample-susy-libsvm200.matrix │ │ └── sample-susy-libsvm200.raw │ │ ├── MM │ │ ├── F1 │ │ │ ├── sample-queen-mm200.matrix │ │ │ └── sample-queen-mm200.raw │ │ ├── F10 │ │ │ ├── sample-queen-mm200.matrix │ │ │ └── sample-queen-mm200.raw │ │ ├── F2 │ │ │ ├── sample-queen-mm200.matrix │ │ │ └── sample-queen-mm200.raw │ │ ├── F3 │ │ │ ├── sample-queen-mm200.matrix │ │ │ └── sample-queen-mm200.raw │ │ ├── F4 │ │ │ ├── sample-queen-mm200.matrix │ │ │ └── sample-queen-mm200.raw │ │ ├── F5 │ │ │ ├── sample-queen-mm200.matrix │ │ │ └── sample-queen-mm200.raw │ │ ├── F6 │ │ │ ├── sample-queen-mm200.matrix │ │ │ └── sample-queen-mm200.raw │ │ ├── F7 │ │ │ ├── sample-queen-mm200.matrix │ │ │ └── sample-queen-mm200.raw │ │ ├── F8 │ │ │ ├── sample-queen-mm200.matrix │ │ │ └── sample-queen-mm200.raw │ │ └── F9 │ │ │ ├── sample-queen-mm200.matrix │ │ │ └── sample-queen-mm200.raw │ │ └── XML │ │ ├── autolead-xml.schema │ │ ├── sample-autolead-xml50.frame │ │ └── sample-autolead-xml50.raw ├── jmlc │ ├── bar1.dml │ ├── bar2.dml │ ├── bar3.dml │ ├── foo.dml │ ├── foo2.dml │ ├── m-svm-score.R │ ├── m-svm-score.dml │ ├── reuse-glm-predict.dml │ ├── reuse-msvm-predict.dml │ ├── scalar-input-string.dml │ ├── scalar-input.dml │ ├── sentiment_model.mtx │ ├── tfmtd_example │ │ ├── Bin │ │ │ ├── saleprice.bin │ │ │ └── sqft.bin │ │ ├── Dummycode │ │ │ └── dummyCodeMaps.csv │ │ ├── Impute │ │ │ ├── askingprice.impute │ │ │ ├── district.impute │ │ │ ├── floors.impute │ │ │ ├── numbathrooms.impute │ │ │ ├── numbedrooms.impute │ │ │ ├── view.impute │ │ │ └── zipcode.impute │ │ ├── Recode │ │ │ ├── district.map │ │ │ ├── district.mode │ │ │ ├── district.ndistinct │ │ │ ├── floors.map │ │ │ ├── floors.mode │ │ │ ├── floors.ndistinct │ │ │ ├── numbathrooms.map │ │ │ ├── numbathrooms.mode │ │ │ ├── numbathrooms.ndistinct │ │ │ ├── numbedrooms.map │ │ │ ├── numbedrooms.mode │ │ │ ├── numbedrooms.ndistinct │ │ │ ├── view.map │ │ │ ├── view.mode │ │ │ ├── view.ndistinct │ │ │ ├── zipcode.map │ │ │ ├── zipcode.mode │ │ │ └── zipcode.ndistinct │ │ ├── coltypes.csv │ │ ├── column.names │ │ ├── dummycoded.column.names │ │ └── spec.json │ ├── tfmtd_example2 │ │ ├── Recode │ │ │ ├── district.map │ │ │ ├── district.mode │ │ │ ├── district.ndistinct │ │ │ ├── floors.map │ │ │ ├── floors.mode │ │ │ ├── floors.ndistinct │ │ │ ├── numbathrooms.map │ │ │ ├── numbathrooms.mode │ │ │ ├── numbathrooms.ndistinct │ │ │ ├── numbedrooms.map │ │ │ ├── numbedrooms.mode │ │ │ ├── numbedrooms.ndistinct │ │ │ ├── view.map │ │ │ ├── view.mode │ │ │ ├── view.ndistinct │ │ │ ├── zipcode.map │ │ │ ├── zipcode.mode │ │ │ └── zipcode.ndistinct │ │ ├── coltypes.csv │ │ ├── column.names │ │ └── spec.json │ ├── tfmtd_frame_example │ │ ├── tfmtd_frame │ │ └── tfmtd_frame.mtd │ ├── transform.dml │ ├── transform2.dml │ ├── transform3.dml │ ├── transform4.dml │ ├── transform5.dml │ ├── transform6.dml │ └── transform7.dml ├── lineage │ ├── .FunctionFullReuse5.dml.swp │ ├── CacheEviction1.dml │ ├── CacheEviction2.dml │ ├── CodegenReuse1.dml │ ├── CodegenReuse2.dml │ ├── DedupReuse1.dml │ ├── DedupReuse2.dml │ ├── DedupReuse3.dml │ ├── DedupReuse4.dml │ ├── DedupReuse5.dml │ ├── DedupReuse6.dml │ ├── FedFullReuse1.dml │ ├── FedFullReuse1Reference.dml │ ├── FedFullReuse2.dml │ ├── FedFullReuse2Reference.dml │ ├── FedLmPipelineReuse.dml │ ├── FedUdfReuse1.dml │ ├── FedUdfReuse1Reference.dml │ ├── FullReuse1.dml │ ├── FullReuse2.dml │ ├── FullReuse3.dml │ ├── FullReuse4.dml │ ├── FullReuseGPU1.dml │ ├── FullReusePerf1.dml │ ├── FullReusePerf2.dml │ ├── FunctionFullReuse1.dml │ ├── FunctionFullReuse2.dml │ ├── FunctionFullReuse3.dml │ ├── FunctionFullReuse4.dml │ ├── FunctionFullReuse6.dml │ ├── FunctionFullReuse7.dml │ ├── FunctionFullReuse8.dml │ ├── GPUCacheEviction1.dml │ ├── GPUCacheEviction2.dml │ ├── GPUCacheEviction3.dml │ ├── GPUCacheEviction4.dml │ ├── GPUCacheEviction5.dml │ ├── GPUCacheEviction6.dml │ ├── LineageCodegenTrace.dml │ ├── LineageDebugger1.dml │ ├── LineageExploitationBufferPool1.dml │ ├── LineageExploitationBufferPool2.dml │ ├── LineageReuseAlg1.dml │ ├── LineageReuseAlg2.dml │ ├── LineageReuseAlg3.dml │ ├── LineageReuseAlg4.dml │ ├── LineageReuseAlg5.dml │ ├── LineageReuseAlg6.dml │ ├── LineageReuseEval1.dml │ ├── LineageReuseEval2.dml │ ├── LineageReuseGPU1.dml │ ├── LineageReuseGPU2.dml │ ├── LineageReuseGPU3.dml │ ├── LineageReuseGPU4.dml │ ├── LineageTrace1.dml │ ├── LineageTrace2.dml │ ├── LineageTrace3.dml │ ├── LineageTrace4.dml │ ├── LineageTraceBuiltin.dml │ ├── LineageTraceDedup1.dml │ ├── LineageTraceDedup10.dml │ ├── LineageTraceDedup11.dml │ ├── LineageTraceDedup2.dml │ ├── LineageTraceDedup3.dml │ ├── LineageTraceDedup4.dml │ ├── LineageTraceDedup5.dml │ ├── LineageTraceDedup6.dml │ ├── LineageTraceDedup7.dml │ ├── LineageTraceDedup8.dml │ ├── LineageTraceDedup9.dml │ ├── LineageTraceEquals1.dml │ ├── LineageTraceEquals2.dml │ ├── LineageTraceExec1.dml │ ├── LineageTraceExec2.dml │ ├── LineageTraceExec3.dml │ ├── LineageTraceExec4.dml │ ├── LineageTraceExec5.dml │ ├── LineageTraceExec6.dml │ ├── LineageTraceExec7.dml │ ├── LineageTraceFrame1.dml │ ├── LineageTraceFrame2.dml │ ├── LineageTraceFrame3.dml │ ├── LineageTraceFrame4.dml │ ├── LineageTraceFrame5.dml │ ├── LineageTraceFun1.dml │ ├── LineageTraceFun2.dml │ ├── LineageTraceGPU1.dml │ ├── LineageTraceGPU3.dml │ ├── LineageTraceParfor1.dml │ ├── LineageTraceParfor2.dml │ ├── LineageTraceParfor3.dml │ ├── LineageTraceParforKmeans.dml │ ├── LineageTraceParforMSVM.dml │ ├── LineageTraceParforSteplm.dml │ ├── LineageTraceRandom1.dml │ ├── LineageTraceRandom2.dml │ ├── LineageTraceRandomSpark1.dml │ ├── LineageTraceRandomSpark2.dml │ ├── LineageTraceSpark1.dml │ ├── LineageTraceSpark2.dml │ ├── LineageTraceSpark3.dml │ ├── LineageTraceSpark4.dml │ ├── LineageTraceSpark5.dml │ ├── MiscProbe1.dml │ ├── MiscProbe2.dml │ ├── PartialReuse1.dml │ ├── RewriteTest1.dml │ ├── RewriteTest10.dml │ ├── RewriteTest11.dml │ ├── RewriteTest12.dml │ ├── RewriteTest13.dml │ ├── RewriteTest2.dml │ ├── RewriteTest3.dml │ ├── RewriteTest4.dml │ ├── RewriteTest6.dml │ ├── RewriteTest7.dml │ ├── RewriteTest8.dml │ ├── RewriteTest9.dml │ ├── SBFullReuse1.dml │ ├── SBFullReuse2.dml │ ├── SBFullReuse3.dml │ ├── SystemDS-config-codegen.xml │ ├── SystemDS-config-eviction.xml │ └── unmarkLoopDepVars.dml ├── linearization │ ├── LinearizationTest.R │ ├── LinearizationTest.dml │ ├── MatrixMult.dml │ ├── SystemDS-config-breadth-first.xml │ ├── SystemDS-config-default.xml │ ├── SystemDS-config-depth-first.xml │ ├── SystemDS-config-max-parallelize.xml │ ├── SystemDS-config-min-intermediate.xml │ ├── SystemDS-config-pipeline-depth-first.xml │ ├── SystemDS-config-resource-aware-fast.xml │ └── SystemDS-config-resource-aware-optimal.xml ├── misc │ ├── AddAssign.dml │ ├── AssertExpressionTest1.dml │ ├── Exists1.dml │ ├── Exists2.dml │ ├── ForScalarAssignmentTest.dml │ ├── FunInExpression1.dml │ ├── FunInExpression2.dml │ ├── FunInExpression3.dml │ ├── FunInExpression4.dml │ ├── FunInExpression5.dml │ ├── FunInExpression6.dml │ ├── FunInExpression7.dml │ ├── FunInExpression8.dml │ ├── FunInExpression9.dml │ ├── FunNotFound1.dml │ ├── FunNotFound2.dml │ ├── FunPotpourriBuiltinPrecedence.dml │ ├── FunPotpourriBuiltinPrecedence2.dml │ ├── FunPotpourriComments.dml │ ├── FunPotpourriDefaultArgMatrix.dml │ ├── FunPotpourriDefaultArgScalar.dml │ ├── FunPotpourriDefaultArgScalarMatrix1.dml │ ├── FunPotpourriDefaultArgScalarMatrix2.dml │ ├── FunPotpourriDefaultParams.dml │ ├── FunPotpourriEval.dml │ ├── FunPotpourriEvalList1Arg.dml │ ├── FunPotpourriEvalList2Arg.dml │ ├── FunPotpourriEvalNamespace.dml │ ├── FunPotpourriEvalNamespace2.dml │ ├── FunPotpourriEvalNamespace3.dml │ ├── FunPotpourriEvalNamespaceFuns.dml │ ├── FunPotpourriEvalPred.dml │ ├── FunPotpourriListHandling.dml │ ├── FunPotpourriMultiEval.dml │ ├── FunPotpourriMultiReturnBuiltin1.dml │ ├── FunPotpourriMultiReturnBuiltin2.dml │ ├── FunPotpourriNamedArgsIPA.dml │ ├── FunPotpourriNamedArgsMulti.dml │ ├── FunPotpourriNamedArgsPartial.dml │ ├── FunPotpourriNamedArgsQuotedAssign.dml │ ├── FunPotpourriNamedArgsSingle.dml │ ├── FunPotpourriNamedArgsUnknown1.dml │ ├── FunPotpourriNamedArgsUnknown2.dml │ ├── FunPotpourriNestedParforEval.dml │ ├── FunPotpourriNoReturn.dml │ ├── FunPotpourriNoReturn2.dml │ ├── FunPotpourriParforEvalBuiltin.dml │ ├── FunPotpourriParforEvalSpark.dml │ ├── FunPotpourriSubsetReturn.dml │ ├── FunPotpourriSubsetReturnDead.dml │ ├── FunctionReturnBoolean.dml │ ├── FunctionReturnInt.dml │ ├── Functions1.dml │ ├── Functions10.dml │ ├── Functions11.dml │ ├── Functions12.dml │ ├── Functions13.dml │ ├── Functions14.dml │ ├── Functions15.dml │ ├── Functions15b.dml │ ├── Functions2.dml │ ├── Functions3.dml │ ├── Functions4.dml │ ├── Functions5.dml │ ├── Functions6.dml │ ├── Functions7.dml │ ├── Functions8.dml │ ├── Functions9.dml │ ├── FunctionsA.dml │ ├── FunctionsB.dml │ ├── FunctionsC.dml │ ├── FunctionsD.dml │ ├── FunctionsE.dml │ ├── FunctionsF.dml │ ├── FunctionsG.dml │ ├── FunctionsH.dml │ ├── FunctionsI1.dml │ ├── FunctionsI2.dml │ ├── FunctionsI3.dml │ ├── FunctionsJ1.dml │ ├── FunctionsJ2.dml │ ├── FunctionsJ3.dml │ ├── FunctionsK1.dml │ ├── FunctionsK2.dml │ ├── FunctionsL1.dml │ ├── FunctionsL2.dml │ ├── IPAConstantFoldingScalarVariablePropagation1.dml │ ├── IPAConstantFoldingScalarVariablePropagation2.dml │ ├── IPAConstantFoldingScalarVariablePropagation3.dml │ ├── IPADeadCodeRemoval_Fun.dml │ ├── IPADeadCodeRemoval_Fun2.dml │ ├── IPADeadCodeRemoval_Fun3.dml │ ├── IPADeadCodeRemoval_Main.dml │ ├── IPAFunInline1.dml │ ├── IPAFunInline2.dml │ ├── IPAFunInline3.dml │ ├── IPAFunInline4.dml │ ├── IPAFunInline5.dml │ ├── IPAFunInline6.dml │ ├── IPAFunInline7.dml │ ├── IPALiteralReplacement_ForIf.R │ ├── IPALiteralReplacement_ForIf.dml │ ├── IPALiteralReplacement_While.R │ ├── IPALiteralReplacement_While.dml │ ├── IPANnzPropagation1.dml │ ├── IPANnzPropagation2.dml │ ├── IPAScalarRecursion.dml │ ├── IPAScalarVariablePropagation.dml │ ├── IPAUnknownRecursion.R │ ├── IPAUnknownRecursion.dml │ ├── IfScalarAssignmentTest.dml │ ├── InvalidBuiltinFunctionCallTest1.dml │ ├── InvalidFunctionAssignmentTest1.dml │ ├── InvalidFunctionAssignmentTest2.dml │ ├── InvalidFunctionAssignmentTest3.dml │ ├── InvalidFunctionAssignmentTest4.dml │ ├── InvalidFunctionSignatureTest1.dml │ ├── InvalidFunctionSignatureTest2.dml │ ├── LengthStringTest.dml │ ├── LengthUnknownCSVTest.dml │ ├── ListAppend2788.dml │ ├── ListAppendRemove.dml │ ├── ListAppendSize1.dml │ ├── ListAppendSize2.dml │ ├── ListAppendSize3.dml │ ├── ListAppendSize4.dml │ ├── ListAsMatrix.R │ ├── ListAsMatrix.dml │ ├── ListIxAndCasts.R │ ├── ListIxAndCasts.dml │ ├── ListNamed.R │ ├── ListNamed.dml │ ├── ListNamedFun.R │ ├── ListNamedFun.dml │ ├── ListNamedParfor.R │ ├── ListNamedParfor.dml │ ├── ListNamedRix.R │ ├── ListNamedRix.dml │ ├── ListUnnamed.R │ ├── ListUnnamed.dml │ ├── ListUnnamedFun.R │ ├── ListUnnamedFun.dml │ ├── ListUnnamedParfor.R │ ├── ListUnnamedParfor.dml │ ├── ListUnnamedRix.R │ ├── ListUnnamedRix.dml │ ├── LongOverflowForLoop.dml │ ├── LongOverflowMult.dml │ ├── LongOverflowPlus.dml │ ├── NcolStringTest.dml │ ├── NcolUnknownCSVTest.dml │ ├── NegativeForIncrTest.R │ ├── NegativeForIncrTest.dml │ ├── NegativeParForIncrTest.R │ ├── NegativeParForIncrTest.dml │ ├── NrowStringTest.dml │ ├── NrowUnknownCSVTest.dml │ ├── OuterExpandTest.R │ ├── OuterExpandTest.dml │ ├── PackageFunCall1.dml │ ├── PackageFunCall2.dml │ ├── PackageFunLib.dml │ ├── ParForScalarAssignmentTest.dml │ ├── PrintExpressionTest1.dml │ ├── PrintExpressionTest2.dml │ ├── PrintListTest1.dml │ ├── PrintListTest2.dml │ ├── PrintMatrixTest.dml │ ├── ReadAfterWriteMatrix1.dml │ ├── ReadAfterWriteMatrix2.dml │ ├── ReadAfterWriteScalar1.dml │ ├── ReadAfterWriteScalar2.dml │ ├── ScalarFunctionTest1.R │ ├── ScalarFunctionTest1.dml │ ├── ScalarFunctionTest2.R │ ├── ScalarFunctionTest2.dml │ ├── ScalarPropagationMultiReturn.dml │ ├── SizePropagationLoopIx1.dml │ ├── SizePropagationLoopIx2.dml │ ├── SizePropagationLoopIx3.dml │ ├── SizePropagationLoopIx4.dml │ ├── SizePropagationRBind.dml │ ├── SizePropagationUnique.dml │ ├── TableExpandTest.R │ ├── TableExpandTest.dml │ ├── TestScalarToMatrixInLoop.dml │ ├── TestTerm1.dml │ ├── ToString1.dml │ ├── ToString10.dml │ ├── ToString11.dml │ ├── ToString2.dml │ ├── ToString3.dml │ ├── ToString4.dml │ ├── ToString5.dml │ ├── ToString6.dml │ ├── ToString7.dml │ ├── ToString8.dml │ ├── ToString9.dml │ ├── ValueTypeLogLeftScalar.dml │ ├── ValueTypeLogRightScalar.dml │ ├── ValueTypeMaxLeftScalar.dml │ ├── ValueTypeMaxRightScalar.dml │ ├── ValueTypePredLeftScalar.dml │ ├── ValueTypePredRightScalar.dml │ ├── WhileScalarAssignmentTest.dml │ ├── WrongDataType.dml │ ├── WrongValueType.dml │ ├── ZeroMatrix_Aggregates.R │ ├── ZeroMatrix_Aggregates.dml │ ├── ZeroMatrix_Cbind.R │ ├── ZeroMatrix_Cbind.dml │ ├── ZeroMatrix_Rbind.R │ ├── ZeroMatrix_Rbind.dml │ ├── ZeroMatrix_RemoveEmpty.R │ ├── ZeroMatrix_RemoveEmpty.dml │ ├── booleanExpr.dml │ ├── castBoolean.dml │ ├── castDouble.dml │ ├── castInteger.dml │ ├── castMatrixScalar.dml │ ├── castScalarMatrix.dml │ ├── castingTest.dml │ ├── conditionalPredicateIf.dml │ ├── conditionalPredicateWhile.dml │ ├── conditionalValidate1.dml │ ├── conditionalValidate2.dml │ ├── conditionalValidate3.dml │ ├── conditionalValidate4.dml │ ├── dt_change_1a.dml │ ├── dt_change_1b.dml │ ├── dt_change_1c.dml │ ├── dt_change_1d.dml │ ├── dt_change_1e.dml │ ├── dt_change_1f.dml │ ├── dt_change_1g.dml │ ├── dt_change_1h.dml │ ├── dt_change_2a.dml │ ├── dt_change_2b.dml │ ├── dt_change_2c.dml │ ├── dt_change_2d.dml │ ├── dt_change_2e.dml │ ├── dt_change_2f.dml │ ├── dt_change_3a.dml │ ├── dt_change_3b.dml │ ├── dt_change_3c.dml │ ├── dt_change_3d.dml │ ├── dt_change_3e.dml │ ├── dt_change_3f.dml │ ├── dt_change_4a.dml │ ├── dt_change_4b.dml │ ├── dt_change_4c.dml │ ├── dt_change_4d.dml │ ├── dt_change_4e.dml │ ├── dt_change_4f.dml │ ├── functionInlining.dml │ ├── functionNoInlining.dml │ ├── function_chain_inlining.dml │ ├── function_chain_non_inlining.dml │ ├── function_recursive_inlining.dml │ ├── iterablePredicate.dml │ └── nnzUnary.dml ├── mlcontext │ ├── 1234.csv │ ├── 1234.csv.mtd │ ├── 1234.ijv │ ├── 1234.ijv.mtd │ ├── FrameA.csv │ ├── FrameA.csv.mtd │ ├── FrameA.ijv │ ├── FrameA.ijv.mtd │ ├── FrameB.csv │ ├── FrameB.csv.mtd │ ├── FrameB.ijv │ ├── FrameB.ijv.mtd │ ├── MultiScript1.dml │ ├── MultiScript2.dml │ ├── MultiScript2b.dml │ ├── MultiScript3.dml │ ├── MultiScript3b.dml │ ├── ScratchCleanup1.dml │ ├── ScratchCleanup2.dml │ ├── ScratchCleanup2b.dml │ ├── builtin-constants-test.dml │ ├── eval-test.dml │ ├── eval2-test.dml │ ├── eval3-builtin-test.dml │ ├── eval4-nested_builtin-test.dml │ ├── eval5-bool-allFalse-list-2.dml │ ├── eval5-bool-allFalse-list.dml │ ├── eval5-bool-not-false.dml │ ├── eval5-bool-not-true.dml │ ├── eval6-gridSearch-1.dml │ ├── eval6-gridSearch-2.dml │ ├── eval6-gridSearch-3.dml │ ├── hello-world.dml │ ├── one-two-three-four.csv │ └── one-two-three-four.csv.mtd ├── nary │ ├── NaryCbind.R │ ├── NaryCbind.dml │ ├── NaryList.dml │ ├── NaryListAdvanced.dml │ ├── NaryListCbind.R │ ├── NaryListCbind.dml │ ├── NaryListRbind.R │ ├── NaryListRbind.dml │ ├── NaryMinMax.R │ ├── NaryMinMax.dml │ ├── NaryRbind.R │ └── NaryRbind.dml ├── ooc │ ├── BinaryMatrixMatrix.dml │ ├── BinaryMatrixScalar.dml │ ├── CSVReader.dml │ ├── CTableTest.R │ ├── CTableTest.dml │ ├── CentralMoment.dml │ ├── CentralMomentWeights.dml │ ├── ColAggregationTest.dml │ ├── Contains.dml │ ├── MatrixVectorMultiplication.dml │ ├── OOCExceptionHandling.dml │ ├── Rand1.dml │ ├── Rand2.dml │ ├── Replace.dml │ ├── RightIndexing.dml │ ├── RightIndexingCoords.dml │ ├── RowAggregationTest.dml │ ├── Seq.dml │ ├── Sort.dml │ ├── StreamCollect_1.dml │ ├── StreamCollect_2.dml │ ├── StreamCollect_3.dml │ ├── SumScalarMultiplication.dml │ ├── TSMM.dml │ ├── Tee.dml │ ├── Transpose.dml │ ├── UnaryWrite.dml │ ├── WeightedCTableTest.R │ ├── WeightedCTableTest.dml │ └── lmDS.dml ├── paramserv │ ├── mnist_lenet_paramserv.dml │ ├── mnist_lenet_paramserv_avg.dml │ ├── mnist_lenet_paramserv_minimum_version.dml │ ├── mnist_lenet_paramserv_nbatches.dml │ ├── paramserv-agg-service-failed.dml │ ├── paramserv-all-args.dml │ ├── paramserv-averaging-test.dml │ ├── paramserv-invalid-function.dml │ ├── paramserv-large-parallelism.dml │ ├── paramserv-minimum-version.dml │ ├── paramserv-miss-args.dml │ ├── paramserv-nbatches-test.dml │ ├── paramserv-sbp.dml │ ├── paramserv-spark-agg-service-failed.dml │ ├── paramserv-spark-worker-failed.dml │ ├── paramserv-test.dml │ ├── paramserv-without-optional-args.dml │ ├── paramserv-worker-failed.dml │ ├── paramserv-wrong-aggregate-func.dml │ ├── paramserv-wrong-args.dml │ ├── paramserv-wrong-args2.dml │ ├── paramserv-wrong-named-args.dml │ └── paramserv-wrong-type-args.dml ├── parfor │ ├── DataPartitionExecute.R │ ├── DataPartitionExecute.dml │ ├── for_pred1a.dml │ ├── for_pred1a_seq.dml │ ├── for_pred1b.dml │ ├── for_pred2a.dml │ ├── for_pred2b.dml │ ├── for_pred3a.dml │ ├── for_pred3b.dml │ ├── parfor_NaN1.R │ ├── parfor_NaN1.dml │ ├── parfor_NaN2.R │ ├── parfor_NaN2.dml │ ├── parfor_accumulator.R │ ├── parfor_accumulator1.dml │ ├── parfor_accumulator2.dml │ ├── parfor_accumulator3.dml │ ├── parfor_bcdatapartitioning_neg.R │ ├── parfor_bcdatapartitioning_neg.dml │ ├── parfor_bcdatapartitioning_pos.R │ ├── parfor_bcdatapartitioning_pos.dml │ ├── parfor_brdatapartitioning_neg.R │ ├── parfor_brdatapartitioning_neg.dml │ ├── parfor_brdatapartitioning_pos.R │ ├── parfor_brdatapartitioning_pos.dml │ ├── parfor_cdatapartition_leftindexing.dml │ ├── parfor_cdatapartitioning.R │ ├── parfor_cdatapartitioning1.dml │ ├── parfor_cdatapartitioning2.dml │ ├── parfor_cdatapartitioning3.dml │ ├── parfor_cdatapartitioning6.R │ ├── parfor_cdatapartitioning7.dml │ ├── parfor_cdatapartitioning8.dml │ ├── parfor_cdatapartitioning9.dml │ ├── parfor_eval_local.dml │ ├── parfor_eval_remote.dml │ ├── parfor_eval_remote2.dml │ ├── parfor_frameResults.dml │ ├── parfor_funct.R │ ├── parfor_funct.dml │ ├── parfor_image_brightness.R │ ├── parfor_image_brightness.dml │ ├── parfor_image_mirror.R │ ├── parfor_image_mirror.dml │ ├── parfor_listResults.dml │ ├── parfor_literals1a.dml │ ├── parfor_literals1b.dml │ ├── parfor_literals1c.dml │ ├── parfor_literals2.dml │ ├── parfor_literals3.dml │ ├── parfor_literals4a.dml │ ├── parfor_literals4b.dml │ ├── parfor_mdatapartitioning.R │ ├── parfor_mdatapartitioning1.dml │ ├── parfor_mdatapartitioning2.dml │ ├── parfor_optimizer1.R │ ├── parfor_optimizer1.dml │ ├── parfor_optimizer1b.dml │ ├── parfor_optimizer2.R │ ├── parfor_optimizer2.dml │ ├── parfor_optimizer2b.dml │ ├── parfor_optimizer3.R │ ├── parfor_optimizer3.dml │ ├── parfor_optimizer3b.dml │ ├── parfor_pr_resultmerge1a.R │ ├── parfor_pr_resultmerge1a.dml │ ├── parfor_pr_resultmerge1b.R │ ├── parfor_pr_resultmerge1b.dml │ ├── parfor_pr_resultmerge1c.R │ ├── parfor_pr_resultmerge1c.dml │ ├── parfor_pr_resultmerge1d.R │ ├── parfor_pr_resultmerge1d.dml │ ├── parfor_pr_resultmerge2.R │ ├── parfor_pr_resultmerge2.dml │ ├── parfor_pr_resultmerge32.R │ ├── parfor_pr_resultmerge32.dml │ ├── parfor_pred1_neg.dml │ ├── parfor_pred2_neg.dml │ ├── parfor_rdatapartition_leftindexing.dml │ ├── parfor_rdatapartitioning.R │ ├── parfor_rdatapartitioning1.dml │ ├── parfor_rdatapartitioning2.dml │ ├── parfor_rdatapartitioning3.dml │ ├── parfor_rdatapartitioning6.R │ ├── parfor_rdatapartitioning7.dml │ ├── parfor_rdatapartitioning8.dml │ ├── parfor_rdatapartitioning9.dml │ ├── parfor_recursive.dml │ ├── parfor_remote1.dml │ ├── parfor_remote2.dml │ ├── parfor_remote3.dml │ ├── parfor_repeatedopt1.R │ ├── parfor_repeatedopt1.dml │ ├── parfor_repeatedopt2.R │ ├── parfor_repeatedopt2.dml │ ├── parfor_repeatedopt3.R │ ├── parfor_repeatedopt3.dml │ ├── parfor_threadid_recompile1.dml │ └── parfor_threadid_recompile2.dml ├── piggybacking │ ├── Piggybacking1_append.dml │ ├── Piggybacking1_mvmult.R │ ├── Piggybacking1_mvmult.dml │ ├── Piggybacking_eliminate.dml │ └── Piggybacking_iqm.dml ├── pipelines │ ├── executePipelineTest.dml │ ├── fit_pipelineTest.dml │ ├── intermediates │ │ ├── classification │ │ │ ├── applyFunc.csv │ │ │ ├── applyFunc.csv.mtd │ │ │ ├── bestAcc.csv │ │ │ ├── bestAcc.csv.mtd │ │ │ ├── dirtyScore.csv │ │ │ ├── dirtyScore.csv.mtd │ │ │ ├── evalHp.csv │ │ │ ├── evalHp.csv.mtd │ │ │ ├── hp.csv │ │ │ ├── hp.csv.mtd │ │ │ ├── pip.csv │ │ │ └── pip.csv.mtd │ │ └── regression │ │ │ ├── applyFunc.csv │ │ │ ├── applyFunc.csv.mtd │ │ │ ├── bestAcc.csv │ │ │ ├── bestAcc.csv.mtd │ │ │ ├── dirtyScore.csv │ │ │ ├── dirtyScore.csv.mtd │ │ │ ├── evalHp.csv │ │ │ ├── evalHp.csv.mtd │ │ │ ├── hp.csv │ │ │ ├── hp.csv.mtd │ │ │ ├── pip.csv │ │ │ └── pip.csv.mtd │ ├── meta │ │ ├── meta_census.csv │ │ └── meta_company.csv │ ├── topkLogicalTest.dml │ ├── topkcleaningClassificationTest.dml │ └── topkcleaningRegressionTest.dml ├── privacy │ ├── CBindTest.dml │ ├── FederatedLmCG.dml │ ├── FederatedLmCG2.dml │ ├── ListAppendTest.dml │ ├── MatrixMultiplicationPropagationTest.dml │ ├── MatrixRuntimePropagationTest.dml │ ├── PrivacyLineageTest.dml │ ├── RBindTest.dml │ ├── ReadWriteTest2.dml │ ├── ScalarPropagationTest.dml │ ├── ScalarPropagationTest2.dml │ ├── StringAppendTest.dml │ └── fedplanning │ │ ├── BinaryCostEstimatorTest.dml │ │ ├── FederatedCNNPlanningTest.dml │ │ ├── FederatedCNNPlanningTestReference.dml │ │ ├── FederatedDynamicFunctionPlanningTest.dml │ │ ├── FederatedDynamicFunctionPlanningTestReference.dml │ │ ├── FederatedFNNPlanningTest.dml │ │ ├── FederatedFNNPlanningTestReference.dml │ │ ├── FederatedKMeansPlanningTest.dml │ │ ├── FederatedKMeansPlanningTestReference.dml │ │ ├── FederatedL2SVMFunctionPlanningTest.dml │ │ ├── FederatedL2SVMFunctionPlanningTestReference.dml │ │ ├── FederatedL2SVMPlanningTest.dml │ │ ├── FederatedL2SVMPlanningTestReference.dml │ │ ├── FederatedLeNetPlanningTest.dml │ │ ├── FederatedLeNetPlanningTestReference.dml │ │ ├── FederatedLinearRegressionPlanningTest.dml │ │ ├── FederatedLinearRegressionPlanningTestReference.dml │ │ ├── FederatedLogisticRegressionPlanningTest.dml │ │ ├── FederatedLogisticRegressionPlanningTestReference.dml │ │ ├── FederatedMultiplyCostEstimatorTest.dml │ │ ├── FederatedMultiplyPlanningTest.dml │ │ ├── FederatedMultiplyPlanningTest10.dml │ │ ├── FederatedMultiplyPlanningTest10Reference.dml │ │ ├── FederatedMultiplyPlanningTest11.dml │ │ ├── FederatedMultiplyPlanningTest11Reference.dml │ │ ├── FederatedMultiplyPlanningTest12.dml │ │ ├── FederatedMultiplyPlanningTest12Reference.dml │ │ ├── FederatedMultiplyPlanningTest2.dml │ │ ├── FederatedMultiplyPlanningTest2Reference.dml │ │ ├── FederatedMultiplyPlanningTest3.dml │ │ ├── FederatedMultiplyPlanningTest3Reference.dml │ │ ├── FederatedMultiplyPlanningTest4.dml │ │ ├── FederatedMultiplyPlanningTest4Reference.dml │ │ ├── FederatedMultiplyPlanningTest5.dml │ │ ├── FederatedMultiplyPlanningTest5Reference.dml │ │ ├── FederatedMultiplyPlanningTest6.dml │ │ ├── FederatedMultiplyPlanningTest6Reference.dml │ │ ├── FederatedMultiplyPlanningTest7.dml │ │ ├── FederatedMultiplyPlanningTest7Reference.dml │ │ ├── FederatedMultiplyPlanningTest8.dml │ │ ├── FederatedMultiplyPlanningTest8Reference.dml │ │ ├── FederatedMultiplyPlanningTest9.dml │ │ ├── FederatedMultiplyPlanningTest9Reference.dml │ │ ├── FederatedMultiplyPlanningTestReference.dml │ │ ├── FederatedPCAPlanningTest.dml │ │ ├── FederatedPCAPlanningTestReference.dml │ │ ├── ForLoopCostEstimatorTest.dml │ │ ├── FunctionCostEstimatorTest.dml │ │ ├── IfElseCostEstimatorTest.dml │ │ ├── ParForLoopCostEstimatorTest.dml │ │ ├── SystemDS-config-cost-based.xml │ │ ├── SystemDS-config-fout.xml │ │ ├── SystemDS-config-heuristic.xml │ │ └── WhileCostEstimatorTest.dml ├── quaternary │ ├── RewriteWeightedSigmoid.R │ ├── RewriteWeightedSigmoid.dml │ ├── WeightedCeMM.R │ ├── WeightedCeMM.dml │ ├── WeightedCeMMEps.R │ ├── WeightedCeMMEps.dml │ ├── WeightedDivMM4MultMinusLeft.R │ ├── WeightedDivMM4MultMinusLeft.dml │ ├── WeightedDivMM4MultMinusRight.R │ ├── WeightedDivMM4MultMinusRight.dml │ ├── WeightedDivMMLeft.R │ ├── WeightedDivMMLeft.dml │ ├── WeightedDivMMLeftEps.R │ ├── WeightedDivMMLeftEps.dml │ ├── WeightedDivMMLeftEps2.R │ ├── WeightedDivMMLeftEps2.dml │ ├── WeightedDivMMLeftEps3.R │ ├── WeightedDivMMLeftEps3.dml │ ├── WeightedDivMMMultBasic.R │ ├── WeightedDivMMMultBasic.dml │ ├── WeightedDivMMMultLeft.R │ ├── WeightedDivMMMultLeft.dml │ ├── WeightedDivMMMultMinusLeft.R │ ├── WeightedDivMMMultMinusLeft.dml │ ├── WeightedDivMMMultMinusRight.R │ ├── WeightedDivMMMultMinusRight.dml │ ├── WeightedDivMMMultRight.R │ ├── WeightedDivMMMultRight.dml │ ├── WeightedDivMMRight.R │ ├── WeightedDivMMRight.dml │ ├── WeightedDivMMRightEps.R │ ├── WeightedDivMMRightEps.dml │ ├── WeightedSigmoidP1.R │ ├── WeightedSigmoidP1.dml │ ├── WeightedSigmoidP2.R │ ├── WeightedSigmoidP2.dml │ ├── WeightedSigmoidP3.R │ ├── WeightedSigmoidP3.dml │ ├── WeightedSigmoidP4.R │ ├── WeightedSigmoidP4.dml │ ├── WeightedSquaredLossNo.R │ ├── WeightedSquaredLossNo.dml │ ├── WeightedSquaredLossNo2.R │ ├── WeightedSquaredLossNo2.dml │ ├── WeightedSquaredLossPost.R │ ├── WeightedSquaredLossPost.dml │ ├── WeightedSquaredLossPost2.R │ ├── WeightedSquaredLossPost2.dml │ ├── WeightedSquaredLossPostNz.R │ ├── WeightedSquaredLossPostNz.dml │ ├── WeightedSquaredLossPre.R │ ├── WeightedSquaredLossPre.dml │ ├── WeightedSquaredLossPre2.R │ ├── WeightedSquaredLossPre2.dml │ ├── WeightedUnaryMMExpDiv.R │ ├── WeightedUnaryMMExpDiv.dml │ ├── WeightedUnaryMMExpMult.R │ ├── WeightedUnaryMMExpMult.dml │ ├── WeightedUnaryMMMult2.R │ ├── WeightedUnaryMMMult2.dml │ ├── WeightedUnaryMMPow2.R │ └── WeightedUnaryMMPow2.dml ├── recompile │ ├── IPAFunctionArgsFor.dml │ ├── IPAFunctionArgsParfor.dml │ ├── LiteralReplaceCastScalar.dml │ ├── append_frame.dml │ ├── append_nnz.dml │ ├── constant_propagation_if.R │ ├── constant_propagation_if.dml │ ├── constant_propagation_sb.R │ ├── constant_propagation_sb.dml │ ├── constant_propagation_while.R │ ├── constant_propagation_while.dml │ ├── csv_read_function1.dml │ ├── csv_read_function2.dml │ ├── csv_read_unknown.dml │ ├── for_recompile.dml │ ├── for_recompile_func_sparse.dml │ ├── for_recompile_sparse.dml │ ├── funct_recompile.R │ ├── funct_recompile.dml │ ├── grpagg_rand_recompile.R │ ├── grpagg_rand_recompile.dml │ ├── if_branch_removal.R │ ├── if_branch_removal.dml │ ├── if_recompile.dml │ ├── if_recompile_func_sparse.dml │ ├── if_recompile_sparse.dml │ ├── loop_recompile.dml │ ├── multiple_function_calls1.R │ ├── multiple_function_calls1.dml │ ├── multiple_function_calls2.R │ ├── multiple_function_calls2.dml │ ├── multiple_function_calls3.R │ ├── multiple_function_calls3.dml │ ├── multiple_function_calls4.R │ ├── multiple_function_calls4.dml │ ├── multiple_function_calls5.R │ ├── multiple_function_calls5.dml │ ├── multiple_reads.R │ ├── multiple_reads.dml │ ├── parfor_recompile.dml │ ├── parfor_recompile_func_sparse.dml │ ├── parfor_recompile_sparse.dml │ ├── rand_recompile.dml │ ├── rand_recompile2.dml │ ├── rand_recompile3.dml │ ├── rand_size_expr_eval.dml │ ├── rblk_recompile1.R │ ├── rblk_recompile1.dml │ ├── rblk_recompile2.R │ ├── rblk_recompile2.dml │ ├── rblk_recompile3.R │ ├── rblk_recompile3.dml │ ├── recursive_func_direct.dml │ ├── recursive_func_indirect.dml │ ├── recursive_func_indirect2.dml │ ├── recursive_func_none.dml │ ├── remove_empty_potpourri1.R │ ├── remove_empty_potpourri1.dml │ ├── remove_empty_potpourri2.R │ ├── remove_empty_potpourri2.dml │ ├── remove_empty_potpourri3.R │ ├── remove_empty_potpourri3.dml │ ├── remove_empty_potpourri4.R │ ├── remove_empty_potpourri4.dml │ ├── remove_empty_potpourri5.R │ ├── remove_empty_potpourri5.dml │ ├── remove_empty_recompile.R │ ├── remove_empty_recompile.dml │ ├── rewrite_mapmultchain1.R │ ├── rewrite_mapmultchain1.dml │ ├── rewrite_mapmultchain2.R │ ├── rewrite_mapmultchain2.dml │ ├── while_recompile.dml │ ├── while_recompile_func_sparse.dml │ └── while_recompile_sparse.dml ├── reorg │ ├── DiagM2VTest.R │ ├── DiagM2VTest.dml │ ├── DiagV2MTest.R │ ├── DiagV2MTest.dml │ ├── MatrixReshape1.R │ ├── MatrixReshape1.dml │ ├── MatrixReshape2.R │ ├── MatrixReshape2.dml │ ├── Order.R │ ├── Order.dml │ ├── OrderDyn.R │ ├── OrderDyn.dml │ ├── OrderMultiBy.R │ ├── OrderMultiBy.dml │ ├── OrderMultiBy2.R │ ├── OrderMultiBy2.dml │ ├── Reverse1.R │ ├── Reverse1.dml │ ├── Reverse2.R │ ├── Reverse2.dml │ ├── Roll1.dml │ ├── Transpose.R │ ├── Transpose.dml │ ├── VectorReshape.R │ └── VectorReshape.dml ├── rewrite │ ├── RewritMMCBindZeroVectorOp.dml │ ├── RewriteBinaryMV2Outer.R │ ├── RewriteBinaryMV2Outer.dml │ ├── RewriteBooleanSimplificationTestAnd.dml │ ├── RewriteBooleanSimplificationTestOr.dml │ ├── RewriteCSETransposeScalarMult.dml │ ├── RewriteCSETransposeScalarPow.dml │ ├── RewriteCTableToRExpandLeftNeg.dml │ ├── RewriteCTableToRExpandLeftPos.dml │ ├── RewriteCTableToRExpandLeftUnknownPos.dml │ ├── RewriteCTableToRExpandRightNeg.dml │ ├── RewriteCTableToRExpandRightPos.dml │ ├── RewriteCTableToRExpandRightUnknownPos.dml │ ├── RewriteCTableToRExpandRightVarMax.dml │ ├── RewriteCanonicalizeMatrixMultScalarAdd.R │ ├── RewriteCanonicalizeMatrixMultScalarAdd.dml │ ├── RewriteCodeMotionFor.R │ ├── RewriteCodeMotionFor.dml │ ├── RewriteCodeMotionWhile.R │ ├── RewriteCodeMotionWhile.dml │ ├── RewriteColSumsMVMult.R │ ├── RewriteColSumsMVMult.dml │ ├── RewriteComparisons.dml │ ├── RewriteCumsumConstant1.dml │ ├── RewriteCumsumConstant2.dml │ ├── RewriteDetMixed.R │ ├── RewriteDetMixed.dml │ ├── RewriteDetMult.R │ ├── RewriteDetMult.dml │ ├── RewriteDetScalarMatrixMult.R │ ├── RewriteDetScalarMatrixMult.dml │ ├── RewriteDetTranspose.R │ ├── RewriteDetTranspose.dml │ ├── RewriteDistributiveMatrixMult.R │ ├── RewriteDistributiveMatrixMult.dml │ ├── RewriteEMultChainOpAll.R │ ├── RewriteEMultChainOpAll.dml │ ├── RewriteEMultChainOpXYX.R │ ├── RewriteEMultChainOpXYX.dml │ ├── RewriteEliminateAggregate.R │ ├── RewriteEliminateAggregate.dml │ ├── RewriteEliminateRmEmpty1.dml │ ├── RewriteEliminateRmEmpty2.dml │ ├── RewriteEliminateRmEmptyColSum.dml │ ├── RewriteEliminateRmEmptyRowSum.dml │ ├── RewriteEliminateRmEmptySum.dml │ ├── RewriteEliminateRmEmptySumSelect.dml │ ├── RewriteFoldCBind.dml │ ├── RewriteFoldMax.dml │ ├── RewriteFoldMin.dml │ ├── RewriteFoldRBind.dml │ ├── RewriteFuseBinaryOpChainTest1.R │ ├── RewriteFuseBinaryOpChainTest1.dml │ ├── RewriteFuseBinaryOpChainTest2.R │ ├── RewriteFuseBinaryOpChainTest2.dml │ ├── RewriteFuseBinaryOpChainTest3.R │ ├── RewriteFuseBinaryOpChainTest3.dml │ ├── RewriteFuseBinaryOpChainTest4.R │ ├── RewriteFuseBinaryOpChainTest4.dml │ ├── RewriteFuseBinaryOpChainTest5.R │ ├── RewriteFuseBinaryOpChainTest5.dml │ ├── RewriteFuseBinarySubDAGToUnaryOperation.R │ ├── RewriteFuseBinarySubDAGToUnaryOperation.dml │ ├── RewriteFuseLeftIndexingChainToAppend.R │ ├── RewriteFuseLeftIndexingChainToAppend.dml │ ├── RewriteFuseNzOperation.R │ ├── RewriteFuseNzOperation.dml │ ├── RewriteFuseOrderOperationChain.R │ ├── RewriteFuseOrderOperationChain.dml │ ├── RewriteFusedRandLit.dml │ ├── RewriteFusedRandVar1.dml │ ├── RewriteFusedRandVar2.dml │ ├── RewriteFusedRandVar3.dml │ ├── RewriteIfElseMatrix.R │ ├── RewriteIfElseMatrix.dml │ ├── RewriteIfElseScalar.R │ ├── RewriteIfElseScalar.dml │ ├── RewriteIndexingVectorizationCol.dml │ ├── RewriteIndexingVectorizationRow.dml │ ├── RewriteListTsmmCV1.dml │ ├── RewriteListTsmmCV2.dml │ ├── RewriteLoopVectorizationBinary.R │ ├── RewriteLoopVectorizationBinary.dml │ ├── RewriteLoopVectorizationIndexedCopy.R │ ├── RewriteLoopVectorizationIndexedCopy.dml │ ├── RewriteLoopVectorizationSum.R │ ├── RewriteLoopVectorizationSum.dml │ ├── RewriteLoopVectorizationSum2.R │ ├── RewriteLoopVectorizationSum2.dml │ ├── RewriteLoopVectorizationUnary.R │ ├── RewriteLoopVectorizationUnary.dml │ ├── RewriteMMChainTest1.R │ ├── RewriteMMChainTest1.dml │ ├── RewriteMMChainTestTranspose1.R │ ├── RewriteMMChainTestTranspose1.dml │ ├── RewriteMMChainTestTranspose2.R │ ├── RewriteMMChainTestTranspose2.dml │ ├── RewriteMMChainTestTranspose3.R │ ├── RewriteMMChainTestTranspose3.dml │ ├── RewriteMMChainTestTranspose4.R │ ├── RewriteMMChainTestTranspose4.dml │ ├── RewriteMatrixMultChainOp.R │ ├── RewriteMatrixMultChainOp.dml │ ├── RewriteMatrixMultChainOpSparse.R │ ├── RewriteMatrixMultChainOpSparse.dml │ ├── RewriteMergeFunctionCut.R │ ├── RewriteMergeFunctionCut.dml │ ├── RewriteMergeFunctionCut2.R │ ├── RewriteMergeFunctionCut2.dml │ ├── RewriteMergeFunctionCut3.R │ ├── RewriteMergeFunctionCut3.dml │ ├── RewriteMergeFunctionCut4.R │ ├── RewriteMergeFunctionCut4.dml │ ├── RewriteMergeIfCut.R │ ├── RewriteMergeIfCut.dml │ ├── RewriteNNIssue.R │ ├── RewriteNNIssue.dml │ ├── RewriteNaryMultDense1.dml │ ├── RewriteNaryMultDense2.dml │ ├── RewriteNaryMultSparse1.dml │ ├── RewriteNaryMultSparse2.dml │ ├── RewriteNaryPlusNeg.dml │ ├── RewriteNaryPlusPos.dml │ ├── RewriteNegatedSubtraction.R │ ├── RewriteNegatedSubtraction.dml │ ├── RewriteNonScalarPrint.dml │ ├── RewriteNotOverComparisons.R │ ├── RewriteNotOverComparisons.dml │ ├── RewritePullupAbs.dml │ ├── RewritePushdownBinaryOperationOnDiag.R │ ├── RewritePushdownBinaryOperationOnDiag.dml │ ├── RewritePushdownColmins.R │ ├── RewritePushdownColmins.dml │ ├── RewritePushdownColsums.R │ ├── RewritePushdownColsums.dml │ ├── RewritePushdownRowmins.R │ ├── RewritePushdownRowmins.dml │ ├── RewritePushdownRowsums.R │ ├── RewritePushdownRowsums.dml │ ├── RewritePushdownSumBinaryMult.R │ ├── RewritePushdownSumBinaryMult.dml │ ├── RewritePushdownSumBinaryMult2.R │ ├── RewritePushdownSumBinaryMult2.dml │ ├── RewritePushdownSumOnBinary.dml │ ├── RewriteQuantizationFusedCompressionMatrix.dml │ ├── RewriteQuantizationFusedCompressionScalar.dml │ ├── RewriteRemoveUnnecessaryBinaryOperation.R │ ├── RewriteRemoveUnnecessaryBinaryOperation.dml │ ├── RewriteRemoveUnnecessaryCTable1L.dml │ ├── RewriteRemoveUnnecessaryCTable1R.dml │ ├── RewriteRemoveUnnecessaryCTableTest.dml │ ├── RewriteRemoveUnnecessaryCTableTestTernary.dml │ ├── RewriteRemoveUnnecessaryMinus.R │ ├── RewriteRemoveUnnecessaryMinus.dml │ ├── RewriteRemoveUnnecessaryReorgOperation.R │ ├── RewriteRemoveUnnecessaryReorgOperation.dml │ ├── RewriteRemoveUnnecessaryRev.dml │ ├── RewriteRemoveUnnecessaryVectorizeOperation.R │ ├── RewriteRemoveUnnecessaryVectorizeOperation.dml │ ├── RewriteRowSumsMVMult.R │ ├── RewriteRowSumsMVMult.dml │ ├── RewriteScalarMinusMatrixMinusScalar.R │ ├── RewriteScalarMinusMatrixMinusScalar.dml │ ├── RewriteScalarPlusMatrixMinusScalar.R │ ├── RewriteScalarPlusMatrixMinusScalar.dml │ ├── RewriteScalarRightIndexing.dml │ ├── RewriteSimplifyBinaryMatrixScalarOperation.R │ ├── RewriteSimplifyBinaryMatrixScalarOperation.dml │ ├── RewriteSimplifyBinaryToUnaryOperation.R │ ├── RewriteSimplifyBinaryToUnaryOperation.dml │ ├── RewriteSimplifyBushyBinaryOperation.R │ ├── RewriteSimplifyBushyBinaryOperation.dml │ ├── RewriteSimplifyCTableWithConstantMatrixInputs.R │ ├── RewriteSimplifyCTableWithConstantMatrixInputs.dml │ ├── RewriteSimplifyConstantSort.R │ ├── RewriteSimplifyConstantSort.dml │ ├── RewriteSimplifyCumsumColOrFullAggregates.R │ ├── RewriteSimplifyCumsumColOrFullAggregates.dml │ ├── RewriteSimplifyCumsumReverse.R │ ├── RewriteSimplifyCumsumReverse.dml │ ├── RewriteSimplifyDistributiveBinaryOperation.R │ ├── RewriteSimplifyDistributiveBinaryOperation.dml │ ├── RewriteSimplifyEmptyColMeans.R │ ├── RewriteSimplifyEmptyColMeans.dml │ ├── RewriteSimplifyLowerTriExtraction.R │ ├── RewriteSimplifyLowerTriExtraction.dml │ ├── RewriteSimplifyMultiBinaryToBinaryOperation.R │ ├── RewriteSimplifyMultiBinaryToBinaryOperation.dml │ ├── RewriteSimplifyNnzComputation.R │ ├── RewriteSimplifyNnzComputation.dml │ ├── RewriteSimplifyOrderedSort.R │ ├── RewriteSimplifyOrderedSort.dml │ ├── RewriteSimplifyOuterSeqExpand.R │ ├── RewriteSimplifyOuterSeqExpand.dml │ ├── RewriteSimplifyReplaceZeroOperation.R │ ├── RewriteSimplifyReplaceZeroOperation.dml │ ├── RewriteSimplifyReverseOperation.R │ ├── RewriteSimplifyReverseOperation.dml │ ├── RewriteSimplifyReverseSequenceStep.dml │ ├── RewriteSimplifySumDiagToTrace.R │ ├── RewriteSimplifySumDiagToTrace.dml │ ├── RewriteSimplifyTraceMatrixMult.R │ ├── RewriteSimplifyTraceMatrixMult.dml │ ├── RewriteSimplifyTraceSum.R │ ├── RewriteSimplifyTraceSum.dml │ ├── RewriteSimplifyTraceTranspose.R │ ├── RewriteSimplifyTraceTranspose.dml │ ├── RewriteSimplifyTransposeAddition.R │ ├── RewriteSimplifyTransposeAddition.dml │ ├── RewriteSimplifyTransposeAggBinBinaryChains.R │ ├── RewriteSimplifyTransposeAggBinBinaryChains.dml │ ├── RewriteSimplifyTransposedAppend.R │ ├── RewriteSimplifyTransposedAppend.dml │ ├── RewriteSimplifyTransposedCumsum.R │ ├── RewriteSimplifyTransposedCumsum.dml │ ├── RewriteSimplifyUnaryAggReorgOperation.R │ ├── RewriteSimplifyUnaryAggReorgOperation.dml │ ├── RewriteSimplifyUnaryPPredOperation.R │ ├── RewriteSimplifyUnaryPPredOperation.dml │ ├── RewriteSimplifyUnion.R │ ├── RewriteSimplifyUnion.dml │ ├── RewriteSimplifyWeightedSigmoidMMChains.R │ ├── RewriteSimplifyWeightedSigmoidMMChains.dml │ ├── RewriteSimplifyWeightedSquaredLoss.R │ ├── RewriteSimplifyWeightedSquaredLoss.dml │ ├── RewriteSimplifyWeightedUnaryMM.R │ ├── RewriteSimplifyWeightedUnaryMM.dml │ ├── RewriteSlicedMatrixMult.R │ ├── RewriteSlicedMatrixMult.dml │ ├── RewriteTimeHoisting.dml │ ├── RewriteTransposeCase1.R │ ├── RewriteTransposeCase1.dml │ ├── RewriteTransposeCase2.R │ ├── RewriteTransposeCase2.dml │ ├── RewriteTransposeCase3.R │ ├── RewriteTransposeCase3.dml │ ├── SPCheckpoint │ │ ├── RewriteSPCheckpoint.dml │ │ └── RewriteSPCheckpointRemove.dml │ ├── removal_for.dml │ ├── removal_parfor.dml │ ├── removal_rix1.dml │ └── removal_rix2.dml ├── tensor │ ├── BILSTMBackwardTest.dml │ ├── BILSTMForwardTest.dml │ ├── Conv1DBackwardDataTest.dml │ ├── Conv1DBackwardFilterTest.dml │ ├── Conv1DTest.dml │ ├── Conv2DBackwardDataTest.R │ ├── Conv2DBackwardDataTest.dml │ ├── Conv2DBackwardTest.R │ ├── Conv2DBackwardTest.dml │ ├── Conv2DTest.R │ ├── Conv2DTest.dml │ ├── LSTMBackwardTest.dml │ ├── LSTMForwardTest.dml │ ├── PoolBackwardTest.R │ ├── PoolBackwardTest.dml │ ├── PoolTest.R │ ├── PoolTest.dml │ ├── ReluBackwardTest.R │ └── ReluBackwardTest.dml ├── ternary │ ├── AAATernaryAggregateC.R │ ├── AAATernaryAggregateC.dml │ ├── AAATernaryAggregateRC.R │ ├── AAATernaryAggregateRC.dml │ ├── ABATernaryAggregateC.R │ ├── ABATernaryAggregateC.dml │ ├── ABATernaryAggregateRC.R │ ├── ABATernaryAggregateRC.dml │ ├── CTableRowHist.R │ ├── CTableRowHist.dml │ ├── CTableSequenceLeft.R │ ├── CTableSequenceLeft.dml │ ├── CTableSequenceRight.R │ ├── CTableSequenceRight.dml │ ├── CentralMomentWeights.R │ ├── CentralMomentWeights.dml │ ├── CovarianceWeights.R │ ├── CovarianceWeights.dml │ ├── IQMWeights.R │ ├── IQMWeights.dml │ ├── MedianWeights.R │ ├── MedianWeights.dml │ ├── QuantileWeights.R │ ├── QuantileWeights.dml │ ├── TableOutputTest.R │ ├── TableOutputTest.dml │ ├── TernaryAggregateC.R │ ├── TernaryAggregateC.dml │ ├── TernaryAggregatePow.R │ ├── TernaryAggregatePow.dml │ ├── TernaryAggregateRC.R │ ├── TernaryAggregateRC.dml │ ├── TernaryIfElse.R │ └── TernaryIfElse.dml ├── transform │ ├── FrameCSVReadWrite.dml │ ├── TransformCSVFrameEncodeDecode.dml │ ├── TransformCSVFrameEncodeRead.dml │ ├── TransformDummyFederatedEncodeDecode.dml │ ├── TransformEncodeDecode.dml │ ├── TransformEncodeDecodeDummySpec.json │ ├── TransformEncodeDecodeSpec.json │ ├── TransformEncodeUDF1.dml │ ├── TransformEncodeUDF2.dml │ ├── TransformFederatedEncodeApply.dml │ ├── TransformFrameEncodeApply.dml │ ├── TransformFrameEncodeApplyBagOfWords.dml │ ├── TransformFrameEncodeApplySubset1.dml │ ├── TransformFrameEncodeApplySubset2.dml │ ├── TransformFrameEncodeApplySubsetHash1.dml │ ├── TransformFrameEncodeApplySubsetHash2.dml │ ├── TransformFrameEncodeBagOfWords.dml │ ├── TransformFrameEncodeColmap1.dml │ ├── TransformFrameEncodeColmap2.dml │ ├── TransformFrameEncodeDecode.dml │ ├── TransformFrameEncodeWordEmbeddings.dml │ ├── TransformFrameEncodeWordEmbeddings1Reshape.dml │ ├── TransformFrameEncodeWordEmbeddings2.dml │ ├── TransformFrameEncodeWordEmbeddings2MultiCols2.dml │ ├── TransformFrameEncodeWordEmbeddings2Reshape.dml │ ├── TransformFrameEncodeWordEmbeddingsColSum.dml │ ├── TransformFrameEncodeWordEmbeddingsFullSum.dml │ ├── TransformFrameEncodeWordEmbeddingsMM.dml │ ├── TransformFrameEncodeWordEmbeddingsRowSum.dml │ ├── TransformPopByCitizenship.dml │ ├── TransformRecodeFederatedEncodeDecode.dml │ └── tokenize │ │ ├── TokenizeNgramPosLong.dml │ │ ├── TokenizeNgramPosLong.json │ │ ├── TokenizeNgramPosWide.dml │ │ ├── TokenizeNgramPosWide.json │ │ ├── TokenizeSplitCountLong.dml │ │ ├── TokenizeSplitCountLong.json │ │ ├── TokenizeUniHashWide.dml │ │ └── TokenizeUniHashWide.json ├── unary │ ├── matrix │ │ ├── ACosTest.dml │ │ ├── ASinTest.dml │ │ ├── ATanTest.dml │ │ ├── AbsTest.dml │ │ ├── CastAsScalarTest.dml │ │ ├── Ceil.R │ │ ├── Ceil.dml │ │ ├── Ceiling.R │ │ ├── Ceiling.dml │ │ ├── CosTest.dml │ │ ├── Cummax.R │ │ ├── Cummax.dml │ │ ├── Cummin.R │ │ ├── Cummin.dml │ │ ├── Cumprod.R │ │ ├── Cumprod.dml │ │ ├── Cumsum.R │ │ ├── Cumsum.dml │ │ ├── Cumsumprod.dml │ │ ├── DetTest.R │ │ ├── DetTest.dml │ │ ├── DiagSingleTest.dml │ │ ├── DiagTest.dml │ │ ├── ExtractLowerTri.R │ │ ├── ExtractLowerTri.dml │ │ ├── ExtractUpperTri.R │ │ ├── ExtractUpperTri.dml │ │ ├── Floor.R │ │ ├── Floor.dml │ │ ├── IQM.dml │ │ ├── Inverse.R │ │ ├── Inverse.dml │ │ ├── Minus.R │ │ ├── Minus.dml │ │ ├── NegationTest.dml │ │ ├── PrintTest.dml │ │ ├── QRsolve.R │ │ ├── QRsolve.dml │ │ ├── RoundTest.R │ │ ├── RoundTest.dml │ │ ├── Rowcumsum.R │ │ ├── Rowcumsum.dml │ │ ├── SProp.R │ │ ├── SProp.dml │ │ ├── SelPos.R │ │ ├── SelPos.dml │ │ ├── Sigmoid.R │ │ ├── Sigmoid.dml │ │ ├── Sign1.R │ │ ├── Sign1.dml │ │ ├── Sign2.R │ │ ├── Sign2.dml │ │ ├── SinTest.dml │ │ ├── SqrtSingleTest.dml │ │ ├── SqrtTest.dml │ │ ├── TanTest.dml │ │ ├── TransposeTest.dml │ │ ├── cholesky.dml │ │ ├── eigen.dml │ │ ├── is_Infinite.R │ │ ├── is_Infinite.dml │ │ ├── is_NA.R │ │ ├── is_NA.dml │ │ ├── is_NaN.R │ │ ├── is_NaN.dml │ │ ├── lu.dml │ │ ├── qr.dml │ │ ├── removeEmpty1.dml │ │ ├── removeEmpty2.dml │ │ ├── removeEmpty3.dml │ │ ├── removeEmpty4.dml │ │ ├── removeEmptySel.dml │ │ ├── replace_Infinity.R │ │ ├── replace_Infinity.dml │ │ ├── replace_NInfinity.R │ │ ├── replace_NInfinity.dml │ │ ├── replace_NaN.R │ │ ├── replace_NaN.dml │ │ ├── replace_maxmin.R │ │ ├── replace_maxmin.dml │ │ ├── replace_value.R │ │ ├── replace_value.dml │ │ └── svd.dml │ └── scalar │ │ ├── ACosTest.dml │ │ ├── ASinTest.dml │ │ ├── ATanTest.dml │ │ ├── AbsTest.dml │ │ ├── BooleanWhileTest.dml │ │ ├── CosTest.dml │ │ ├── DFTest_CHISQ.R │ │ ├── DFTest_CHISQ.dml │ │ ├── DFTest_EXP.R │ │ ├── DFTest_EXP.dml │ │ ├── DFTest_EXP_NOPARAMS.R │ │ ├── DFTest_EXP_NOPARAMS.dml │ │ ├── DFTest_F.R │ │ ├── DFTest_F.dml │ │ ├── DFTest_NORMAL.R │ │ ├── DFTest_NORMAL.dml │ │ ├── DFTest_NORMAL_MEAN.R │ │ ├── DFTest_NORMAL_MEAN.dml │ │ ├── DFTest_NORMAL_NOPARAMS.R │ │ ├── DFTest_NORMAL_NOPARAMS.dml │ │ ├── DFTest_NORMAL_SD.R │ │ ├── DFTest_NORMAL_SD.dml │ │ ├── DFTest_T.R │ │ ├── DFTest_T.dml │ │ ├── ExponentBinaryTest.dml │ │ ├── ExponentTest.dml │ │ ├── NegationTest.dml │ │ ├── NotTest.dml │ │ ├── PrintTest.dml │ │ ├── PrintTest2.dml │ │ ├── PrintTest3.dml │ │ ├── RoundTest.dml │ │ ├── SinTest.dml │ │ ├── SqrtSingleTest.dml │ │ ├── SqrtTest.dml │ │ ├── StopTest1.dml │ │ ├── StopTest2.dml │ │ ├── StopTestLoops_fn.dml │ │ ├── StopTestLoops_for.dml │ │ ├── StopTestLoops_parfor.dml │ │ ├── StopTestLoops_while.dml │ │ └── TanTest.dml ├── unique │ ├── uniqueRow.dml │ └── uniqueRowCol.dml ├── updateinplace │ ├── BinaryUpdateInplace.dml │ ├── UnaryUpdateInplace.dml │ ├── updateinplace1.dml │ ├── updateinplace10.dml │ ├── updateinplace11.dml │ ├── updateinplace12.dml │ ├── updateinplace13.dml │ ├── updateinplace14.dml │ ├── updateinplace15.dml │ ├── updateinplace2.dml │ ├── updateinplace3.dml │ ├── updateinplace4.dml │ ├── updateinplace5.dml │ ├── updateinplace6.dml │ ├── updateinplace7.dml │ ├── updateinplace8.dml │ └── updateinplace9.dml └── vect │ ├── VectorizeForLoopBinaryColNeg.R │ ├── VectorizeForLoopBinaryColNeg.dml │ ├── VectorizeForLoopBinaryColPos.R │ ├── VectorizeForLoopBinaryColPos.dml │ ├── VectorizeForLoopBinaryRowNeg.R │ ├── VectorizeForLoopBinaryRowNeg.dml │ ├── VectorizeForLoopBinaryRowPos.R │ ├── VectorizeForLoopBinaryRowPos.dml │ ├── VectorizeForLoopLeftScalarColNeg.R │ ├── VectorizeForLoopLeftScalarColNeg.dml │ ├── VectorizeForLoopLeftScalarColPos.R │ ├── VectorizeForLoopLeftScalarColPos.dml │ ├── VectorizeForLoopLeftScalarRowNeg.R │ ├── VectorizeForLoopLeftScalarRowNeg.dml │ ├── VectorizeForLoopLeftScalarRowPos.R │ ├── VectorizeForLoopLeftScalarRowPos.dml │ ├── VectorizeForLoopRightScalarColNeg.R │ ├── VectorizeForLoopRightScalarColNeg.dml │ ├── VectorizeForLoopRightScalarColPos.R │ ├── VectorizeForLoopRightScalarColPos.dml │ ├── VectorizeForLoopRightScalarRowNeg.R │ ├── VectorizeForLoopRightScalarRowNeg.dml │ ├── VectorizeForLoopRightScalarRowPos.R │ ├── VectorizeForLoopRightScalarRowPos.dml │ ├── VectorizeForLoopUnaryColNeg.R │ ├── VectorizeForLoopUnaryColNeg.dml │ ├── VectorizeForLoopUnaryColPos.R │ ├── VectorizeForLoopUnaryColPos.dml │ ├── VectorizeForLoopUnaryRowNeg.R │ ├── VectorizeForLoopUnaryRowNeg.dml │ ├── VectorizeForLoopUnaryRowPos.R │ ├── VectorizeForLoopUnaryRowPos.dml │ ├── VectorizeLixChainCol.R │ ├── VectorizeLixChainCol.dml │ ├── VectorizeLixChainRow.R │ ├── VectorizeLixChainRow.dml │ ├── VectorizeLixColNeg.R │ ├── VectorizeLixColNeg.dml │ ├── VectorizeLixColPos.R │ ├── VectorizeLixColPos.dml │ ├── VectorizeLixRowNeg.R │ ├── VectorizeLixRowNeg.dml │ ├── VectorizeLixRowPos.R │ ├── VectorizeLixRowPos.dml │ ├── VectorizeRixColNeg.R │ ├── VectorizeRixColNeg.dml │ ├── VectorizeRixColPos.R │ ├── VectorizeRixColPos.dml │ ├── VectorizeRixRowNeg.R │ ├── VectorizeRixRowNeg.dml │ ├── VectorizeRixRowPos.R │ └── VectorizeRixRowPos.dml ├── gpu ├── cudaSupportFunctions │ ├── CudaSupportFunctionsDot.R │ ├── CudaSupportFunctionsDot.dml │ ├── CudaSupportFunctionsGeam.R │ ├── CudaSupportFunctionsGeam.dml │ ├── CudaSupportFunctionsMM.R │ ├── CudaSupportFunctionsMM.dml │ ├── CudaSupportFunctionsMV.R │ ├── CudaSupportFunctionsMV.dml │ ├── CudaSupportFunctionsTranspose.R │ └── CudaSupportFunctionsTranspose.dml └── nn │ └── ResNet18GPU.dml ├── installDependencies.R ├── performance ├── append.sh └── matrixMultiplication.sh ├── testRunScript.bat ├── testRunScript.sh └── usertest ├── Stop.dml ├── SyntaxError.dml └── helloWorld.dml /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/action/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.github/action/Dockerfile -------------------------------------------------------------------------------- /.github/action/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.github/action/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-cron.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.github/workflows/build-cron.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/delete_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.github/workflows/delete_artifacts.py -------------------------------------------------------------------------------- /.github/workflows/docker-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.github/workflows/docker-cd.yml -------------------------------------------------------------------------------- /.github/workflows/docker-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.github/workflows/docker-release.yml -------------------------------------------------------------------------------- /.github/workflows/docker-testImage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.github/workflows/docker-testImage.yml -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/javaTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.github/workflows/javaTests.yml -------------------------------------------------------------------------------- /.github/workflows/license.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.github/workflows/license.yml -------------------------------------------------------------------------------- /.github/workflows/monitoringUITests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.github/workflows/monitoringUITests.yml -------------------------------------------------------------------------------- /.github/workflows/python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.github/workflows/python.yml -------------------------------------------------------------------------------- /.github/workflows/pythonFormatting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.github/workflows/pythonFormatting.yml -------------------------------------------------------------------------------- /.github/workflows/release-scripts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.github/workflows/release-scripts.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mvn/jvm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/.mvn/jvm.config -------------------------------------------------------------------------------- /CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/CITATION -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/README.md -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/bin/README.md -------------------------------------------------------------------------------- /bin/systemds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/bin/systemds -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/codecov.yml -------------------------------------------------------------------------------- /conf/SystemDS-config-defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/conf/SystemDS-config-defaults.xml -------------------------------------------------------------------------------- /conf/SystemDS-config.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/conf/SystemDS-config.xml.template -------------------------------------------------------------------------------- /conf/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/conf/log4j.properties -------------------------------------------------------------------------------- /conf/log4j.properties.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/conf/log4j.properties.template -------------------------------------------------------------------------------- /dev/CodeStyle_eclipse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/dev/CodeStyle_eclipse.xml -------------------------------------------------------------------------------- /dev/release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/dev/release/README.md -------------------------------------------------------------------------------- /dev/release/check-release-machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/dev/release/check-release-machine.py -------------------------------------------------------------------------------- /dev/release/create-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/dev/release/create-tag.sh -------------------------------------------------------------------------------- /dev/release/do-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/dev/release/do-release.sh -------------------------------------------------------------------------------- /dev/release/old/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/dev/release/old/deploy.sh -------------------------------------------------------------------------------- /dev/release/old/old-release-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/dev/release/old/old-release-build.sh -------------------------------------------------------------------------------- /dev/release/old/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/dev/release/old/publish.sh -------------------------------------------------------------------------------- /dev/release/old/simple-release-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/dev/release/old/simple-release-build.sh -------------------------------------------------------------------------------- /dev/release/old/svn_dev_upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/dev/release/old/svn_dev_upload.sh -------------------------------------------------------------------------------- /dev/release/pypi-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/dev/release/pypi-upload.sh -------------------------------------------------------------------------------- /dev/release/release-architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/dev/release/release-architecture.svg -------------------------------------------------------------------------------- /dev/release/release-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/dev/release/release-build.sh -------------------------------------------------------------------------------- /dev/release/release-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/dev/release/release-utils.sh -------------------------------------------------------------------------------- /dev/release/simple-release-verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/dev/release/simple-release-verify.sh -------------------------------------------------------------------------------- /dev/release/src/test/bin/verifyBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/dev/release/src/test/bin/verifyBuild.sh -------------------------------------------------------------------------------- /dev/release/svn-staging-to-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/dev/release/svn-staging-to-release.sh -------------------------------------------------------------------------------- /doap.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/doap.rdf -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docker/build.sh -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /docker/mountFolder/main.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docker/mountFolder/main.dml -------------------------------------------------------------------------------- /docker/mountFolder/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docker/mountFolder/main.py -------------------------------------------------------------------------------- /docker/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docker/push.sh -------------------------------------------------------------------------------- /docker/pythonsysds.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docker/pythonsysds.Dockerfile -------------------------------------------------------------------------------- /docker/sysds.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docker/sysds.Dockerfile -------------------------------------------------------------------------------- /docker/testsysds.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docker/testsysds.Dockerfile -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/_includes/header.html -------------------------------------------------------------------------------- /docs/_includes/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/_includes/scripts.html -------------------------------------------------------------------------------- /docs/_layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/_layouts/base.html -------------------------------------------------------------------------------- /docs/_layouts/site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/_layouts/site.html -------------------------------------------------------------------------------- /docs/api/java/allclasses-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/allclasses-index.html -------------------------------------------------------------------------------- /docs/api/java/allclasses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/allclasses.html -------------------------------------------------------------------------------- /docs/api/java/allpackages-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/allpackages-index.html -------------------------------------------------------------------------------- /docs/api/java/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/constant-values.html -------------------------------------------------------------------------------- /docs/api/java/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/deprecated-list.html -------------------------------------------------------------------------------- /docs/api/java/element-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/element-list -------------------------------------------------------------------------------- /docs/api/java/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/help-doc.html -------------------------------------------------------------------------------- /docs/api/java/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/index-all.html -------------------------------------------------------------------------------- /docs/api/java/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/index.html -------------------------------------------------------------------------------- /docs/api/java/jquery-ui.overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/jquery-ui.overrides.css -------------------------------------------------------------------------------- /docs/api/java/jquery/jquery-3.6.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/jquery/jquery-3.6.1.min.js -------------------------------------------------------------------------------- /docs/api/java/jquery/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/jquery/jquery-ui.min.css -------------------------------------------------------------------------------- /docs/api/java/jquery/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/jquery/jquery-ui.min.js -------------------------------------------------------------------------------- /docs/api/java/jquery/jszip/dist/jszip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/jquery/jszip/dist/jszip.js -------------------------------------------------------------------------------- /docs/api/java/legal/ADDITIONAL_LICENSE_INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/legal/ADDITIONAL_LICENSE_INFO -------------------------------------------------------------------------------- /docs/api/java/legal/ASSEMBLY_EXCEPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/legal/ASSEMBLY_EXCEPTION -------------------------------------------------------------------------------- /docs/api/java/legal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/legal/LICENSE -------------------------------------------------------------------------------- /docs/api/java/legal/jquery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/legal/jquery.md -------------------------------------------------------------------------------- /docs/api/java/legal/jqueryUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/legal/jqueryUI.md -------------------------------------------------------------------------------- /docs/api/java/legal/jszip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/legal/jszip.md -------------------------------------------------------------------------------- /docs/api/java/legal/pako.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/legal/pako.md -------------------------------------------------------------------------------- /docs/api/java/member-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/member-search-index.js -------------------------------------------------------------------------------- /docs/api/java/member-search-index.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/member-search-index.zip -------------------------------------------------------------------------------- /docs/api/java/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/overview-summary.html -------------------------------------------------------------------------------- /docs/api/java/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/overview-tree.html -------------------------------------------------------------------------------- /docs/api/java/package-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/package-search-index.js -------------------------------------------------------------------------------- /docs/api/java/package-search-index.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/package-search-index.zip -------------------------------------------------------------------------------- /docs/api/java/resources/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/resources/glass.png -------------------------------------------------------------------------------- /docs/api/java/resources/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/resources/x.png -------------------------------------------------------------------------------- /docs/api/java/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/script.js -------------------------------------------------------------------------------- /docs/api/java/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/search.js -------------------------------------------------------------------------------- /docs/api/java/serialized-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/serialized-form.html -------------------------------------------------------------------------------- /docs/api/java/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/stylesheet.css -------------------------------------------------------------------------------- /docs/api/java/type-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/type-search-index.js -------------------------------------------------------------------------------- /docs/api/java/type-search-index.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/java/type-search-index.zip -------------------------------------------------------------------------------- /docs/api/python/api/operator/node/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/api/operator/node/list.html -------------------------------------------------------------------------------- /docs/api/python/api/utils/converters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/api/utils/converters.html -------------------------------------------------------------------------------- /docs/api/python/api/utils/helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/api/utils/helpers.html -------------------------------------------------------------------------------- /docs/api/python/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/genindex.html -------------------------------------------------------------------------------- /docs/api/python/guide/federated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/guide/federated.html -------------------------------------------------------------------------------- /docs/api/python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/index.html -------------------------------------------------------------------------------- /docs/api/python/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/objects.inv -------------------------------------------------------------------------------- /docs/api/python/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/py-modindex.html -------------------------------------------------------------------------------- /docs/api/python/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/search.html -------------------------------------------------------------------------------- /docs/api/python/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/searchindex.js -------------------------------------------------------------------------------- /docs/api/python/sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/sources/index.rst.txt -------------------------------------------------------------------------------- /docs/api/python/static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/static/basic.css -------------------------------------------------------------------------------- /docs/api/python/static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/static/css/badge_only.css -------------------------------------------------------------------------------- /docs/api/python/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/static/css/theme.css -------------------------------------------------------------------------------- /docs/api/python/static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/static/doctools.js -------------------------------------------------------------------------------- /docs/api/python/static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/static/file.png -------------------------------------------------------------------------------- /docs/api/python/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/static/jquery.js -------------------------------------------------------------------------------- /docs/api/python/static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/static/js/badge_only.js -------------------------------------------------------------------------------- /docs/api/python/static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/api/python/static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/static/js/theme.js -------------------------------------------------------------------------------- /docs/api/python/static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/static/language_data.js -------------------------------------------------------------------------------- /docs/api/python/static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/static/minus.png -------------------------------------------------------------------------------- /docs/api/python/static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/static/plus.png -------------------------------------------------------------------------------- /docs/api/python/static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/static/pygments.css -------------------------------------------------------------------------------- /docs/api/python/static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/static/searchtools.js -------------------------------------------------------------------------------- /docs/api/python/static/sphinx_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/api/python/static/sphinx_highlight.js -------------------------------------------------------------------------------- /docs/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/css/main.css -------------------------------------------------------------------------------- /docs/css/pygments-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/css/pygments-default.css -------------------------------------------------------------------------------- /docs/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/img/favicon.png -------------------------------------------------------------------------------- /docs/img/monitoring-arch-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/img/monitoring-arch-overview.png -------------------------------------------------------------------------------- /docs/img/systemds-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/img/systemds-logo.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/js/main.js -------------------------------------------------------------------------------- /docs/js/vendor/anchor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/js/vendor/anchor.min.js -------------------------------------------------------------------------------- /docs/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /docs/js/vendor/jquery-1.12.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/js/vendor/jquery-1.12.0.min.js -------------------------------------------------------------------------------- /docs/performance/SparseFormats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/performance/SparseFormats.md -------------------------------------------------------------------------------- /docs/site/algorithms-bibliography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/algorithms-bibliography.md -------------------------------------------------------------------------------- /docs/site/algorithms-classification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/algorithms-classification.md -------------------------------------------------------------------------------- /docs/site/algorithms-clustering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/algorithms-clustering.md -------------------------------------------------------------------------------- /docs/site/algorithms-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/algorithms-reference.md -------------------------------------------------------------------------------- /docs/site/algorithms-regression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/algorithms-regression.md -------------------------------------------------------------------------------- /docs/site/algorithms-survival-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/algorithms-survival-analysis.md -------------------------------------------------------------------------------- /docs/site/builtins-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/builtins-reference.md -------------------------------------------------------------------------------- /docs/site/dml-language-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/dml-language-reference.md -------------------------------------------------------------------------------- /docs/site/dml-vs-r-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/dml-vs-r-guide.md -------------------------------------------------------------------------------- /docs/site/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/docker.md -------------------------------------------------------------------------------- /docs/site/entity-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/entity-resolution.md -------------------------------------------------------------------------------- /docs/site/federated-monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/federated-monitoring.md -------------------------------------------------------------------------------- /docs/site/gpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/gpu.md -------------------------------------------------------------------------------- /docs/site/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/install.md -------------------------------------------------------------------------------- /docs/site/native-backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/native-backend.md -------------------------------------------------------------------------------- /docs/site/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/release-process.md -------------------------------------------------------------------------------- /docs/site/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/run.md -------------------------------------------------------------------------------- /docs/site/windows-source-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/site/windows-source-installation.md -------------------------------------------------------------------------------- /docs/updateAPI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/docs/updateAPI.sh -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/pom.xml -------------------------------------------------------------------------------- /scripts/algorithms/Cox-predict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/algorithms/Cox-predict.dml -------------------------------------------------------------------------------- /scripts/algorithms/StepGLM.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/algorithms/StepGLM.dml -------------------------------------------------------------------------------- /scripts/algorithms/Univar-Stats.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/algorithms/Univar-Stats.dml -------------------------------------------------------------------------------- /scripts/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/aws/README.md -------------------------------------------------------------------------------- /scripts/aws/aws_ec2_table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/aws/aws_ec2_table.csv -------------------------------------------------------------------------------- /scripts/aws/run_systemds_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/aws/run_systemds_script.sh -------------------------------------------------------------------------------- /scripts/aws/spinup_systemds_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/aws/spinup_systemds_cluster.sh -------------------------------------------------------------------------------- /scripts/aws/systemds_cluster.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/aws/systemds_cluster.config -------------------------------------------------------------------------------- /scripts/aws/terminate_systemds_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/aws/terminate_systemds_cluster.sh -------------------------------------------------------------------------------- /scripts/builtin/WoE.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/WoE.dml -------------------------------------------------------------------------------- /scripts/builtin/WoEApply.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/WoEApply.dml -------------------------------------------------------------------------------- /scripts/builtin/abstain.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/abstain.dml -------------------------------------------------------------------------------- /scripts/builtin/adasyn.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/adasyn.dml -------------------------------------------------------------------------------- /scripts/builtin/als.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/als.dml -------------------------------------------------------------------------------- /scripts/builtin/alsCG.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/alsCG.dml -------------------------------------------------------------------------------- /scripts/builtin/alsDS.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/alsDS.dml -------------------------------------------------------------------------------- /scripts/builtin/alsPredict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/alsPredict.dml -------------------------------------------------------------------------------- /scripts/builtin/alsTopkPredict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/alsTopkPredict.dml -------------------------------------------------------------------------------- /scripts/builtin/ampute.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/ampute.dml -------------------------------------------------------------------------------- /scripts/builtin/apply_pipeline.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/apply_pipeline.dml -------------------------------------------------------------------------------- /scripts/builtin/arima.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/arima.dml -------------------------------------------------------------------------------- /scripts/builtin/auc.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/auc.dml -------------------------------------------------------------------------------- /scripts/builtin/autoencoder_2layer.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/autoencoder_2layer.dml -------------------------------------------------------------------------------- /scripts/builtin/bandit.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/bandit.dml -------------------------------------------------------------------------------- /scripts/builtin/bivar.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/bivar.dml -------------------------------------------------------------------------------- /scripts/builtin/components.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/components.dml -------------------------------------------------------------------------------- /scripts/builtin/confusionMatrix.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/confusionMatrix.dml -------------------------------------------------------------------------------- /scripts/builtin/cooccurrenceMatrix.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/cooccurrenceMatrix.dml -------------------------------------------------------------------------------- /scripts/builtin/cor.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/cor.dml -------------------------------------------------------------------------------- /scripts/builtin/correctTypos.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/correctTypos.dml -------------------------------------------------------------------------------- /scripts/builtin/correctTyposApply.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/correctTyposApply.dml -------------------------------------------------------------------------------- /scripts/builtin/cox.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/cox.dml -------------------------------------------------------------------------------- /scripts/builtin/cspline.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/cspline.dml -------------------------------------------------------------------------------- /scripts/builtin/csplineCG.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/csplineCG.dml -------------------------------------------------------------------------------- /scripts/builtin/csplineDS.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/csplineDS.dml -------------------------------------------------------------------------------- /scripts/builtin/cvlm.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/cvlm.dml -------------------------------------------------------------------------------- /scripts/builtin/dbscan.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/dbscan.dml -------------------------------------------------------------------------------- /scripts/builtin/dbscanApply.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/dbscanApply.dml -------------------------------------------------------------------------------- /scripts/builtin/decisionTree.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/decisionTree.dml -------------------------------------------------------------------------------- /scripts/builtin/decisionTreePredict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/decisionTreePredict.dml -------------------------------------------------------------------------------- /scripts/builtin/dedup.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/dedup.dml -------------------------------------------------------------------------------- /scripts/builtin/deepWalk.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/deepWalk.dml -------------------------------------------------------------------------------- /scripts/builtin/denialConstraints.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/denialConstraints.dml -------------------------------------------------------------------------------- /scripts/builtin/differenceStatistics.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/differenceStatistics.dml -------------------------------------------------------------------------------- /scripts/builtin/discoverFD.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/discoverFD.dml -------------------------------------------------------------------------------- /scripts/builtin/dist.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/dist.dml -------------------------------------------------------------------------------- /scripts/builtin/dmv.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/dmv.dml -------------------------------------------------------------------------------- /scripts/builtin/ema.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/ema.dml -------------------------------------------------------------------------------- /scripts/builtin/executePipeline.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/executePipeline.dml -------------------------------------------------------------------------------- /scripts/builtin/f1Score.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/f1Score.dml -------------------------------------------------------------------------------- /scripts/builtin/fdr.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/fdr.dml -------------------------------------------------------------------------------- /scripts/builtin/ffPredict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/ffPredict.dml -------------------------------------------------------------------------------- /scripts/builtin/ffTrain.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/ffTrain.dml -------------------------------------------------------------------------------- /scripts/builtin/fit_pipeline.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/fit_pipeline.dml -------------------------------------------------------------------------------- /scripts/builtin/fixInvalidLengths.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/fixInvalidLengths.dml -------------------------------------------------------------------------------- /scripts/builtin/fixInvalidLengthsApply.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/fixInvalidLengthsApply.dml -------------------------------------------------------------------------------- /scripts/builtin/flattenQuantile.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/flattenQuantile.dml -------------------------------------------------------------------------------- /scripts/builtin/frameSort.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/frameSort.dml -------------------------------------------------------------------------------- /scripts/builtin/frequencyEncode.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/frequencyEncode.dml -------------------------------------------------------------------------------- /scripts/builtin/frequencyEncodeApply.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/frequencyEncodeApply.dml -------------------------------------------------------------------------------- /scripts/builtin/garch.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/garch.dml -------------------------------------------------------------------------------- /scripts/builtin/gaussianClassifier.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/gaussianClassifier.dml -------------------------------------------------------------------------------- /scripts/builtin/getAccuracy.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/getAccuracy.dml -------------------------------------------------------------------------------- /scripts/builtin/glm.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/glm.dml -------------------------------------------------------------------------------- /scripts/builtin/glmPredict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/glmPredict.dml -------------------------------------------------------------------------------- /scripts/builtin/glove.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/glove.dml -------------------------------------------------------------------------------- /scripts/builtin/gmm.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/gmm.dml -------------------------------------------------------------------------------- /scripts/builtin/gmmPredict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/gmmPredict.dml -------------------------------------------------------------------------------- /scripts/builtin/gnmf.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/gnmf.dml -------------------------------------------------------------------------------- /scripts/builtin/gridSearch.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/gridSearch.dml -------------------------------------------------------------------------------- /scripts/builtin/hospitalResidencyMatch.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/hospitalResidencyMatch.dml -------------------------------------------------------------------------------- /scripts/builtin/hyperband.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/hyperband.dml -------------------------------------------------------------------------------- /scripts/builtin/img_brightness.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/img_brightness.dml -------------------------------------------------------------------------------- /scripts/builtin/img_crop.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/img_crop.dml -------------------------------------------------------------------------------- /scripts/builtin/img_crop_linearized.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/img_crop_linearized.dml -------------------------------------------------------------------------------- /scripts/builtin/img_cutout.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/img_cutout.dml -------------------------------------------------------------------------------- /scripts/builtin/img_cutout_linearized.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/img_cutout_linearized.dml -------------------------------------------------------------------------------- /scripts/builtin/img_invert.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/img_invert.dml -------------------------------------------------------------------------------- /scripts/builtin/img_invert_linearized.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/img_invert_linearized.dml -------------------------------------------------------------------------------- /scripts/builtin/img_mirror.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/img_mirror.dml -------------------------------------------------------------------------------- /scripts/builtin/img_mirror_linearized.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/img_mirror_linearized.dml -------------------------------------------------------------------------------- /scripts/builtin/img_posterize.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/img_posterize.dml -------------------------------------------------------------------------------- /scripts/builtin/img_rotate.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/img_rotate.dml -------------------------------------------------------------------------------- /scripts/builtin/img_rotate_linearized.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/img_rotate_linearized.dml -------------------------------------------------------------------------------- /scripts/builtin/img_sample_pairing.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/img_sample_pairing.dml -------------------------------------------------------------------------------- /scripts/builtin/img_shear.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/img_shear.dml -------------------------------------------------------------------------------- /scripts/builtin/img_shear_linearized.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/img_shear_linearized.dml -------------------------------------------------------------------------------- /scripts/builtin/img_transform.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/img_transform.dml -------------------------------------------------------------------------------- /scripts/builtin/img_translate.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/img_translate.dml -------------------------------------------------------------------------------- /scripts/builtin/impurityMeasures.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/impurityMeasures.dml -------------------------------------------------------------------------------- /scripts/builtin/imputeByFD.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/imputeByFD.dml -------------------------------------------------------------------------------- /scripts/builtin/imputeByFDApply.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/imputeByFDApply.dml -------------------------------------------------------------------------------- /scripts/builtin/imputeByKNN.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/imputeByKNN.dml -------------------------------------------------------------------------------- /scripts/builtin/imputeByMean.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/imputeByMean.dml -------------------------------------------------------------------------------- /scripts/builtin/imputeByMeanApply.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/imputeByMeanApply.dml -------------------------------------------------------------------------------- /scripts/builtin/imputeByMedian.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/imputeByMedian.dml -------------------------------------------------------------------------------- /scripts/builtin/imputeByMedianApply.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/imputeByMedianApply.dml -------------------------------------------------------------------------------- /scripts/builtin/imputeByMode.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/imputeByMode.dml -------------------------------------------------------------------------------- /scripts/builtin/imputeByModeApply.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/imputeByModeApply.dml -------------------------------------------------------------------------------- /scripts/builtin/incSliceLine.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/incSliceLine.dml -------------------------------------------------------------------------------- /scripts/builtin/intersect.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/intersect.dml -------------------------------------------------------------------------------- /scripts/builtin/km.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/km.dml -------------------------------------------------------------------------------- /scripts/builtin/kmeans.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/kmeans.dml -------------------------------------------------------------------------------- /scripts/builtin/kmeansPredict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/kmeansPredict.dml -------------------------------------------------------------------------------- /scripts/builtin/knn.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/knn.dml -------------------------------------------------------------------------------- /scripts/builtin/knnGraph.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/knnGraph.dml -------------------------------------------------------------------------------- /scripts/builtin/knnbf.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/knnbf.dml -------------------------------------------------------------------------------- /scripts/builtin/l2svm.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/l2svm.dml -------------------------------------------------------------------------------- /scripts/builtin/l2svmPredict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/l2svmPredict.dml -------------------------------------------------------------------------------- /scripts/builtin/lasso.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/lasso.dml -------------------------------------------------------------------------------- /scripts/builtin/lenetPredict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/lenetPredict.dml -------------------------------------------------------------------------------- /scripts/builtin/lenetTrain.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/lenetTrain.dml -------------------------------------------------------------------------------- /scripts/builtin/lm.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/lm.dml -------------------------------------------------------------------------------- /scripts/builtin/lmCG.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/lmCG.dml -------------------------------------------------------------------------------- /scripts/builtin/lmDS.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/lmDS.dml -------------------------------------------------------------------------------- /scripts/builtin/lmPredict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/lmPredict.dml -------------------------------------------------------------------------------- /scripts/builtin/lmPredictStats.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/lmPredictStats.dml -------------------------------------------------------------------------------- /scripts/builtin/logSumExp.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/logSumExp.dml -------------------------------------------------------------------------------- /scripts/builtin/mae.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/mae.dml -------------------------------------------------------------------------------- /scripts/builtin/mape.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/mape.dml -------------------------------------------------------------------------------- /scripts/builtin/matrixProfile.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/matrixProfile.dml -------------------------------------------------------------------------------- /scripts/builtin/mcc.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/mcc.dml -------------------------------------------------------------------------------- /scripts/builtin/mdedup.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/mdedup.dml -------------------------------------------------------------------------------- /scripts/builtin/mice.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/mice.dml -------------------------------------------------------------------------------- /scripts/builtin/miceApply.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/miceApply.dml -------------------------------------------------------------------------------- /scripts/builtin/mse.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/mse.dml -------------------------------------------------------------------------------- /scripts/builtin/msmape.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/msmape.dml -------------------------------------------------------------------------------- /scripts/builtin/msvm.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/msvm.dml -------------------------------------------------------------------------------- /scripts/builtin/msvmPredict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/msvmPredict.dml -------------------------------------------------------------------------------- /scripts/builtin/multiLogReg.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/multiLogReg.dml -------------------------------------------------------------------------------- /scripts/builtin/multiLogRegPredict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/multiLogRegPredict.dml -------------------------------------------------------------------------------- /scripts/builtin/na_locf.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/na_locf.dml -------------------------------------------------------------------------------- /scripts/builtin/naiveBayes.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/naiveBayes.dml -------------------------------------------------------------------------------- /scripts/builtin/naiveBayesPredict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/naiveBayesPredict.dml -------------------------------------------------------------------------------- /scripts/builtin/normalize.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/normalize.dml -------------------------------------------------------------------------------- /scripts/builtin/normalizeApply.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/normalizeApply.dml -------------------------------------------------------------------------------- /scripts/builtin/nrmse.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/nrmse.dml -------------------------------------------------------------------------------- /scripts/builtin/outlier.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/outlier.dml -------------------------------------------------------------------------------- /scripts/builtin/outlierByArima.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/outlierByArima.dml -------------------------------------------------------------------------------- /scripts/builtin/outlierByIQR.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/outlierByIQR.dml -------------------------------------------------------------------------------- /scripts/builtin/outlierByIQRApply.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/outlierByIQRApply.dml -------------------------------------------------------------------------------- /scripts/builtin/outlierBySd.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/outlierBySd.dml -------------------------------------------------------------------------------- /scripts/builtin/outlierBySdApply.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/outlierBySdApply.dml -------------------------------------------------------------------------------- /scripts/builtin/pageRank.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/pageRank.dml -------------------------------------------------------------------------------- /scripts/builtin/pca.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/pca.dml -------------------------------------------------------------------------------- /scripts/builtin/pcaInverse.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/pcaInverse.dml -------------------------------------------------------------------------------- /scripts/builtin/pcaTransform.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/pcaTransform.dml -------------------------------------------------------------------------------- /scripts/builtin/pnmf.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/pnmf.dml -------------------------------------------------------------------------------- /scripts/builtin/ppca.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/ppca.dml -------------------------------------------------------------------------------- /scripts/builtin/psnr.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/psnr.dml -------------------------------------------------------------------------------- /scripts/builtin/quantizeByCluster.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/quantizeByCluster.dml -------------------------------------------------------------------------------- /scripts/builtin/raGroupby.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/raGroupby.dml -------------------------------------------------------------------------------- /scripts/builtin/raJoin.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/raJoin.dml -------------------------------------------------------------------------------- /scripts/builtin/raSelection.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/raSelection.dml -------------------------------------------------------------------------------- /scripts/builtin/randomForest.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/randomForest.dml -------------------------------------------------------------------------------- /scripts/builtin/randomForestPredict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/randomForestPredict.dml -------------------------------------------------------------------------------- /scripts/builtin/rmse.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/rmse.dml -------------------------------------------------------------------------------- /scripts/builtin/scale.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/scale.dml -------------------------------------------------------------------------------- /scripts/builtin/scaleApply.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/scaleApply.dml -------------------------------------------------------------------------------- /scripts/builtin/scaleMinMax.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/scaleMinMax.dml -------------------------------------------------------------------------------- /scripts/builtin/selectByVarThresh.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/selectByVarThresh.dml -------------------------------------------------------------------------------- /scripts/builtin/ses.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/ses.dml -------------------------------------------------------------------------------- /scripts/builtin/setdiff.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/setdiff.dml -------------------------------------------------------------------------------- /scripts/builtin/shapExplainer.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/shapExplainer.dml -------------------------------------------------------------------------------- /scripts/builtin/sherlock.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/sherlock.dml -------------------------------------------------------------------------------- /scripts/builtin/sherlockPredict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/sherlockPredict.dml -------------------------------------------------------------------------------- /scripts/builtin/shortestPath.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/shortestPath.dml -------------------------------------------------------------------------------- /scripts/builtin/sigmoid.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/sigmoid.dml -------------------------------------------------------------------------------- /scripts/builtin/skewness.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/skewness.dml -------------------------------------------------------------------------------- /scripts/builtin/sliceLine.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/sliceLine.dml -------------------------------------------------------------------------------- /scripts/builtin/sliceLineDebug.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/sliceLineDebug.dml -------------------------------------------------------------------------------- /scripts/builtin/sliceLineExtract.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/sliceLineExtract.dml -------------------------------------------------------------------------------- /scripts/builtin/slicefinder.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/slicefinder.dml -------------------------------------------------------------------------------- /scripts/builtin/smape.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/smape.dml -------------------------------------------------------------------------------- /scripts/builtin/smote.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/smote.dml -------------------------------------------------------------------------------- /scripts/builtin/softmax.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/softmax.dml -------------------------------------------------------------------------------- /scripts/builtin/split.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/split.dml -------------------------------------------------------------------------------- /scripts/builtin/splitBalanced.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/splitBalanced.dml -------------------------------------------------------------------------------- /scripts/builtin/sqrtMatrix.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/sqrtMatrix.dml -------------------------------------------------------------------------------- /scripts/builtin/stableMarriage.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/stableMarriage.dml -------------------------------------------------------------------------------- /scripts/builtin/statsNA.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/statsNA.dml -------------------------------------------------------------------------------- /scripts/builtin/steplm.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/steplm.dml -------------------------------------------------------------------------------- /scripts/builtin/stratstats.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/stratstats.dml -------------------------------------------------------------------------------- /scripts/builtin/symmetricDifference.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/symmetricDifference.dml -------------------------------------------------------------------------------- /scripts/builtin/tSNE.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/tSNE.dml -------------------------------------------------------------------------------- /scripts/builtin/toOneHot.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/toOneHot.dml -------------------------------------------------------------------------------- /scripts/builtin/tomeklink.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/tomeklink.dml -------------------------------------------------------------------------------- /scripts/builtin/topk_cleaning.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/topk_cleaning.dml -------------------------------------------------------------------------------- /scripts/builtin/underSampling.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/underSampling.dml -------------------------------------------------------------------------------- /scripts/builtin/union.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/union.dml -------------------------------------------------------------------------------- /scripts/builtin/univar.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/univar.dml -------------------------------------------------------------------------------- /scripts/builtin/vectorToCsv.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/vectorToCsv.dml -------------------------------------------------------------------------------- /scripts/builtin/wer.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/wer.dml -------------------------------------------------------------------------------- /scripts/builtin/winsorize.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/winsorize.dml -------------------------------------------------------------------------------- /scripts/builtin/winsorizeApply.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/winsorizeApply.dml -------------------------------------------------------------------------------- /scripts/builtin/xdummy1.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/xdummy1.dml -------------------------------------------------------------------------------- /scripts/builtin/xdummy2.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/xdummy2.dml -------------------------------------------------------------------------------- /scripts/builtin/xgboost.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/builtin/xgboost.dml -------------------------------------------------------------------------------- /scripts/data_prep/create_binary_chunks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/data_prep/create_binary_chunks.py -------------------------------------------------------------------------------- /scripts/data_prep/prepare_raw_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/data_prep/prepare_raw_imagenet.py -------------------------------------------------------------------------------- /scripts/monitoring/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/.browserslistrc -------------------------------------------------------------------------------- /scripts/monitoring/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/.editorconfig -------------------------------------------------------------------------------- /scripts/monitoring/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/.gitignore -------------------------------------------------------------------------------- /scripts/monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/README.md -------------------------------------------------------------------------------- /scripts/monitoring/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/angular.json -------------------------------------------------------------------------------- /scripts/monitoring/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/karma.conf.js -------------------------------------------------------------------------------- /scripts/monitoring/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/package.json -------------------------------------------------------------------------------- /scripts/monitoring/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/src/app/app.component.ts -------------------------------------------------------------------------------- /scripts/monitoring/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/src/app/app.module.ts -------------------------------------------------------------------------------- /scripts/monitoring/src/app/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/src/app/constants.ts -------------------------------------------------------------------------------- /scripts/monitoring/src/app/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/src/app/utils.ts -------------------------------------------------------------------------------- /scripts/monitoring/src/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/src/assets/favicon.png -------------------------------------------------------------------------------- /scripts/monitoring/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/src/index.html -------------------------------------------------------------------------------- /scripts/monitoring/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/src/main.ts -------------------------------------------------------------------------------- /scripts/monitoring/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/src/polyfills.ts -------------------------------------------------------------------------------- /scripts/monitoring/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/src/styles.scss -------------------------------------------------------------------------------- /scripts/monitoring/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/src/test.ts -------------------------------------------------------------------------------- /scripts/monitoring/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/tsconfig.app.json -------------------------------------------------------------------------------- /scripts/monitoring/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/tsconfig.json -------------------------------------------------------------------------------- /scripts/monitoring/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/monitoring/tsconfig.spec.json -------------------------------------------------------------------------------- /scripts/nn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/README.md -------------------------------------------------------------------------------- /scripts/nn/examples/AttentionExample.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/examples/AttentionExample.dml -------------------------------------------------------------------------------- /scripts/nn/examples/Example-ResNet.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/examples/Example-ResNet.dml -------------------------------------------------------------------------------- /scripts/nn/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/examples/README.md -------------------------------------------------------------------------------- /scripts/nn/examples/efficientNet.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/examples/efficientNet.dml -------------------------------------------------------------------------------- /scripts/nn/examples/imagenet_alexnet.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/examples/imagenet_alexnet.dml -------------------------------------------------------------------------------- /scripts/nn/examples/imagenet_resnet.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/examples/imagenet_resnet.dml -------------------------------------------------------------------------------- /scripts/nn/examples/load_imagenet_csv.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/examples/load_imagenet_csv.dml -------------------------------------------------------------------------------- /scripts/nn/examples/mnist_lenet-predict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/examples/mnist_lenet-predict.dml -------------------------------------------------------------------------------- /scripts/nn/examples/mnist_lenet-train.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/examples/mnist_lenet-train.dml -------------------------------------------------------------------------------- /scripts/nn/examples/mnist_lenet.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/examples/mnist_lenet.dml -------------------------------------------------------------------------------- /scripts/nn/examples/mnist_resnet.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/examples/mnist_resnet.dml -------------------------------------------------------------------------------- /scripts/nn/examples/mnist_softmax-train.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/examples/mnist_softmax-train.dml -------------------------------------------------------------------------------- /scripts/nn/examples/mnist_softmax.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/examples/mnist_softmax.dml -------------------------------------------------------------------------------- /scripts/nn/examples/ncf-dummy-data.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/examples/ncf-dummy-data.dml -------------------------------------------------------------------------------- /scripts/nn/examples/ncf-real-data.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/examples/ncf-real-data.dml -------------------------------------------------------------------------------- /scripts/nn/examples/sherlockNet.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/examples/sherlockNet.dml -------------------------------------------------------------------------------- /scripts/nn/examples/u-net.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/examples/u-net.dml -------------------------------------------------------------------------------- /scripts/nn/layers/affine.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/affine.dml -------------------------------------------------------------------------------- /scripts/nn/layers/attention.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/attention.dml -------------------------------------------------------------------------------- /scripts/nn/layers/avg_pool2d_builtin.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/avg_pool2d_builtin.dml -------------------------------------------------------------------------------- /scripts/nn/layers/batch_norm1d.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/batch_norm1d.dml -------------------------------------------------------------------------------- /scripts/nn/layers/batch_norm2d.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/batch_norm2d.dml -------------------------------------------------------------------------------- /scripts/nn/layers/batch_norm2d_old.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/batch_norm2d_old.dml -------------------------------------------------------------------------------- /scripts/nn/layers/bert_layer.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/bert_layer.dml -------------------------------------------------------------------------------- /scripts/nn/layers/bilstm.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/bilstm.dml -------------------------------------------------------------------------------- /scripts/nn/layers/conv1d.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/conv1d.dml -------------------------------------------------------------------------------- /scripts/nn/layers/conv2d.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/conv2d.dml -------------------------------------------------------------------------------- /scripts/nn/layers/conv2d_builtin.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/conv2d_builtin.dml -------------------------------------------------------------------------------- /scripts/nn/layers/conv2d_depthwise.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/conv2d_depthwise.dml -------------------------------------------------------------------------------- /scripts/nn/layers/conv2d_transpose.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/conv2d_transpose.dml -------------------------------------------------------------------------------- /scripts/nn/layers/cross_entropy_loss.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/cross_entropy_loss.dml -------------------------------------------------------------------------------- /scripts/nn/layers/cross_entropy_loss2d.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/cross_entropy_loss2d.dml -------------------------------------------------------------------------------- /scripts/nn/layers/dropout.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/dropout.dml -------------------------------------------------------------------------------- /scripts/nn/layers/elu.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/elu.dml -------------------------------------------------------------------------------- /scripts/nn/layers/embedding.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/embedding.dml -------------------------------------------------------------------------------- /scripts/nn/layers/feedForward.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/feedForward.dml -------------------------------------------------------------------------------- /scripts/nn/layers/fm.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/fm.dml -------------------------------------------------------------------------------- /scripts/nn/layers/gelu.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/gelu.dml -------------------------------------------------------------------------------- /scripts/nn/layers/global_avg_pool2d.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/global_avg_pool2d.dml -------------------------------------------------------------------------------- /scripts/nn/layers/l1_loss.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/l1_loss.dml -------------------------------------------------------------------------------- /scripts/nn/layers/l1_reg.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/l1_reg.dml -------------------------------------------------------------------------------- /scripts/nn/layers/l2_loss.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/l2_loss.dml -------------------------------------------------------------------------------- /scripts/nn/layers/l2_reg.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/l2_reg.dml -------------------------------------------------------------------------------- /scripts/nn/layers/leaky_relu.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/leaky_relu.dml -------------------------------------------------------------------------------- /scripts/nn/layers/lenetForwardPass.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/lenetForwardPass.dml -------------------------------------------------------------------------------- /scripts/nn/layers/log_loss.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/log_loss.dml -------------------------------------------------------------------------------- /scripts/nn/layers/logcosh_loss.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/logcosh_loss.dml -------------------------------------------------------------------------------- /scripts/nn/layers/low_rank_affine.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/low_rank_affine.dml -------------------------------------------------------------------------------- /scripts/nn/layers/lrn.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/lrn.dml -------------------------------------------------------------------------------- /scripts/nn/layers/lstm.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/lstm.dml -------------------------------------------------------------------------------- /scripts/nn/layers/lstm_staging.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/lstm_staging.dml -------------------------------------------------------------------------------- /scripts/nn/layers/max_pool2d.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/max_pool2d.dml -------------------------------------------------------------------------------- /scripts/nn/layers/max_pool2d_builtin.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/max_pool2d_builtin.dml -------------------------------------------------------------------------------- /scripts/nn/layers/mbconv.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/mbconv.dml -------------------------------------------------------------------------------- /scripts/nn/layers/multi_attention.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/multi_attention.dml -------------------------------------------------------------------------------- /scripts/nn/layers/relu.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/relu.dml -------------------------------------------------------------------------------- /scripts/nn/layers/rnn.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/rnn.dml -------------------------------------------------------------------------------- /scripts/nn/layers/scale_shift1d.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/scale_shift1d.dml -------------------------------------------------------------------------------- /scripts/nn/layers/scale_shift2d.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/scale_shift2d.dml -------------------------------------------------------------------------------- /scripts/nn/layers/selu.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/selu.dml -------------------------------------------------------------------------------- /scripts/nn/layers/sigmoid.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/sigmoid.dml -------------------------------------------------------------------------------- /scripts/nn/layers/silu.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/silu.dml -------------------------------------------------------------------------------- /scripts/nn/layers/softmax.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/softmax.dml -------------------------------------------------------------------------------- /scripts/nn/layers/softmax2d.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/softmax2d.dml -------------------------------------------------------------------------------- /scripts/nn/layers/tanh.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/tanh.dml -------------------------------------------------------------------------------- /scripts/nn/layers/upsample2d.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/layers/upsample2d.dml -------------------------------------------------------------------------------- /scripts/nn/networks/alexnet.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/networks/alexnet.dml -------------------------------------------------------------------------------- /scripts/nn/networks/resnet.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/networks/resnet.dml -------------------------------------------------------------------------------- /scripts/nn/networks/resnet101.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/networks/resnet101.dml -------------------------------------------------------------------------------- /scripts/nn/networks/resnet152.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/networks/resnet152.dml -------------------------------------------------------------------------------- /scripts/nn/networks/resnet18.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/networks/resnet18.dml -------------------------------------------------------------------------------- /scripts/nn/networks/resnet34.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/networks/resnet34.dml -------------------------------------------------------------------------------- /scripts/nn/networks/resnet50.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/networks/resnet50.dml -------------------------------------------------------------------------------- /scripts/nn/networks/resnet_util.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/networks/resnet_util.dml -------------------------------------------------------------------------------- /scripts/nn/optim/adagrad.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/optim/adagrad.dml -------------------------------------------------------------------------------- /scripts/nn/optim/adam.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/optim/adam.dml -------------------------------------------------------------------------------- /scripts/nn/optim/adamw.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/optim/adamw.dml -------------------------------------------------------------------------------- /scripts/nn/optim/lars.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/optim/lars.dml -------------------------------------------------------------------------------- /scripts/nn/optim/lars_util.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/optim/lars_util.dml -------------------------------------------------------------------------------- /scripts/nn/optim/rmsprop.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/optim/rmsprop.dml -------------------------------------------------------------------------------- /scripts/nn/optim/scaled_gd.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/optim/scaled_gd.dml -------------------------------------------------------------------------------- /scripts/nn/optim/sgd.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/optim/sgd.dml -------------------------------------------------------------------------------- /scripts/nn/optim/sgd_momentum.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/optim/sgd_momentum.dml -------------------------------------------------------------------------------- /scripts/nn/optim/sgd_nesterov.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/optim/sgd_nesterov.dml -------------------------------------------------------------------------------- /scripts/nn/util.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/nn/util.dml -------------------------------------------------------------------------------- /scripts/perftest/MatrixMult.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/MatrixMult.sh -------------------------------------------------------------------------------- /scripts/perftest/MatrixTranspose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/MatrixTranspose.sh -------------------------------------------------------------------------------- /scripts/perftest/conf/SystemDS-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/conf/SystemDS-config.xml -------------------------------------------------------------------------------- /scripts/perftest/conf/log4j-off.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/conf/log4j-off.properties -------------------------------------------------------------------------------- /scripts/perftest/conf/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/conf/log4j.properties -------------------------------------------------------------------------------- /scripts/perftest/conf/mkl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/conf/mkl.xml -------------------------------------------------------------------------------- /scripts/perftest/conf/openblas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/conf/openblas.xml -------------------------------------------------------------------------------- /scripts/perftest/conf/std.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/conf/std.xml -------------------------------------------------------------------------------- /scripts/perftest/datagen/genALSData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/datagen/genALSData.sh -------------------------------------------------------------------------------- /scripts/perftest/datagen/genBinomialData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/datagen/genBinomialData.sh -------------------------------------------------------------------------------- /scripts/perftest/datagen/genIOData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/datagen/genIOData.sh -------------------------------------------------------------------------------- /scripts/perftest/datagen/genL2SVMData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/datagen/genL2SVMData.sh -------------------------------------------------------------------------------- /scripts/perftest/fed/genALS_FedData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/fed/genALS_FedData.sh -------------------------------------------------------------------------------- /scripts/perftest/fed/runALSFed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/fed/runALSFed.sh -------------------------------------------------------------------------------- /scripts/perftest/fed/runALS_CG_Fed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/fed/runALS_CG_Fed.sh -------------------------------------------------------------------------------- /scripts/perftest/fed/runAllFed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/fed/runAllFed.sh -------------------------------------------------------------------------------- /scripts/perftest/fed/runL2SVMFed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/fed/runL2SVMFed.sh -------------------------------------------------------------------------------- /scripts/perftest/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/log4j.properties -------------------------------------------------------------------------------- /scripts/perftest/python/io/load_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/python/io/load_native.py -------------------------------------------------------------------------------- /scripts/perftest/python/io/load_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/python/io/load_numpy.py -------------------------------------------------------------------------------- /scripts/perftest/python/io/load_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/python/io/load_pandas.py -------------------------------------------------------------------------------- /scripts/perftest/resource/test_ops.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/resource/test_ops.dml -------------------------------------------------------------------------------- /scripts/perftest/runALS_CG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runALS_CG.sh -------------------------------------------------------------------------------- /scripts/perftest/runALS_DS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runALS_DS.sh -------------------------------------------------------------------------------- /scripts/perftest/runAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runAll.sh -------------------------------------------------------------------------------- /scripts/perftest/runAllALS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runAllALS.sh -------------------------------------------------------------------------------- /scripts/perftest/runAllBinomial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runAllBinomial.sh -------------------------------------------------------------------------------- /scripts/perftest/runAllClustering.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runAllClustering.sh -------------------------------------------------------------------------------- /scripts/perftest/runAllIO.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runAllIO.sh -------------------------------------------------------------------------------- /scripts/perftest/runAllMultinomial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runAllMultinomial.sh -------------------------------------------------------------------------------- /scripts/perftest/runAllRegression.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runAllRegression.sh -------------------------------------------------------------------------------- /scripts/perftest/runAllStats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runAllStats.sh -------------------------------------------------------------------------------- /scripts/perftest/runBivarStats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runBivarStats.sh -------------------------------------------------------------------------------- /scripts/perftest/runGLM_binomial_probit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runGLM_binomial_probit.sh -------------------------------------------------------------------------------- /scripts/perftest/runGLM_gamma_log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runGLM_gamma_log.sh -------------------------------------------------------------------------------- /scripts/perftest/runGLM_poisson_log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runGLM_poisson_log.sh -------------------------------------------------------------------------------- /scripts/perftest/runIO.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runIO.sh -------------------------------------------------------------------------------- /scripts/perftest/runKmeans.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runKmeans.sh -------------------------------------------------------------------------------- /scripts/perftest/runL2SVM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runL2SVM.sh -------------------------------------------------------------------------------- /scripts/perftest/runLinearRegCG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runLinearRegCG.sh -------------------------------------------------------------------------------- /scripts/perftest/runLinearRegDS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runLinearRegDS.sh -------------------------------------------------------------------------------- /scripts/perftest/runMSVM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runMSVM.sh -------------------------------------------------------------------------------- /scripts/perftest/runMultiLogReg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runMultiLogReg.sh -------------------------------------------------------------------------------- /scripts/perftest/runNaiveBayes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runNaiveBayes.sh -------------------------------------------------------------------------------- /scripts/perftest/runPCA.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runPCA.sh -------------------------------------------------------------------------------- /scripts/perftest/runStratStats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runStratStats.sh -------------------------------------------------------------------------------- /scripts/perftest/runUnivarStats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/runUnivarStats.sh -------------------------------------------------------------------------------- /scripts/perftest/scripts/GLM-predict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/GLM-predict.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/GLM.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/GLM.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/ImputeByKNN.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/ImputeByKNN.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/Kmeans-predict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/Kmeans-predict.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/Kmeans.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/Kmeans.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/LinearRegCG.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/LinearRegCG.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/LinearRegDS.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/LinearRegDS.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/MM.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/MM.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/MultiLogReg.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/MultiLogReg.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/PCA.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/PCA.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/Univar-Stats.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/Univar-Stats.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/als-predict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/als-predict.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/alsCG.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/alsCG.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/alsDS.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/alsDS.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/bivar-stats.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/bivar-stats.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/changeFormat.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/changeFormat.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/l2-svm-predict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/l2-svm-predict.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/l2-svm.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/l2-svm.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/m-svm-predict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/m-svm-predict.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/m-svm.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/m-svm.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/naive-bayes.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/naive-bayes.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/read.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/read.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/stratstats.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/stratstats.dml -------------------------------------------------------------------------------- /scripts/perftest/scripts/transpose.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/scripts/transpose.dml -------------------------------------------------------------------------------- /scripts/perftest/slab/pipeline/slabSVD.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/slab/pipeline/slabSVD.dml -------------------------------------------------------------------------------- /scripts/perftest/slab/slabUtils.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/slab/slabUtils.dml -------------------------------------------------------------------------------- /scripts/perftest/sparkDML2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/sparkDML2.sh -------------------------------------------------------------------------------- /scripts/perftest/todo/genTreeData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/todo/genTreeData.sh -------------------------------------------------------------------------------- /scripts/perftest/todo/runAllTrees.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/todo/runAllTrees.sh -------------------------------------------------------------------------------- /scripts/perftest/todo/runDecTree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/todo/runDecTree.sh -------------------------------------------------------------------------------- /scripts/perftest/todo/runRandTree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/perftest/todo/runRandTree.sh -------------------------------------------------------------------------------- /scripts/pipelines/properties/param.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/pipelines/properties/param.csv -------------------------------------------------------------------------------- /scripts/pipelines/properties/param.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/pipelines/properties/param.txt -------------------------------------------------------------------------------- /scripts/pipelines/properties/primitives.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/pipelines/properties/primitives.csv -------------------------------------------------------------------------------- /scripts/pipelines/scripts/cleaning.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/pipelines/scripts/cleaning.dml -------------------------------------------------------------------------------- /scripts/pipelines/scripts/utils.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/pipelines/scripts/utils.dml -------------------------------------------------------------------------------- /scripts/resource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/resource/README.md -------------------------------------------------------------------------------- /scripts/resource/aws_regional_prices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/resource/aws_regional_prices.csv -------------------------------------------------------------------------------- /scripts/resource/bin/systemds-ropt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/resource/bin/systemds-ropt -------------------------------------------------------------------------------- /scripts/resource/ec2_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/resource/ec2_stats.csv -------------------------------------------------------------------------------- /scripts/resource/launch/cluster.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/resource/launch/cluster.env -------------------------------------------------------------------------------- /scripts/resource/launch/cluster_launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/resource/launch/cluster_launch.sh -------------------------------------------------------------------------------- /scripts/resource/launch/cluster_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/resource/launch/cluster_utils.sh -------------------------------------------------------------------------------- /scripts/resource/launch/ec2_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/resource/launch/ec2_bootstrap.sh -------------------------------------------------------------------------------- /scripts/resource/launch/single_node.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/resource/launch/single_node.env -------------------------------------------------------------------------------- /scripts/resource/options.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/resource/options.properties -------------------------------------------------------------------------------- /scripts/resource/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/resource/requirements.txt -------------------------------------------------------------------------------- /scripts/resource/update_prices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/resource/update_prices.py -------------------------------------------------------------------------------- /scripts/staging/Lanczos.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/Lanczos.dml -------------------------------------------------------------------------------- /scripts/staging/NCF.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/NCF.dml -------------------------------------------------------------------------------- /scripts/staging/PNMF.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/PNMF.dml -------------------------------------------------------------------------------- /scripts/staging/PageRank.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/PageRank.dml -------------------------------------------------------------------------------- /scripts/staging/QR_recursive.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/QR_recursive.dml -------------------------------------------------------------------------------- /scripts/staging/fedplanner/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/fedplanner/graph.py -------------------------------------------------------------------------------- /scripts/staging/fm-binclass.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/fm-binclass.dml -------------------------------------------------------------------------------- /scripts/staging/fm-regression.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/fm-regression.dml -------------------------------------------------------------------------------- /scripts/staging/gaussian_process/mode.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/gaussian_process/mode.dml -------------------------------------------------------------------------------- /scripts/staging/google-cloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/google-cloud/README.md -------------------------------------------------------------------------------- /scripts/staging/hmm/HMM Training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/hmm/HMM Training.py -------------------------------------------------------------------------------- /scripts/staging/hmm/HMM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/hmm/HMM.py -------------------------------------------------------------------------------- /scripts/staging/learnedSampling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/learnedSampling/README.md -------------------------------------------------------------------------------- /scripts/staging/lenet-train.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/lenet-train.dml -------------------------------------------------------------------------------- /scripts/staging/onnx/onnx_systemds/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/onnx/onnx_systemds/util.py -------------------------------------------------------------------------------- /scripts/staging/rbm_minibatch.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/rbm_minibatch.dml -------------------------------------------------------------------------------- /scripts/staging/rbm_predict.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/rbm_predict.dml -------------------------------------------------------------------------------- /scripts/staging/sklearn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/sklearn/.gitignore -------------------------------------------------------------------------------- /scripts/staging/sklearn/mappers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/sklearn/mappers/__init__.py -------------------------------------------------------------------------------- /scripts/staging/sklearn/mappers/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/sklearn/mappers/mapper.py -------------------------------------------------------------------------------- /scripts/staging/sklearn/poc/design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/sklearn/poc/design.rst -------------------------------------------------------------------------------- /scripts/staging/sklearn/poc/poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/sklearn/poc/poc.py -------------------------------------------------------------------------------- /scripts/staging/sklearn/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/sklearn/run_tests.py -------------------------------------------------------------------------------- /scripts/staging/sklearn/tests/input_X.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/sklearn/tests/input_X.csv -------------------------------------------------------------------------------- /scripts/staging/sklearn/tests/input_Y.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/sklearn/tests/input_Y.csv -------------------------------------------------------------------------------- /scripts/staging/sklearn/tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/sklearn/tests/util.py -------------------------------------------------------------------------------- /scripts/staging/ts_alignment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/ts_alignment/README.md -------------------------------------------------------------------------------- /scripts/staging/ts_alignment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/ts_alignment/__init__.py -------------------------------------------------------------------------------- /scripts/staging/ts_alignment/data/x.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/ts_alignment/data/x.csv -------------------------------------------------------------------------------- /scripts/staging/ts_alignment/data/y.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/staging/ts_alignment/data/y.csv -------------------------------------------------------------------------------- /scripts/tutorials/federated/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/tutorials/federated/.gitignore -------------------------------------------------------------------------------- /scripts/tutorials/federated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/tutorials/federated/README.md -------------------------------------------------------------------------------- /scripts/tutorials/federated/code/exp/lm.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/tutorials/federated/code/exp/lm.dml -------------------------------------------------------------------------------- /scripts/tutorials/federated/conf/def.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/tutorials/federated/conf/def.xml -------------------------------------------------------------------------------- /scripts/tutorials/federated/conf/ssl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/tutorials/federated/conf/ssl.xml -------------------------------------------------------------------------------- /scripts/tutorials/federated/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/tutorials/federated/install.sh -------------------------------------------------------------------------------- /scripts/tutorials/federated/parameters.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/tutorials/federated/parameters.sh -------------------------------------------------------------------------------- /scripts/tutorials/federated/portforward.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/tutorials/federated/portforward.sh -------------------------------------------------------------------------------- /scripts/tutorials/federated/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/tutorials/federated/run.sh -------------------------------------------------------------------------------- /scripts/tutorials/federated/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/tutorials/federated/setup.sh -------------------------------------------------------------------------------- /scripts/tutorials/federated/sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/tutorials/federated/sync.sh -------------------------------------------------------------------------------- /scripts/tutorials/tsne/pca-tsne.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/tutorials/tsne/pca-tsne.dml -------------------------------------------------------------------------------- /scripts/utils/csv2bin.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/utils/csv2bin.dml -------------------------------------------------------------------------------- /scripts/utils/dataprep.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/utils/dataprep.dml -------------------------------------------------------------------------------- /scripts/utils/generateData.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/utils/generateData.dml -------------------------------------------------------------------------------- /scripts/utils/head.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/utils/head.dml -------------------------------------------------------------------------------- /scripts/utils/image_utils.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/utils/image_utils.dml -------------------------------------------------------------------------------- /scripts/utils/metrics.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/utils/metrics.dml -------------------------------------------------------------------------------- /scripts/utils/project.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/utils/project.dml -------------------------------------------------------------------------------- /scripts/utils/rowIndexMax.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/utils/rowIndexMax.dml -------------------------------------------------------------------------------- /scripts/utils/sample.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/utils/sample.dml -------------------------------------------------------------------------------- /scripts/utils/shuffle.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/utils/shuffle.dml -------------------------------------------------------------------------------- /scripts/utils/splitXY-dummy.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/utils/splitXY-dummy.dml -------------------------------------------------------------------------------- /scripts/utils/splitXY.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/utils/splitXY.dml -------------------------------------------------------------------------------- /scripts/utils/write.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/scripts/utils/write.dml -------------------------------------------------------------------------------- /src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/assembly/bin.xml -------------------------------------------------------------------------------- /src/assembly/bin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/assembly/bin/LICENSE -------------------------------------------------------------------------------- /src/assembly/bin/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/assembly/bin/NOTICE -------------------------------------------------------------------------------- /src/assembly/bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/assembly/bin/README.md -------------------------------------------------------------------------------- /src/assembly/extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/assembly/extra.xml -------------------------------------------------------------------------------- /src/assembly/extra/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/assembly/extra/LICENSE -------------------------------------------------------------------------------- /src/assembly/extra/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/assembly/extra/NOTICE -------------------------------------------------------------------------------- /src/assembly/source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/assembly/source.xml -------------------------------------------------------------------------------- /src/assembly/source/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/assembly/source/LICENSE -------------------------------------------------------------------------------- /src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /src/main/cpp/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/build.bat -------------------------------------------------------------------------------- /src/main/cpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/build.sh -------------------------------------------------------------------------------- /src/main/cpp/build_BLAS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/build_BLAS.sh -------------------------------------------------------------------------------- /src/main/cpp/build_HE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/build_HE.sh -------------------------------------------------------------------------------- /src/main/cpp/build_mkl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/build_mkl.sh -------------------------------------------------------------------------------- /src/main/cpp/cmake/FindMKL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/cmake/FindMKL.cmake -------------------------------------------------------------------------------- /src/main/cpp/cmake/FindOpenBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/cmake/FindOpenBLAS.cmake -------------------------------------------------------------------------------- /src/main/cpp/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/common.h -------------------------------------------------------------------------------- /src/main/cpp/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/config.h.cmake -------------------------------------------------------------------------------- /src/main/cpp/he/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/he/CMakeLists.txt -------------------------------------------------------------------------------- /src/main/cpp/he/he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/he/he.cpp -------------------------------------------------------------------------------- /src/main/cpp/he/he.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/he/he.h -------------------------------------------------------------------------------- /src/main/cpp/he/libhe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/he/libhe.cpp -------------------------------------------------------------------------------- /src/main/cpp/he/libhe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/he/libhe.h -------------------------------------------------------------------------------- /src/main/cpp/lib/libhe-Linux-x86_64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/lib/libhe-Linux-x86_64.so -------------------------------------------------------------------------------- /src/main/cpp/libmatrixdnn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/libmatrixdnn.cpp -------------------------------------------------------------------------------- /src/main/cpp/libmatrixdnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/libmatrixdnn.h -------------------------------------------------------------------------------- /src/main/cpp/libmatrixmult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/libmatrixmult.cpp -------------------------------------------------------------------------------- /src/main/cpp/libmatrixmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/libmatrixmult.h -------------------------------------------------------------------------------- /src/main/cpp/systemds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/systemds.cpp -------------------------------------------------------------------------------- /src/main/cpp/systemds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cpp/systemds.h -------------------------------------------------------------------------------- /src/main/cuda/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/CMakeLists.txt -------------------------------------------------------------------------------- /src/main/cuda/headers/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/headers/Matrix.h -------------------------------------------------------------------------------- /src/main/cuda/headers/TempStorage.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/headers/TempStorage.cuh -------------------------------------------------------------------------------- /src/main/cuda/headers/agg_ops.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/headers/agg_ops.cuh -------------------------------------------------------------------------------- /src/main/cuda/headers/cum_max.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/headers/cum_max.cuh -------------------------------------------------------------------------------- /src/main/cuda/headers/cum_min.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/headers/cum_min.cuh -------------------------------------------------------------------------------- /src/main/cuda/headers/cum_prod.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/headers/cum_prod.cuh -------------------------------------------------------------------------------- /src/main/cuda/headers/cum_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/headers/cum_scan.cuh -------------------------------------------------------------------------------- /src/main/cuda/headers/cum_sum.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/headers/cum_sum.cuh -------------------------------------------------------------------------------- /src/main/cuda/headers/cum_sum_prod.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/headers/cum_sum_prod.cuh -------------------------------------------------------------------------------- /src/main/cuda/headers/operators.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/headers/operators.cuh -------------------------------------------------------------------------------- /src/main/cuda/headers/reduction.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/headers/reduction.cuh -------------------------------------------------------------------------------- /src/main/cuda/headers/spoof_utils.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/headers/spoof_utils.cuh -------------------------------------------------------------------------------- /src/main/cuda/headers/utils.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/headers/utils.cuh -------------------------------------------------------------------------------- /src/main/cuda/headers/vector_add.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/headers/vector_add.cuh -------------------------------------------------------------------------------- /src/main/cuda/headers/vector_write.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/headers/vector_write.cuh -------------------------------------------------------------------------------- /src/main/cuda/kernels/SystemDS.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/kernels/SystemDS.cu -------------------------------------------------------------------------------- /src/main/cuda/kernels/SystemDS.ptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/kernels/SystemDS.ptx -------------------------------------------------------------------------------- /src/main/cuda/kernels/reduction.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/kernels/reduction.cu -------------------------------------------------------------------------------- /src/main/cuda/kernels/reduction.ptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/kernels/reduction.ptx -------------------------------------------------------------------------------- /src/main/cuda/spoof-launcher/SpoofRowwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/spoof-launcher/SpoofRowwise.h -------------------------------------------------------------------------------- /src/main/cuda/spoof-launcher/host_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/spoof-launcher/host_utils.h -------------------------------------------------------------------------------- /src/main/cuda/spoof-launcher/jni_bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/spoof-launcher/jni_bridge.cpp -------------------------------------------------------------------------------- /src/main/cuda/spoof-launcher/jni_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/spoof-launcher/jni_bridge.h -------------------------------------------------------------------------------- /src/main/cuda/spoof/cellwise.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/spoof/cellwise.cu -------------------------------------------------------------------------------- /src/main/cuda/spoof/functions.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/spoof/functions.cuh -------------------------------------------------------------------------------- /src/main/cuda/spoof/rowwise.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/cuda/spoof/rowwise.cu -------------------------------------------------------------------------------- /src/main/java/Dml.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/java/Dml.tokens -------------------------------------------------------------------------------- /src/main/java/DmlLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/java/DmlLexer.tokens -------------------------------------------------------------------------------- /src/main/javadoc/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/javadoc/overview.html -------------------------------------------------------------------------------- /src/main/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/.gitignore -------------------------------------------------------------------------------- /src/main/python/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/MANIFEST.in -------------------------------------------------------------------------------- /src/main/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/README.md -------------------------------------------------------------------------------- /src/main/python/conf/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/conf/log4j.properties -------------------------------------------------------------------------------- /src/main/python/create_python_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/create_python_dist.py -------------------------------------------------------------------------------- /src/main/python/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/docs/Makefile -------------------------------------------------------------------------------- /src/main/python/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/docs/README.md -------------------------------------------------------------------------------- /src/main/python/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/docs/make.bat -------------------------------------------------------------------------------- /src/main/python/docs/requires-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/docs/requires-docs.txt -------------------------------------------------------------------------------- /src/main/python/docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/docs/source/conf.py -------------------------------------------------------------------------------- /src/main/python/docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/docs/source/index.rst -------------------------------------------------------------------------------- /src/main/python/generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/generator/__init__.py -------------------------------------------------------------------------------- /src/main/python/generator/dml_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/generator/dml_parser.py -------------------------------------------------------------------------------- /src/main/python/generator/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/generator/generator.py -------------------------------------------------------------------------------- /src/main/python/pre_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/pre_setup.py -------------------------------------------------------------------------------- /src/main/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/setup.py -------------------------------------------------------------------------------- /src/main/python/systemds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/systemds/__init__.py -------------------------------------------------------------------------------- /src/main/python/systemds/project_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/systemds/project_info.py -------------------------------------------------------------------------------- /src/main/python/systemds/scuro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/systemds/scuro/__init__.py -------------------------------------------------------------------------------- /src/main/python/systemds/scuro/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/systemds/scuro/main.py -------------------------------------------------------------------------------- /src/main/python/systemds/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/systemds/utils/__init__.py -------------------------------------------------------------------------------- /src/main/python/systemds/utils/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/systemds/utils/consts.py -------------------------------------------------------------------------------- /src/main/python/systemds/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/systemds/utils/helpers.py -------------------------------------------------------------------------------- /src/main/python/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/README.md -------------------------------------------------------------------------------- /src/main/python/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/__init__.py -------------------------------------------------------------------------------- /src/main/python/tests/auto_tests/test_lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/auto_tests/test_lm.py -------------------------------------------------------------------------------- /src/main/python/tests/basics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/basics/__init__.py -------------------------------------------------------------------------------- /src/main/python/tests/docs_test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/docs_test/__init__.py -------------------------------------------------------------------------------- /src/main/python/tests/examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/examples/__init__.py -------------------------------------------------------------------------------- /src/main/python/tests/frame/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/frame/__init__.py -------------------------------------------------------------------------------- /src/main/python/tests/frame/test_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/frame/test_replace.py -------------------------------------------------------------------------------- /src/main/python/tests/frame/test_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/frame/test_slice.py -------------------------------------------------------------------------------- /src/main/python/tests/iotests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/iotests/__init__.py -------------------------------------------------------------------------------- /src/main/python/tests/lineage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/lineage/README.md -------------------------------------------------------------------------------- /src/main/python/tests/lineage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/lineage/__init__.py -------------------------------------------------------------------------------- /src/main/python/tests/lineage/trace1.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/lineage/trace1.dml -------------------------------------------------------------------------------- /src/main/python/tests/list/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/list/__init__.py -------------------------------------------------------------------------------- /src/main/python/tests/list/return_list.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/list/return_list.dml -------------------------------------------------------------------------------- /src/main/python/tests/list/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/list/test_list.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/__init__.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_ceil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_ceil.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_diag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_diag.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_eigen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_eigen.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_exp.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_fft.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_floor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_floor.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_inv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_inv.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_log.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_lu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_lu.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_order.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_print.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_qr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_qr.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_rand.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_roll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_roll.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_sign.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_slice.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_split.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_sqrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_sqrt.py -------------------------------------------------------------------------------- /src/main/python/tests/matrix/test_svd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/matrix/test_svd.py -------------------------------------------------------------------------------- /src/main/python/tests/nn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/nn/__init__.py -------------------------------------------------------------------------------- /src/main/python/tests/nn/test_affine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/nn/test_affine.py -------------------------------------------------------------------------------- /src/main/python/tests/nn/test_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/nn/test_layer.py -------------------------------------------------------------------------------- /src/main/python/tests/nn/test_relu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/nn/test_relu.py -------------------------------------------------------------------------------- /src/main/python/tests/script/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/script/__init__.py -------------------------------------------------------------------------------- /src/main/python/tests/source/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/source/__init__.py -------------------------------------------------------------------------------- /src/main/python/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/python/tests/test_utils.py -------------------------------------------------------------------------------- /src/main/resources/protobuf/Frame.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/main/resources/protobuf/Frame.proto -------------------------------------------------------------------------------- /src/test/config/SystemDS-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/config/SystemDS-config.xml -------------------------------------------------------------------------------- /src/test/resources/component/compress/1-1.csv: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /src/test/resources/component/compress/1-1_y.csv: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /src/test/resources/component/transformers/bert_layer/input_b_V_test4.csv: -------------------------------------------------------------------------------- 1 | 0.196214 2 | 0.029950 3 | -0.243964 4 | 0.236594 5 | -------------------------------------------------------------------------------- /src/test/resources/component/transformers/bert_layer/input_b_context_test4.csv: -------------------------------------------------------------------------------- 1 | 0.473623 2 | 0.317528 3 | 0.474707 4 | -0.036161 5 | -------------------------------------------------------------------------------- /src/test/resources/component/transformers/bert_layer/input_b_out_test4.csv: -------------------------------------------------------------------------------- 1 | 0.053652 2 | -0.104684 3 | 0.357056 4 | 0.139572 5 | -------------------------------------------------------------------------------- /src/test/resources/component/transformers/bert_layer/output_db_context_test4.csv: -------------------------------------------------------------------------------- 1 | -4.979834 2 | 3.744857 3 | 1.099222 4 | 0.135753 5 | -------------------------------------------------------------------------------- /src/test/resources/component/transformers/bert_layer/output_dbeta_ln1_test4.csv: -------------------------------------------------------------------------------- 1 | -0.512412 2 | 0.790681 3 | 0.070611 4 | -0.262950 5 | -------------------------------------------------------------------------------- /src/test/resources/component/transformers/bert_layer/output_dbeta_ln2_test4.csv: -------------------------------------------------------------------------------- 1 | 6.839521 2 | 9.654258 3 | 7.589570 4 | 7.291402 5 | -------------------------------------------------------------------------------- /src/test/resources/component/transformers/multi_attention_layer/input_dcontext_test6.csv: -------------------------------------------------------------------------------- 1 | 0.896445 2 | -------------------------------------------------------------------------------- /src/test/resources/component/transformers/multi_attention_layer/input_key_test3.csv: -------------------------------------------------------------------------------- 1 | 0.174517 2 | -------------------------------------------------------------------------------- /src/test/resources/component/transformers/multi_attention_layer/input_key_test6.csv: -------------------------------------------------------------------------------- 1 | -0.750369 2 | -------------------------------------------------------------------------------- /src/test/resources/component/transformers/multi_attention_layer/input_query_test3.csv: -------------------------------------------------------------------------------- 1 | -0.032375 2 | -------------------------------------------------------------------------------- /src/test/resources/component/transformers/multi_attention_layer/input_query_test6.csv: -------------------------------------------------------------------------------- 1 | -0.556831 2 | -------------------------------------------------------------------------------- /src/test/resources/component/transformers/multi_attention_layer/input_value_test3.csv: -------------------------------------------------------------------------------- 1 | 0.230546 2 | -------------------------------------------------------------------------------- /src/test/resources/component/transformers/multi_attention_layer/input_value_test6.csv: -------------------------------------------------------------------------------- 1 | 0.113262 2 | -------------------------------------------------------------------------------- /src/test/resources/component/transformers/multi_attention_layer/output_context_test3.csv: -------------------------------------------------------------------------------- 1 | 0.230546 2 | -------------------------------------------------------------------------------- /src/test/resources/component/transformers/multi_attention_layer/output_dvalue_test6.csv: -------------------------------------------------------------------------------- 1 | 0.896445 2 | -------------------------------------------------------------------------------- /src/test/resources/datasets/20news/20news.tfspec_recode.json: -------------------------------------------------------------------------------- 1 | { 2 | "ids": true, "recode": [ 1, 2 ] } -------------------------------------------------------------------------------- /src/test/resources/datasets/EEG.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/resources/datasets/EEG.csv -------------------------------------------------------------------------------- /src/test/resources/datasets/Salaries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/resources/datasets/Salaries.csv -------------------------------------------------------------------------------- /src/test/resources/datasets/diabetes/tfspec.json: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/test/resources/datasets/homes3/homes.tfspec_colmap1.json: -------------------------------------------------------------------------------- 1 | { ids:true, "dummycode": [ 2, 7, 1 ] } -------------------------------------------------------------------------------- /src/test/resources/datasets/homes3/homes.tfspec_dummy.json: -------------------------------------------------------------------------------- 1 | { 2 | "ids": true, "dummycode": [ 2, 7, 1 ] } -------------------------------------------------------------------------------- /src/test/resources/datasets/homes3/homes.tfspec_dummy_sparse.json: -------------------------------------------------------------------------------- 1 | {"ids": true, "dummycode": [ 2, 7, 1, 3, 4, 6, 8, 9 ] } -------------------------------------------------------------------------------- /src/test/resources/datasets/homes3/homes.tfspec_recode.json: -------------------------------------------------------------------------------- 1 | { 2 | "ids": true, "recode": [ 1, 2, 7 ] } -------------------------------------------------------------------------------- /src/test/resources/datasets/iris/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/resources/datasets/iris/iris.csv -------------------------------------------------------------------------------- /src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /src/test/scripts/applications/glm/GLM.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/applications/glm/GLM.R -------------------------------------------------------------------------------- /src/test/scripts/applications/glm/GLM.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/applications/glm/GLM.dml -------------------------------------------------------------------------------- /src/test/scripts/applications/gnmf/GNMF.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/applications/gnmf/GNMF.R -------------------------------------------------------------------------------- /src/test/scripts/applications/hits/HITS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/applications/hits/HITS.R -------------------------------------------------------------------------------- /src/test/scripts/applications/id3/id3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/applications/id3/id3.R -------------------------------------------------------------------------------- /src/test/scripts/applications/id3/id3.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/applications/id3/id3.dml -------------------------------------------------------------------------------- /src/test/scripts/applications/nn/util.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/applications/nn/util.dml -------------------------------------------------------------------------------- /src/test/scripts/component/resource/artifacts/minimal_aws_regional_prices.csv: -------------------------------------------------------------------------------- 1 | Region,Fee Ratio,EBS Price 2 | us-east-1,0.25,0.08 3 | -------------------------------------------------------------------------------- /src/test/scripts/component/resource/data/B.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/scripts/component/resource/data/C.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/scripts/component/resource/data/D.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/scripts/functions/builtin/GMM.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/builtin/GMM.R -------------------------------------------------------------------------------- /src/test/scripts/functions/builtin/dist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/builtin/dist.R -------------------------------------------------------------------------------- /src/test/scripts/functions/builtin/km.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/builtin/km.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/builtin/knn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/builtin/knn.R -------------------------------------------------------------------------------- /src/test/scripts/functions/builtin/lm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/builtin/lm.R -------------------------------------------------------------------------------- /src/test/scripts/functions/builtin/lm.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/builtin/lm.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/builtin/mcc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/builtin/mcc.R -------------------------------------------------------------------------------- /src/test/scripts/functions/builtin/mice.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/builtin/mice.R -------------------------------------------------------------------------------- /src/test/scripts/functions/compress/densifying/large.ijv: -------------------------------------------------------------------------------- 1 | 1 1 13241 2 | 2 2 312 -------------------------------------------------------------------------------- /src/test/scripts/functions/compress/densifying/small.ijv: -------------------------------------------------------------------------------- 1 | 1 1 13241 2 | 2 2 312 -------------------------------------------------------------------------------- /src/test/scripts/functions/data/time.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/data/time.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/io/IOTest1.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/io/IOTest1.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/io/IOTest2.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/io/IOTest2.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/io/IOTest3.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/io/IOTest3.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/io/IOTest4.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/io/IOTest4.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/io/IOTest5.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/io/IOTest5.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/io/Rename.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/io/Rename.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/io/csv/in/frame_1.csv: -------------------------------------------------------------------------------- 1 | c1,c2,c4,c5 2 | hi,1,five,columbia 3 | goodbye,2,four,new york -------------------------------------------------------------------------------- /src/test/scripts/functions/io/csv/in/frame_2.csv: -------------------------------------------------------------------------------- 1 | c1,c2,c4,c5 2 | hi,1,five,columbia 3 | goodbye,2,four,new york -------------------------------------------------------------------------------- /src/test/scripts/functions/io/csv/in/frame_3.csv: -------------------------------------------------------------------------------- 1 | c1,c2,c4,c5 2 | hi,1,five, 3 | goodbye,2,four,new york -------------------------------------------------------------------------------- /src/test/scripts/functions/iogen/in/CSV/F1/yelp-csv.schema: -------------------------------------------------------------------------------- 1 | STRING -------------------------------------------------------------------------------- /src/test/scripts/functions/iogen/in/Custom/F1/aminer-author.schema: -------------------------------------------------------------------------------- 1 | INT64 -------------------------------------------------------------------------------- /src/test/scripts/functions/iogen/in/Custom/F2/aminer-author.schema: -------------------------------------------------------------------------------- 1 | INT64,STRING -------------------------------------------------------------------------------- /src/test/scripts/functions/iogen/in/Custom/F3/aminer-author.schema: -------------------------------------------------------------------------------- 1 | INT64,STRING,INT32 -------------------------------------------------------------------------------- /src/test/scripts/functions/iogen/in/JSON/F1/aminer-author-json.schema: -------------------------------------------------------------------------------- 1 | INT64 -------------------------------------------------------------------------------- /src/test/scripts/functions/iogen/in/JSON/F2/aminer-author-json.schema: -------------------------------------------------------------------------------- 1 | INT64,STRING -------------------------------------------------------------------------------- /src/test/scripts/functions/iogen/in/JSON/F3/aminer-author-json.schema: -------------------------------------------------------------------------------- 1 | INT64,STRING,INT32 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/bar1.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/jmlc/bar1.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/bar2.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/jmlc/bar2.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/bar3.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/jmlc/bar3.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/foo.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/jmlc/foo.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/foo2.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/jmlc/foo2.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Impute/askingprice.impute: -------------------------------------------------------------------------------- 1 | 9,819.1306532663317 2 | -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Impute/district.impute: -------------------------------------------------------------------------------- 1 | 2,south 2 | -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Impute/floors.impute: -------------------------------------------------------------------------------- 1 | 6,1 2 | -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Impute/numbathrooms.impute: -------------------------------------------------------------------------------- 1 | 5,1 2 | -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Impute/numbedrooms.impute: -------------------------------------------------------------------------------- 1 | 4,2 2 | -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Impute/view.impute: -------------------------------------------------------------------------------- 1 | 7,"FALSE" -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Impute/zipcode.impute: -------------------------------------------------------------------------------- 1 | 1,"95141" -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Recode/district.mode: -------------------------------------------------------------------------------- 1 | "south",3,63 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Recode/district.ndistinct: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Recode/floors.map: -------------------------------------------------------------------------------- 1 | "1",1,78 2 | "2",2,66 3 | "3",3,56 4 | -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Recode/floors.mode: -------------------------------------------------------------------------------- 1 | "1",1,78 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Recode/floors.ndistinct: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Recode/numbathrooms.mode: -------------------------------------------------------------------------------- 1 | "1",1,54 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Recode/numbathrooms.ndistinct: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Recode/numbedrooms.mode: -------------------------------------------------------------------------------- 1 | "2",2,38 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Recode/numbedrooms.ndistinct: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Recode/view.map: -------------------------------------------------------------------------------- 1 | "FALSE",1,94 2 | "TRUE",2,89 3 | -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Recode/view.mode: -------------------------------------------------------------------------------- 1 | "FALSE",1,94 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Recode/view.ndistinct: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Recode/zipcode.mode: -------------------------------------------------------------------------------- 1 | "95141",3,42 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example/Recode/zipcode.ndistinct: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example2/Recode/district.mode: -------------------------------------------------------------------------------- 1 | "south",3,63 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example2/Recode/district.ndistinct: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example2/Recode/floors.map: -------------------------------------------------------------------------------- 1 | "1",1,78 2 | "2",2,66 3 | "3",3,56 4 | -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example2/Recode/floors.mode: -------------------------------------------------------------------------------- 1 | "1",1,78 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example2/Recode/floors.ndistinct: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example2/Recode/numbathrooms.mode: -------------------------------------------------------------------------------- 1 | "1",1,54 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example2/Recode/numbathrooms.ndistinct: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example2/Recode/numbedrooms.mode: -------------------------------------------------------------------------------- 1 | "2",2,38 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example2/Recode/numbedrooms.ndistinct: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example2/Recode/view.map: -------------------------------------------------------------------------------- 1 | "FALSE",1,94 2 | "TRUE",2,89 3 | -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example2/Recode/view.mode: -------------------------------------------------------------------------------- 1 | "FALSE",1,94 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example2/Recode/view.ndistinct: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example2/Recode/zipcode.mode: -------------------------------------------------------------------------------- 1 | "95141",3,42 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example2/Recode/zipcode.ndistinct: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /src/test/scripts/functions/jmlc/tfmtd_example2/spec.json: -------------------------------------------------------------------------------- 1 | {"recode":{"attributes":[1,2,4,5,6,7]}} -------------------------------------------------------------------------------- /src/test/scripts/functions/mlcontext/FrameB.csv: -------------------------------------------------------------------------------- 1 | Str12,13.0,true 2 | Str25,26.0,false 3 | -------------------------------------------------------------------------------- /src/test/scripts/functions/mlcontext/one-two-three-four.csv: -------------------------------------------------------------------------------- 1 | one,two 2 | three,four 3 | -------------------------------------------------------------------------------- /src/test/scripts/functions/ooc/Rand1.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/ooc/Rand1.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/ooc/Rand2.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/ooc/Rand2.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/ooc/Seq.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/ooc/Seq.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/ooc/Sort.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/ooc/Sort.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/ooc/TSMM.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/ooc/TSMM.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/ooc/Tee.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/ooc/Tee.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/ooc/lmDS.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/ooc/lmDS.dml -------------------------------------------------------------------------------- /src/test/scripts/functions/pipelines/intermediates/classification/dirtyScore.csv: -------------------------------------------------------------------------------- 1 | 61.050724637681164 -------------------------------------------------------------------------------- /src/test/scripts/functions/pipelines/intermediates/regression/dirtyScore.csv: -------------------------------------------------------------------------------- 1 | 0.07347072475310013 -------------------------------------------------------------------------------- /src/test/scripts/functions/reorg/Order.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/functions/reorg/Order.R -------------------------------------------------------------------------------- /src/test/scripts/gpu/nn/ResNet18GPU.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/gpu/nn/ResNet18GPU.dml -------------------------------------------------------------------------------- /src/test/scripts/installDependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/installDependencies.R -------------------------------------------------------------------------------- /src/test/scripts/performance/append.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/performance/append.sh -------------------------------------------------------------------------------- /src/test/scripts/testRunScript.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/testRunScript.bat -------------------------------------------------------------------------------- /src/test/scripts/testRunScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/testRunScript.sh -------------------------------------------------------------------------------- /src/test/scripts/usertest/Stop.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/usertest/Stop.dml -------------------------------------------------------------------------------- /src/test/scripts/usertest/SyntaxError.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/usertest/SyntaxError.dml -------------------------------------------------------------------------------- /src/test/scripts/usertest/helloWorld.dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds/HEAD/src/test/scripts/usertest/helloWorld.dml --------------------------------------------------------------------------------