You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by de...@apache.org on 2017/07/20 06:12:27 UTC

systemml git commit: [MINOR] Move GPU test suite to org.apache.sysml.test.gpu

Repository: systemml
Updated Branches:
  refs/heads/master ec38b3790 -> 6618a8516


[MINOR] Move GPU test suite to org.apache.sysml.test.gpu

Move GPU test suite from org.apache.sysml.test.integration.gpu to
org.apache.sysml.test.gpu to match location of test classes.


Project: http://git-wip-us.apache.org/repos/asf/systemml/repo
Commit: http://git-wip-us.apache.org/repos/asf/systemml/commit/6618a851
Tree: http://git-wip-us.apache.org/repos/asf/systemml/tree/6618a851
Diff: http://git-wip-us.apache.org/repos/asf/systemml/diff/6618a851

Branch: refs/heads/master
Commit: 6618a851690b18f53423c6607c517acb1ba892df
Parents: ec38b37
Author: Deron Eriksson <de...@apache.org>
Authored: Wed Jul 19 23:04:57 2017 -0700
Committer: Deron Eriksson <de...@apache.org>
Committed: Wed Jul 19 23:04:57 2017 -0700

----------------------------------------------------------------------
 .../apache/sysml/test/gpu/ZPackageSuite.java    | 48 ++++++++++++++++++++
 .../test/integration/gpu/ZPackageSuite.java     | 48 --------------------
 2 files changed, 48 insertions(+), 48 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/systemml/blob/6618a851/src/test_suites/java/org/apache/sysml/test/gpu/ZPackageSuite.java
----------------------------------------------------------------------
diff --git a/src/test_suites/java/org/apache/sysml/test/gpu/ZPackageSuite.java b/src/test_suites/java/org/apache/sysml/test/gpu/ZPackageSuite.java
new file mode 100644
index 0000000..40143bd
--- /dev/null
+++ b/src/test_suites/java/org/apache/sysml/test/gpu/ZPackageSuite.java
@@ -0,0 +1,48 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.sysml.test.gpu;
+
+import org.apache.sysml.test.gpu.AggregateUnaryOpTests;
+import org.apache.sysml.test.gpu.AppendTest;
+import org.apache.sysml.test.gpu.BinaryOpTests;
+import org.apache.sysml.test.gpu.MatrixMatrixElementWiseOpTests;
+import org.apache.sysml.test.gpu.MatrixMultiplicationOpTest;
+import org.apache.sysml.test.gpu.NeuralNetworkOpTests;
+import org.apache.sysml.test.gpu.ReorgOpTests;
+import org.apache.sysml.test.gpu.ScalarMatrixElementwiseOpTests;
+import org.apache.sysml.test.gpu.UnaryOpTests;
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+
+@RunWith(Suite.class) @SuiteClasses({
+	BinaryOpTests.class,
+	AppendTest.class,
+    ScalarMatrixElementwiseOpTests.class,
+	MatrixMatrixElementWiseOpTests.class,
+	ReorgOpTests.class,
+	AggregateUnaryOpTests.class,
+	UnaryOpTests.class,
+	MatrixMultiplicationOpTest.class,
+    NeuralNetworkOpTests.class,
+})
+public class ZPackageSuite {
+
+}

http://git-wip-us.apache.org/repos/asf/systemml/blob/6618a851/src/test_suites/java/org/apache/sysml/test/integration/gpu/ZPackageSuite.java
----------------------------------------------------------------------
diff --git a/src/test_suites/java/org/apache/sysml/test/integration/gpu/ZPackageSuite.java b/src/test_suites/java/org/apache/sysml/test/integration/gpu/ZPackageSuite.java
deleted file mode 100644
index f9a09cc..0000000
--- a/src/test_suites/java/org/apache/sysml/test/integration/gpu/ZPackageSuite.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.sysml.test.integration.gpu;
-
-import org.apache.sysml.test.gpu.AggregateUnaryOpTests;
-import org.apache.sysml.test.gpu.AppendTest;
-import org.apache.sysml.test.gpu.BinaryOpTests;
-import org.apache.sysml.test.gpu.MatrixMatrixElementWiseOpTests;
-import org.apache.sysml.test.gpu.MatrixMultiplicationOpTest;
-import org.apache.sysml.test.gpu.NeuralNetworkOpTests;
-import org.apache.sysml.test.gpu.ReorgOpTests;
-import org.apache.sysml.test.gpu.ScalarMatrixElementwiseOpTests;
-import org.apache.sysml.test.gpu.UnaryOpTests;
-import org.junit.runner.RunWith;
-import org.junit.runners.Suite;
-import org.junit.runners.Suite.SuiteClasses;
-
-@RunWith(Suite.class) @SuiteClasses({
-	BinaryOpTests.class,
-	AppendTest.class,
-    ScalarMatrixElementwiseOpTests.class,
-	MatrixMatrixElementWiseOpTests.class,
-	ReorgOpTests.class,
-	AggregateUnaryOpTests.class,
-	UnaryOpTests.class,
-	MatrixMultiplicationOpTest.class,
-    NeuralNetworkOpTests.class,
-})
-public class ZPackageSuite {
-
-}