You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemds.apache.org by ma...@apache.org on 2022/04/21 16:53:58 UTC

[systemds] branch main updated: [MINOR] Removing unused imports (leftovers of recent refactoring)

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

markd pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git


The following commit(s) were added to refs/heads/main by this push:
     new d8db20fa04 [MINOR] Removing unused imports (leftovers of recent refactoring)
d8db20fa04 is described below

commit d8db20fa047cf217bc457430fa0cf49d4ca74fdc
Author: Mark Dokter <ma...@dokter.cc>
AuthorDate: Thu Apr 21 18:53:08 2022 +0200

    [MINOR] Removing unused imports (leftovers of recent refactoring)
---
 src/main/java/org/apache/sysds/hops/codegen/cplan/cuda/Ternary.java     | 2 --
 .../java/org/apache/sysds/hops/codegen/template/CPlanOpRewriter.java    | 1 -
 2 files changed, 3 deletions(-)

diff --git a/src/main/java/org/apache/sysds/hops/codegen/cplan/cuda/Ternary.java b/src/main/java/org/apache/sysds/hops/codegen/cplan/cuda/Ternary.java
index 026fe264f8..6f431a8e5a 100644
--- a/src/main/java/org/apache/sysds/hops/codegen/cplan/cuda/Ternary.java
+++ b/src/main/java/org/apache/sysds/hops/codegen/cplan/cuda/Ternary.java
@@ -22,8 +22,6 @@ package org.apache.sysds.hops.codegen.cplan.cuda;
 import org.apache.sysds.hops.codegen.cplan.CNodeTernary;
 import org.apache.sysds.hops.codegen.cplan.CodeTemplate;
 
-import static org.apache.sysds.runtime.matrix.data.LibMatrixNative.isSinglePrecision;
-
 public class Ternary extends CodeTemplate {
 
 	@Override
diff --git a/src/main/java/org/apache/sysds/hops/codegen/template/CPlanOpRewriter.java b/src/main/java/org/apache/sysds/hops/codegen/template/CPlanOpRewriter.java
index b81ddac401..ca08e35222 100644
--- a/src/main/java/org/apache/sysds/hops/codegen/template/CPlanOpRewriter.java
+++ b/src/main/java/org/apache/sysds/hops/codegen/template/CPlanOpRewriter.java
@@ -21,7 +21,6 @@ package org.apache.sysds.hops.codegen.template;
 
 import java.util.ArrayList;
 
-import org.apache.spark.sql.types.BinaryType;
 import org.apache.sysds.hops.LiteralOp;
 import org.apache.sysds.hops.codegen.cplan.CNode;
 import org.apache.sysds.hops.codegen.cplan.CNodeBinary;