This is an automated email from the ASF dual-hosted git repository. baunsgaard pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/systemds.git
commit 2a85ff18fc02f85e393cfb3d6b3d78e7b4608f59 Author: baunsgaard <[email protected]> AuthorDate: Fri Oct 28 14:40:01 2022 +0200 [MINOR] Fix wildcard import in InstructionUtils --- .../sysds/runtime/instructions/InstructionUtils.java | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/sysds/runtime/instructions/InstructionUtils.java b/src/main/java/org/apache/sysds/runtime/instructions/InstructionUtils.java index d87e772709..c27d5a70ae 100644 --- a/src/main/java/org/apache/sysds/runtime/instructions/InstructionUtils.java +++ b/src/main/java/org/apache/sysds/runtime/instructions/InstructionUtils.java @@ -83,15 +83,27 @@ import org.apache.sysds.runtime.functionobjects.ReduceDiag; import org.apache.sysds.runtime.functionobjects.ReduceRow; import org.apache.sysds.runtime.functionobjects.Xor; import org.apache.sysds.runtime.instructions.cp.AggregateUnaryCPInstruction; -import org.apache.sysds.runtime.instructions.cp.CPOperand; import org.apache.sysds.runtime.instructions.cp.CPInstruction.CPType; +import org.apache.sysds.runtime.instructions.cp.CPOperand; import org.apache.sysds.runtime.instructions.fed.FEDInstruction.FEDType; import org.apache.sysds.runtime.instructions.fed.FEDInstruction.FederatedOutput; import org.apache.sysds.runtime.instructions.gpu.GPUInstruction.GPUINSTRUCTION_TYPE; import org.apache.sysds.runtime.instructions.spark.SPInstruction.SPType; import org.apache.sysds.runtime.matrix.data.LibCommonsMath; -import org.apache.sysds.runtime.matrix.operators.*; +import org.apache.sysds.runtime.matrix.operators.AggregateBinaryOperator; +import org.apache.sysds.runtime.matrix.operators.AggregateOperator; +import org.apache.sysds.runtime.matrix.operators.AggregateTernaryOperator; +import org.apache.sysds.runtime.matrix.operators.AggregateUnaryOperator; +import org.apache.sysds.runtime.matrix.operators.BinaryOperator; +import org.apache.sysds.runtime.matrix.operators.CMOperator; import org.apache.sysds.runtime.matrix.operators.CMOperator.AggregateOperationTypes; +import org.apache.sysds.runtime.matrix.operators.CountDistinctOperator; +import org.apache.sysds.runtime.matrix.operators.LeftScalarOperator; +import org.apache.sysds.runtime.matrix.operators.Operator; +import org.apache.sysds.runtime.matrix.operators.RightScalarOperator; +import org.apache.sysds.runtime.matrix.operators.ScalarOperator; +import org.apache.sysds.runtime.matrix.operators.TernaryOperator; +import org.apache.sysds.runtime.matrix.operators.UnaryOperator; public class InstructionUtils
