You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemds.apache.org by gi...@apache.org on 2022/05/16 10:33:31 UTC

[systemds] branch dependabot/github_actions/docker/setup-buildx-action-2 updated (bad23aeabc -> ef93efc9e7)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/github_actions/docker/setup-buildx-action-2
in repository https://gitbox.apache.org/repos/asf/systemds.git


    omit bad23aeabc Bump docker/setup-buildx-action from 1 to 2
     add 33effa8840 [SYSTEMDS-3343] Fix missing default handling in eval function calls
     add 92ae6ecd3e [MINOR] Fix federated SSL test, and eval robustness (parfor/lineage)
     add 3d8fe86e99 [SYSTEMDS-3373] Fix hash robustness of lineage cache probing
     add 5f98eb9602 [SYSTEMDS-3370] Fix size propagation of list operations
     add d916791cd0 [SYSTEMDS-3370] Fix missing support for list unnesting
     add f1e877561a [SYSTEMDS-3328] Federated transform encode/apply w/ equi-height binning
     add defefafe1f [MINOR] Rebalancing function test actions (reduce chances of timeouts)
     add 81de34ac30 [MINOR] Cleaning pipelines minor cleanups (refactor function name)
     add d418766c1e [MINOR] Update jitify
     add 14d095efe5 [SYSTEMDS-3362] CUDA code gen stream synchronization (bugfix)
     add 72082ebe23 [SYSTEMDS-3362] CUDA code generation binaries for latest bugfix
     add fe179649a6 [SYSTEMDS-3018] Fed Planner Extended 4
     add 278c95a471 [MINOR] Fixed a compilation error due to wrong invocation of NotImplementedException
     add a0987e536a [SYSTEMDS-3343,3366] Fix missing handling of positional defaults in eval
     add 10c2165e13 [SYSTEMDS-3376] Adding apply_pipeline() builtin for cleaning pipelines API  - fit_pipeline() executes the best pipeline on train and test data    while apply_pipeline() transforms the test data using the internal states of    best pipeline without re-executing the best pipeline and keeping the train data around.
     add aba1707852 [SYSTEMDS-3018] Federated Planner Forced ExecType And FedOut Info
     add 8e832ac085 [SYSTEMDS-3185] Caching of serialized federated responses
     add 715374921c [SYSTEMDS-3355] MatrixBlock size estimation w/ CSR awareness
     add f33b516d10 [SYSTEMDS-3355] Federated monitoring backend worker communication
     add f357c776be [MINOR] Fix bug in runscript
     add 17b7a368ef [MINOR] Add Forced ExecType for FED DataOp And Add FedOut to Explain
     add ef93efc9e7 Bump docker/setup-buildx-action from 1 to 2

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (bad23aeabc)
            \
             N -- N -- N   refs/heads/dependabot/github_actions/docker/setup-buildx-action-2 (ef93efc9e7)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/functionsTests.yml               |   9 +-
 bin/systemds                                       |  49 ++-
 scripts/builtin/apply_pipeline.dml                 | 213 ++++++++++
 scripts/builtin/bandit.dml                         |   5 +-
 scripts/builtin/executePipeline.dml                |  16 +-
 .../{applyAndEvaluate.dml => fit_pipeline.dml}     |  30 +-
 scripts/builtin/frameSort.dml                      |   3 +-
 scripts/builtin/gridSearch.dml                     |   4 +-
 scripts/builtin/topk_cleaning.dml                  |  63 ++-
 scripts/pipelines/scripts/enumerateLogical.dml     |  50 ++-
 scripts/pipelines/scripts/utils.dml                |   3 +-
 .../cpp/lib/libsystemds_spoof_cuda-Linux-x86_64.so | Bin 285976 -> 290480 bytes
 src/main/cuda/ext/jitify                           |   2 +-
 src/main/cuda/spoof-launcher/SpoofCUDAContext.h    |   9 +-
 src/main/cuda/spoof-launcher/SpoofCellwise.h       |  30 +-
 src/main/cuda/spoof-launcher/SpoofOperator.h       |   6 +-
 src/main/cuda/spoof-launcher/SpoofRowwise.h        |   6 +-
 src/main/java/org/apache/sysds/api/DMLOptions.java |  31 +-
 src/main/java/org/apache/sysds/api/DMLScript.java  |   6 +
 .../java/org/apache/sysds/common/Builtins.java     |  12 +-
 src/main/java/org/apache/sysds/common/Types.java   |   6 +-
 .../java/org/apache/sysds/hops/AggBinaryOp.java    |   2 -
 .../java/org/apache/sysds/hops/AggUnaryOp.java     |   7 +-
 src/main/java/org/apache/sysds/hops/BinaryOp.java  |  16 +-
 src/main/java/org/apache/sysds/hops/DataOp.java    |   4 +-
 src/main/java/org/apache/sysds/hops/Hop.java       |  23 +-
 src/main/java/org/apache/sysds/hops/ReorgOp.java   |   2 -
 src/main/java/org/apache/sysds/hops/TernaryOp.java |   2 -
 src/main/java/org/apache/sysds/hops/UnaryOp.java   |   9 +-
 .../java/org/apache/sysds/hops/cost/HopRel.java    |  35 +-
 .../sysds/hops/fedplanner/AFederatedPlanner.java   |   5 +
 .../org/apache/sysds/hops/fedplanner/FTypes.java   |   1 -
 .../hops/fedplanner/FederatedPlannerCostbased.java |  15 +
 .../apache/sysds/hops/fedplanner/MemoTable.java    |  15 +
 src/main/java/org/apache/sysds/lops/Append.java    |   5 +-
 .../java/org/apache/sysds/lops/BinaryScalar.java   |   5 +-
 .../java/org/apache/sysds/lops/CentralMoment.java  |   8 +-
 .../java/org/apache/sysds/lops/CoVariance.java     |   6 +-
 .../java/org/apache/sysds/lops/PickByCount.java    |  10 +-
 src/main/java/org/apache/sysds/lops/SortKeys.java  |  31 +-
 src/main/java/org/apache/sysds/lops/UnaryCP.java   |   7 -
 .../sysds/parser/BuiltinFunctionExpression.java    |  16 +-
 .../org/apache/sysds/parser/DMLTranslator.java     |   6 +
 src/main/java/org/apache/sysds/parser/dml/Dml.g4   |   3 +-
 .../org/apache/sysds/parser/dml/DmlLexer.interp    |   2 +-
 .../java/org/apache/sysds/parser/dml/DmlLexer.java | 432 +++++++++++----------
 .../runtime/compress/colgroup/ColGroupFactory.java |   4 +-
 .../controlprogram/federated/FederatedData.java    |   5 +-
 .../federated/FederatedResponse.java               |  21 +-
 .../federated/FederatedStatistics.java             |  84 +++-
 .../controlprogram/federated/FederatedWorker.java  |  38 ++
 .../federated/FederatedWorkerHandler.java          |   3 +-
 .../monitoring/FederatedMonitoringServer.java      |  70 ++--
 .../FederatedMonitoringServerHandler.java          | 180 ++++-----
 .../controllers/CoordinatorController.java         |  46 +--
 .../{BaseController.java => IController.java}      |  14 +-
 .../monitoring/controllers/WorkerController.java   |  81 ++++
 .../monitoring/models/BaseEntityModel.java         |  78 ++++
 .../federated/monitoring/{ => models}/Request.java |  30 +-
 .../monitoring/{ => models}/Response.java          |  38 +-
 .../monitoring/repositories/DerbyRepository.java   | 171 ++++++++
 .../{Request.java => repositories/EntityEnum.java} |  26 +-
 .../IRepository.java}                              |  17 +-
 .../monitoring/services/WorkerService.java         |  89 +++++
 .../runtime/instructions/CPInstructionParser.java  |  15 +-
 .../runtime/instructions/FEDInstructionParser.java |  20 +
 .../instructions/cp/EvalNaryCPInstruction.java     |  60 +++
 .../sysds/runtime/instructions/cp/ListObject.java  |   9 +
 .../instructions/cp/ScalarObjectFactory.java       |   8 +-
 .../instructions/cp/VariableCPInstruction.java     |  37 +-
 .../instructions/fed/AppendFEDInstruction.java     |  36 +-
 .../instructions/fed/CastFEDInstruction.java       |   6 +-
 .../fed/CentralMomentFEDInstruction.java           |  20 +-
 .../instructions/fed/CovarianceFEDInstruction.java |  19 +-
 .../runtime/instructions/fed/FEDInstruction.java   |   2 +
 .../instructions/fed/FEDInstructionUtils.java      |  27 +-
 ...tiReturnParameterizedBuiltinFEDInstruction.java | 140 ++++++-
 .../fed/QuantilePickFEDInstruction.java            | 205 ++++++++--
 .../fed/QuantileSortFEDInstruction.java            |  20 +-
 .../instructions/fed/TernaryFEDInstruction.java    |   2 +-
 .../instructions/fed/TsmmFEDInstruction.java       |  18 -
 .../instructions/spark/CastSPInstruction.java      |   8 +-
 .../apache/sysds/runtime/lineage/LineageCache.java |  68 +++-
 .../sysds/runtime/lineage/LineageCacheEntry.java   |  37 +-
 .../runtime/lineage/LineageCacheEviction.java      |   2 +-
 .../apache/sysds/runtime/lineage/LineageItem.java  |  56 ++-
 .../sysds/runtime/lineage/LineageItemUtils.java    |  35 +-
 .../sysds/runtime/matrix/data/MatrixBlock.java     |  60 +--
 .../runtime/transform/encode/ColumnEncoder.java    |  10 +
 .../runtime/transform/encode/ColumnEncoderBin.java |  47 ++-
 .../transform/encode/ColumnEncoderComposite.java   |  10 +
 .../runtime/transform/encode/ColumnEncoderUDF.java |   6 +-
 .../transform/encode/MultiColumnEncoder.java       |  19 +-
 src/main/java/org/apache/sysds/utils/Explain.java  |  26 ++
 .../java/org/apache/sysds/utils/Statistics.java    |   3 +-
 .../org/apache/sysds/test/AutomatedTestBase.java   |  25 ++
 .../builtin/part1/BuiltinGridSearchTest.java       |  44 ++-
 .../functions/federated/io/FederatedSSLTest.java   |   7 +
 .../monitoring/FederatedMonitoringTestBase.java    | 101 +++++
 .../FederatedWorkerIntegrationCRUDTest.java        |  65 ++++
 .../monitoring/FederatedWorkerStatisticsTest.java  |  56 +++
 .../FederatedLineageTraceReuseTest.java            |   6 +-
 ...t.java => FederatedSerializationReuseTest.java} |  93 +++--
 .../TransformFederatedEncodeApplyTest.java         |  70 +++-
 .../functions/lineage/MiscLineageProbingTest.java  |  69 ++++
 .../functions/misc/AsBooleanVsAsLogicalTest.java   |   3 +-
 .../test/functions/misc/ListAppendSizeTest.java    |  89 +++++
 ...aluateTest.java => BuiltinFitPipelineTest.java} |   6 +-
 .../BuiltinTopkCleaningClassificationTest.java     |   4 +-
 .../fedplanning/FederatedL2SVMPlanningTest.java    |   3 +-
 .../LiteralReplaceCastScalarReadTest.java          |   8 +-
 .../transform/TransformEncodeUDFTest.java          |  18 +-
 .../scripts/functions/builtin/GridSearchLM.dml     |   8 +-
 .../functions/builtin/GridSearchMLogreg.dml        |   2 +-
 .../FederatedSerializationReuseTest.dml            |  57 +++
 .../MiscProbe1.dml}                                |  23 +-
 .../MiscProbe2.dml}                                |  23 +-
 .../ListAppendSize1.dml}                           |  20 +-
 .../ListAppendSize2.dml}                           |  21 +-
 .../ListAppendSize3.dml}                           |  23 +-
 .../ListAppendSize4.dml}                           |  23 +-
 ...{applyEvaluateTest.dml => fit_pipelineTest.dml} |  17 +-
 .../intermediates/classification/applyFunc.csv     |   6 +-
 .../intermediates/classification/bestAcc.csv       |   6 +-
 .../intermediates/classification/dirtyScore.csv    |   2 +-
 .../pipelines/intermediates/classification/hp.csv  |   6 +-
 .../pipelines/intermediates/classification/pip.csv |   6 +-
 .../intermediates/regression/applyFunc.csv         |  10 +-
 .../pipelines/topkcleaningClassificationTest.dml   |   5 +-
 .../pipelines/topkcleaningRegressionTest.dml       |   2 +-
 ...rameEncodeApply.dml => TransformEncodeUDF2.dml} |  15 +-
 .../transform/TransformFrameEncodeApply.dml        |   1 +
 132 files changed, 3149 insertions(+), 1040 deletions(-)
 create mode 100644 scripts/builtin/apply_pipeline.dml
 rename scripts/builtin/{applyAndEvaluate.dml => fit_pipeline.dml} (82%)
 copy src/main/java/org/apache/sysds/runtime/controlprogram/federated/monitoring/controllers/{BaseController.java => IController.java} (73%)
 create mode 100644 src/main/java/org/apache/sysds/runtime/controlprogram/federated/monitoring/controllers/WorkerController.java
 create mode 100644 src/main/java/org/apache/sysds/runtime/controlprogram/federated/monitoring/models/BaseEntityModel.java
 copy src/main/java/org/apache/sysds/runtime/controlprogram/federated/monitoring/{ => models}/Request.java (71%)
 rename src/main/java/org/apache/sysds/runtime/controlprogram/federated/monitoring/{ => models}/Response.java (55%)
 create mode 100644 src/main/java/org/apache/sysds/runtime/controlprogram/federated/monitoring/repositories/DerbyRepository.java
 rename src/main/java/org/apache/sysds/runtime/controlprogram/federated/monitoring/{Request.java => repositories/EntityEnum.java} (65%)
 rename src/main/java/org/apache/sysds/runtime/controlprogram/federated/monitoring/{controllers/BaseController.java => repositories/IRepository.java} (68%)
 create mode 100644 src/main/java/org/apache/sysds/runtime/controlprogram/federated/monitoring/services/WorkerService.java
 create mode 100644 src/test/java/org/apache/sysds/test/functions/federated/monitoring/FederatedMonitoringTestBase.java
 create mode 100644 src/test/java/org/apache/sysds/test/functions/federated/monitoring/FederatedWorkerIntegrationCRUDTest.java
 create mode 100644 src/test/java/org/apache/sysds/test/functions/federated/monitoring/FederatedWorkerStatisticsTest.java
 copy src/test/java/org/apache/sysds/test/functions/federated/multitenant/{FederatedLineageTraceReuseTest.java => FederatedSerializationReuseTest.java} (75%)
 create mode 100644 src/test/java/org/apache/sysds/test/functions/lineage/MiscLineageProbingTest.java
 create mode 100644 src/test/java/org/apache/sysds/test/functions/misc/ListAppendSizeTest.java
 rename src/test/java/org/apache/sysds/test/functions/pipelines/{BuiltinTopkEvaluateTest.java => BuiltinFitPipelineTest.java} (93%)
 create mode 100644 src/test/scripts/functions/federated/multitenant/FederatedSerializationReuseTest.dml
 copy src/test/scripts/functions/{transform/TransformFrameEncodeApply.dml => lineage/MiscProbe1.dml} (74%)
 copy src/test/scripts/functions/{transform/TransformFrameEncodeApply.dml => lineage/MiscProbe2.dml} (74%)
 copy src/test/scripts/functions/{transform/TransformFrameEncodeApply.dml => misc/ListAppendSize1.dml} (74%)
 copy src/test/scripts/functions/{transform/TransformFrameEncodeApply.dml => misc/ListAppendSize2.dml} (74%)
 copy src/test/scripts/functions/{transform/TransformFrameEncodeApply.dml => misc/ListAppendSize3.dml} (74%)
 copy src/test/scripts/functions/{transform/TransformFrameEncodeApply.dml => misc/ListAppendSize4.dml} (74%)
 rename src/test/scripts/functions/pipelines/{applyEvaluateTest.dml => fit_pipelineTest.dml} (89%)
 copy src/test/scripts/functions/transform/{TransformFrameEncodeApply.dml => TransformEncodeUDF2.dml} (73%)