| /* |
| * 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.compress; |
| |
| import static org.junit.Assert.assertTrue; |
| |
| import org.apache.sysds.common.Types; |
| import org.apache.sysds.common.Types.ExecType; |
| import org.apache.sysds.hops.OptimizerUtils; |
| import org.apache.sysds.runtime.controlprogram.parfor.stat.Timing; |
| import org.apache.sysds.test.AutomatedTestBase; |
| import org.apache.sysds.test.TestConfiguration; |
| import org.apache.sysds.test.TestUtils; |
| import org.apache.sysds.utils.Statistics; |
| import org.junit.Test; |
| |
| public class CompressInstruction extends AutomatedTestBase { |
| // private static final Log LOG = LogFactory.getLog(compressInstruction.class.getName()); |
| |
| protected String getTestClassDir() { |
| return getTestDir() + this.getClass().getSimpleName() + "/"; |
| } |
| |
| protected String getTestName() { |
| return "compress"; |
| } |
| |
| protected String getTestDir() { |
| return "functions/compress/compressInstruction/"; |
| } |
| |
| @Test |
| public void testCompressInstruction_01() { |
| compressTest(1, 1000, 0.2, ExecType.CP, 0, 5, 0, 1, "01"); |
| } |
| |
| @Test |
| public void testCompressInstruction_02() { |
| compressTest(1, 1000, 0.2, ExecType.CP, 0, 5, 1, 1, "02"); |
| } |
| |
| @Test |
| public void testCompressInstruction_07() { |
| compressTest(10, 10000, 0.3, ExecType.CP, 0, 5, 1, 1, "07"); |
| } |
| |
| // @Test |
| // public void testCompressInstruction_07_noCompress() { |
| // compressTest(10, 10000, 0.3, ExecType.CP, 0, 5, 1, 1, "07_noCompress"); |
| // } |
| |
| public void testCompressInstruction_07_timeCompare() { |
| |
| compressTest(10, 1000, 0.3, ExecType.CP, 0, 5, 1, 1, "07"); |
| |
| for(int i = 0; i < 10; i++) { |
| Timing time = new Timing(true); |
| compressTest(10, 100000, 1.0, ExecType.CP, 0, 5, 1, 1, "07"); |
| System.out.println("CLA " + time.stop() + " ms."); |
| Statistics.reset(); |
| } |
| for(int i = 0; i < 10; i++) { |
| Timing time = new Timing(true); |
| compressTest(10, 100000, 1.0, ExecType.CP, 0, 5, 0, 0, "07_noCompress"); |
| System.out.println("ULA " + time.stop() + " ms."); |
| } |
| } |
| |
| public void compressTest(int cols, int rows, double sparsity, ExecType instType, int min, int max, |
| int decompressionCountExpected, int compressionCountsExpected, String name) { |
| |
| OptimizerUtils.ALLOW_SCRIPT_LEVEL_COMPRESS_COMMAND = true; |
| Types.ExecMode platformOld = setExecMode(instType); |
| try { |
| |
| loadTestConfiguration(getTestConfiguration(getTestName())); |
| |
| fullDMLScriptName = SCRIPT_DIR + "/" + getTestDir() + "compress_" + name + ".dml"; |
| |
| programArgs = new String[] {"-stats", "100", "-nvargs", "cols=" + cols, "rows=" + rows, "sparsity=" + sparsity, |
| "min=" + min, "max= " + max}; |
| runTest(null); |
| |
| } |
| catch(Exception e) { |
| e.printStackTrace(); |
| assertTrue("Exception in execution: " + e.getMessage(), false); |
| } |
| finally { |
| rtplatform = platformOld; |
| } |
| } |
| |
| @Override |
| public void setUp() { |
| TestUtils.clearAssertionInformation(); |
| addTestConfiguration(getTestName(), new TestConfiguration(getTestClassDir(), getTestName())); |
| } |
| } |