blob: 33f958344dba4cb34c0a098729536cb874870be6 [file] [log] [blame]
/*
* 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.runtime.data;
import java.io.Serializable;
/**
* Base class for sparse row implementations such as sparse
* row vectors and sparse scalars (single value per row).
*
*/
public abstract class SparseRow implements Serializable
{
private static final long serialVersionUID = 5806895317005796456L;
/**
* Get the number of non-zero values of the sparse row.
*
* @return number of non-zeros
*/
public abstract int size();
/**
* Indicates if the sparse row is empty, i.e., if is has
* size zero.
*
* @return true if empty
*/
public abstract boolean isEmpty();
/**
* Get the value array of non-zero entries, co-aligned
* with the array of indexes.
*
* @return array of values
*/
public abstract double[] values();
/**
* Get the index array of non-zero entries, co-aligned
* with the array of values.
*
* @return array of indexes
*/
public abstract int[] indexes();
/**
* Resets the sparse row to empty, after this call size and
* isEmpty are guaranteed to return 0 and true, respectively.
*
* @param estnns estimated number of non-zeros
* @param maxnns maximum number of non-zeros, e.g., number of columns
*/
public abstract void reset(int estnns, int maxnns);
/**
* Sets the value of a specified column with awareness of
* potential overwrites or deletes (set to value zero).
*
* @param col column index, zero-based
* @param v value
* @return true if the size of the sparse row changed
*/
public abstract boolean set(int col, double v);
/**
* Add a value to a specified column with awareness of
* potential insertions.
*
* @param col column index, zero-based
* @param v value
* @return true if the size of the sparse row changed
*/
public abstract boolean add(int col, double v);
/**
* Appends a value to the end of the sparse row.
*
* @param col column index, zero-based
* @param v value
* @return the row with an appended element
*/
public abstract SparseRow append(int col, double v);
/**
* Gets the value of a specified column. If the column
* index does not exist in the sparse row, this call
* returns zero.
*
* @param col column index, zero-based
* @return value
*/
public abstract double get(int col);
/**
* In-place sort of column-index value pairs in order to allow binary search
* after constant-time append was used for reading unordered sparse rows. We
* first check if already sorted and subsequently sort if necessary in order
* to get O(n) best case.
*
* Note: In-place sort is necessary in order to guarantee the memory estimate
* for operations that implicitly read that data set.
*/
public abstract void sort();
/**
* In-place compaction of non-zero-entries; removes zero entries
* and shifts non-zero entries to the left if necessary.
*/
public abstract void compact();
/**
* In-place compaction of values over eps away from zero;
* and shifts non-zero entries to the left if necessary.
* @param eps epsilon value
*/
public abstract void compact(double eps);
/**
* Make a copy of this row.
*
* @param deep if the copy should be deep
* @return A copy
*/
public abstract SparseRow copy(boolean deep);
/**
* Get first index greater than equal column index.
* @param col column to be greater than
* @return index
*/
public abstract int searchIndexesFirstGTE(int col);
public abstract int searchIndexesFirstGT(int col);
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
final int s = size();
if(s == 0)
return "";
final int[] indexes = indexes();
final double[] values = values();
final int rowDigits = (int) Math.max(Math.ceil(Math.log10(indexes[s-1])),1);
for(int i=0; i<s; i++){
if(values[i] == (long) values[i])
sb.append(String.format("%"+rowDigits+"d:%d", indexes[i], (long)values[i]));
else
sb.append(String.format("%"+rowDigits+"d:%s", indexes[i], Double.toString(values[i])));
if(i + 1 < s)
sb.append(" ");
}
return sb.toString();
}
}