-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SYSTEMDS-3652] Adding support for removing duplicate rows to the uni…
…que() builtin function (#1949) This patch adds support for removing duplicate rows to the unique() builtin function. Currently, only CP is supported- support for SPARK will be added in a subsequent patch. Furthermore, we we will explore possible optimizations of the naive implementation using bitmaps in a subsequent patch.
- Loading branch information
Showing
3 changed files
with
164 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
src/test/java/org/apache/sysds/test/functions/unique/UniqueRow.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
* 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.unique; | ||
|
||
import org.apache.sysds.common.Types; | ||
import org.junit.Test; | ||
|
||
public class UniqueRow extends UniqueBase { | ||
private final static String TEST_NAME = "uniqueRow"; | ||
private final static String TEST_DIR = "functions/unique/"; | ||
private static final String TEST_CLASS_DIR = TEST_DIR + UniqueRow.class.getSimpleName() + "/"; | ||
|
||
|
||
@Override | ||
protected String getTestName() { | ||
return TEST_NAME; | ||
} | ||
|
||
@Override | ||
protected String getTestDir() { | ||
return TEST_DIR; | ||
} | ||
|
||
@Override | ||
protected String getTestClassDir() { | ||
return TEST_CLASS_DIR; | ||
} | ||
|
||
@Test | ||
public void testBaseCaseCP() { | ||
double[][] inputMatrix = {{0}}; | ||
double[][] expectedMatrix = {{0}}; | ||
uniqueTest(inputMatrix, expectedMatrix, Types.ExecType.CP, 0.0); | ||
} | ||
|
||
@Test | ||
public void testSkinnyCP() { | ||
double[][] inputMatrix = {{1},{1},{6},{9},{4},{2},{0},{9},{0},{0},{4},{4}}; | ||
double[][] expectedMatrix = {{1},{6},{9},{4},{2},{0}}; | ||
uniqueTest(inputMatrix, expectedMatrix, Types.ExecType.CP, 0.0); | ||
} | ||
|
||
@Test | ||
public void testSquareCP() { | ||
double[][] inputMatrix = {{1, 2, 3}, {4, 5, 6}, {1, 2, 3}}; | ||
double[][] expectedMatrix = {{1, 2, 3},{4, 5, 6}}; | ||
uniqueTest(inputMatrix, expectedMatrix, Types.ExecType.CP, 0.0); | ||
} | ||
|
||
@Test | ||
public void testWideCP() { | ||
double[][] inputMatrix = {{1, 2, 3, 4, 5, 6}, {7, 8, 9, 10, 11, 12}, {1, 2, 3, 4, 5, 6}}; | ||
double[][] expectedMatrix = {{1, 2, 3, 4, 5, 6}, {7, 8, 9, 10, 11, 12}}; | ||
uniqueTest(inputMatrix, expectedMatrix, Types.ExecType.CP, 0.0); | ||
} | ||
|
||
@Test | ||
public void testNoDuplicatesCP() { | ||
double[][] inputMatrix = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}; | ||
double[][] expectedMatrix = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}; | ||
uniqueTest(inputMatrix, expectedMatrix, Types.ExecType.CP, 0.0); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#------------------------------------------------------------- | ||
# | ||
# 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. | ||
# | ||
#------------------------------------------------------------- | ||
|
||
input = read($1); | ||
res = unique(input, dir="r"); | ||
write(res, $2, format="text"); |