Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
487 changes: 234 additions & 253 deletions src/main/java/org/apache/sysds/hops/AggBinaryOp.java

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
/*
* 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.sysds.test.functions.rewrite;

import org.apache.sysds.hops.OptimizerUtils;
import org.apache.sysds.runtime.matrix.data.MatrixValue;
import org.apache.sysds.test.AutomatedTestBase;
import org.apache.sysds.test.TestConfiguration;
import org.apache.sysds.test.TestUtils;
import org.junit.Test;
import java.util.HashMap;

public class RewriteTransposeTest extends AutomatedTestBase {
private final static String TEST_NAME1 = "RewriteTransposeCase1"; // t(X)%*%Y
private final static String TEST_NAME2 = "RewriteTransposeCase2"; // X=t(A); t(X)%*%Y
private final static String TEST_NAME3 = "RewriteTransposeCase3"; // Y=t(A); t(X)%*%Y

private final static String TEST_DIR = "functions/rewrite/";
private static final String TEST_CLASS_DIR = TEST_DIR + RewriteTransposeTest.class.getSimpleName() + "/";

private static final double eps = 1e-9;

@Override
public void setUp() {
OptimizerUtils.ALLOW_ALGEBRAIC_SIMPLIFICATION=false;

addTestConfiguration(TEST_NAME1, new TestConfiguration(TEST_CLASS_DIR, TEST_NAME1, new String[]{"R"}));
addTestConfiguration(TEST_NAME2, new TestConfiguration(TEST_CLASS_DIR, TEST_NAME2, new String[]{"R"}));
addTestConfiguration(TEST_NAME3, new TestConfiguration(TEST_CLASS_DIR, TEST_NAME3, new String[]{"R"}));
}

@Test
public void testTransposeRewrite1CP() {
runTransposeRewriteTest(TEST_NAME1, false);
}

@Test
public void testTransposeRewrite2CP() {
runTransposeRewriteTest(TEST_NAME2, true);
}

@Test
public void testTransposeRewrite3CP() {
runTransposeRewriteTest(TEST_NAME3, false);
}

private void runTransposeRewriteTest(String testname, boolean expectedMerge) {
TestConfiguration config = getTestConfiguration(testname);
loadTestConfiguration(config);

String HOME = SCRIPT_DIR + TEST_DIR;
fullDMLScriptName = HOME + testname + ".dml";

programArgs = new String[]{"-explain", "-stats", "-args", output("R")};

fullRScriptName = HOME + testname + ".R";
rCmd = getRCmd(expectedDir());

runTest(true, false, null, -1);
runRScript(true);

HashMap<MatrixValue.CellIndex, Double> dmlOutput = readDMLMatrixFromOutputDir("R");
HashMap<MatrixValue.CellIndex, Double> rOutput = readRMatrixFromExpectedDir("R");
TestUtils.compareMatrices(dmlOutput, rOutput, eps, "Stat-DML", "Stat-R");
}
}
32 changes: 32 additions & 0 deletions src/test/scripts/functions/rewrite/RewriteTransposeCase1.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#-------------------------------------------------------------
#
# 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.
#
#-------------------------------------------------------------

args <- commandArgs(TRUE)

library("Matrix")
library("matrixStats")

X <- matrix(seq(1, 20), nrow=4, ncol=5, byrow=TRUE)
Y <- matrix(seq(1, 12), nrow=4, ncol=3, byrow=TRUE)

R <- t(t(Y)%*%X)

writeMM(as(R, "CsparseMatrix"), paste(args[1], "R", sep=""));
27 changes: 27 additions & 0 deletions src/test/scripts/functions/rewrite/RewriteTransposeCase1.dml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#-------------------------------------------------------------
#
# 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.
#
#-------------------------------------------------------------

X = matrix(seq(1, 20), rows=4, cols=5);
Y = matrix(seq(1, 12), rows=4, cols=3);

R = t(X)%*%Y;

write(R, $1);
32 changes: 32 additions & 0 deletions src/test/scripts/functions/rewrite/RewriteTransposeCase2.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#-------------------------------------------------------------
#
# 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.
#
#-------------------------------------------------------------

args <- commandArgs(TRUE)

library("Matrix")
library("matrixStats")
A = matrix(seq(1, 20), nrow=5, ncol=4, byrow=TRUE)
Y = matrix(seq(1, 12), nrow=4, ncol=3, byrow=TRUE)
X = t(A)

R <- t(t(Y)%*%X)

writeMM(as(R, "CsparseMatrix"), paste(args[1], "R", sep=""));
28 changes: 28 additions & 0 deletions src/test/scripts/functions/rewrite/RewriteTransposeCase2.dml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#-------------------------------------------------------------
#
# 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.
#
#-------------------------------------------------------------

A = matrix(seq(1, 20), rows=5, cols=4);
Y = matrix(seq(1, 12), rows=4, cols=3);
X = t(A);

R = t(X) %*% Y;

write(R, $1);
33 changes: 33 additions & 0 deletions src/test/scripts/functions/rewrite/RewriteTransposeCase3.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#-------------------------------------------------------------
#
# 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.
#
#-------------------------------------------------------------

args <- commandArgs(TRUE)

library("Matrix")
library("matrixStats")

X <- matrix(seq(1, 20), nrow=4, ncol=5, byrow=TRUE)
A <- matrix(seq(1, 12), nrow=3, ncol=4, byrow=TRUE)
Y <- t(A)

R <- t(t(Y)%*%X)

writeMM(as(R, "CsparseMatrix"), paste(args[1], "R", sep=""));
28 changes: 28 additions & 0 deletions src/test/scripts/functions/rewrite/RewriteTransposeCase3.dml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#-------------------------------------------------------------
#
# 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.
#
#-------------------------------------------------------------

X = matrix(seq(1, 20), rows=4, cols=5);
A = matrix(seq(1, 12), rows=3, cols=4);
Y = t(A);

R = t(X) %*% Y;

write(R, $1);