From cd85a970d3f58bb585737cae596e4ed7bef32ce9 Mon Sep 17 00:00:00 2001 From: mtzikara Date: Tue, 25 Sep 2018 01:22:21 +0200 Subject: [PATCH] Delete csr_sparse_matrix.c --- serial_csr/csr_sparse_matrix.c | 263 --------------------------------- 1 file changed, 263 deletions(-) delete mode 100644 serial_csr/csr_sparse_matrix.c diff --git a/serial_csr/csr_sparse_matrix.c b/serial_csr/csr_sparse_matrix.c deleted file mode 100644 index da5299c..0000000 --- a/serial_csr/csr_sparse_matrix.c +++ /dev/null @@ -1,263 +0,0 @@ -#include "csr_sparse_matrix.h" - - -CsrSparseMatrix initCsrSparseMatrix() { - CsrSparseMatrix sparseMatrix; - sparseMatrix.size = 0; - sparseMatrix.nnz = 0; - sparseMatrix.values = NULL; - sparseMatrix.columnIndexes = NULL; - sparseMatrix.rowaccInd = NULL; - return sparseMatrix; -} - -void allocMemoryForElements (CsrSparseMatrix *sparseMatrix, int edges) { - sparseMatrix->values = (double *) malloc( - edges * sizeof(double)); - sparseMatrix->columnIndexes = (int *) malloc( - edges * sizeof(int)); - sparseMatrix->rowaccInd = (int *) malloc( - edges * sizeof(int)); -} - -void addElement(CsrSparseMatrix *sparseMatrix, double value, int row, int column) { - - for(int i=row+1; isize; ++i){ - ++sparseMatrix->rowaccInd[i]; - } - sparseMatrix->nnz = sparseMatrix->nnz+1; - sparseMatrix->values[sparseMatrix->rowaccInd[row-1]+1] = value; - sparseMatrix->columnIndexes[sparseMatrix->rowaccInd[row-1]+1] = column; - // Creates the new element - /*CsrSparseMatrixElement *newElement = (CsrSparseMatrixElement *) malloc( - sizeof(CsrSparseMatrixElement)); - - newElement->value = value; - newElement->rowIndex = row; - newElement->columnIndex = column; - - sparseMatrix->elements[sparseMatrix->size] = newElement; - sparseMatrix->size = sparseMatrix->size + 1; */ -} - -void zeroOutRow(CsrSparseMatrix *sparseMatrix, int row) { - int noofnnzinrow; - if(row==0){ - noofnnzinrow = sparseMatrix->rowaccInd[row]; - } - else{ - noofnnzinrow = sparseMatrix->rowaccInd[row]-sparseMatrix->rowaccInd[row-1]; - } - int startdeleteInd = sparseMatrix->rowaccInd[row-1]+1; - - //delete the values and columnindexes of these rows by moving up the rest - for(int i=0; ivalues[i+startdeleteInd] = sparseMatrix->values[sparseMatrix->nnz-noofnnzinrow+i]; - sparseMatrix->values[sparseMatrix->nnz-noofnnzinrow+i] = 0; - sparseMatrix->columnIndexes[i+startdeleteInd] = sparseMatrix->columnIndexes[sparseMatrix->nnz-noofnnzinrow+i]; - sparseMatrix->columnIndexes[sparseMatrix->nnz-noofnnzinrow+i] = 0; - } - sparseMatrix->nnz = sparseMatrix->nnz - noofnnzinrow; - - //substract from accumulative no. of row nnz elements - for(int i=row; isize ; ++i){ - sparseMatrix->rowaccInd[i] -= noofnnzinrow; - } - - /*for (int i=0; isize; ++i) { - CooSparseMatrixElement *element = sparseMatrix->elements[i]; - if (element->rowIndex == row) { - element->value = 0; - } - }*/ -} - - -void zeroOutColumn(CsrSparseMatrix *sparseMatrix, int column) { - - /*for (int i=0; isize; ++i) { - CooSparseMatrixElement *element = sparseMatrix->elements[i]; - if (element->columnIndex == column) { - element->value = 0; - } - } - */ - for (int i=0; innz; ++i){ - if(sparseMatrix->columnIndexes[i] == column){ - //delete columns by moving up the rest - for(int j=i; jnnz-1; ++j){ - sparseMatrix->columnIndexes[j] = sparseMatrix->columnIndexes[j+1]; - sparseMatrix->values[j] = sparseMatrix->values[j+1]; - } - int flag = 0; - //adjust rowaccInd - for(int j=0; jsize; ++j){ - if(sparseMatrix->rowaccInd[j] > i){ - flag = 1; //must be substracted since column belonged to this row - } - if(flag){ - --sparseMatrix->rowaccInd[j]; //substract till end of rows - } - } - - } - } - -} - -int *getRowIndexes(CsrSparseMatrix sparseMatrix, int row, int *rowSize) { - *rowSize = 0; - /*for (int i=0; irowIndex == row) { - ++(*rowSize); - } - } - - if (!(*rowSize)) { - return NULL; - }*/ - if((row-1)>0 && (sparseMatrix.rowaccInd[row]-sparseMatrix.rowaccInd[row-1])>0){ - (*rowSize) = sparseMatrix.rowaccInd[row]-sparseMatrix.rowaccInd[row-1]; - } - else if((sparseMatrix.rowaccInd[row]-sparseMatrix.rowaccInd[row-1])>0){ //if row = 0 - (*rowSize) = sparseMatrix.rowaccInd[row]; - } - else{ - return NULL; - } - - int *indexes = (int *) malloc((*rowSize) * sizeof(int)); - for (int i=1; i<=(*rowSize); ++i) { - - indexes[i-1] = sparseMatrix.rowaccInd[row-1]+i; - - } - - return indexes; -} - -void transposeSparseMatrix(CsrSparseMatrix *sparseMatrix) { - /*for (int i=0; isize; ++i) { - CooSparseMatrixElement *element = sparseMatrix->elements[i]; - int tempRow = element->rowIndex; - element->rowIndex = element->columnIndex; - element->columnIndex = tempRow; - }*/ - double* values_t = (double *) malloc( - sparseMatrix->size * sizeof(double)); - int* rowIndexes = (int *) malloc( - sparseMatrix->size * sizeof(int)); - int* colaccInd = (int *) malloc( - sparseMatrix->size * sizeof(int)); - - - - int columncount, nnznew = 0; - //for all columns - for(columncount = 0; columncountsize; ++columncount){ - //index for searching in columnIndexes matrix - for(int i = 0; innz;++i){ - if(sparseMatrix->columnIndexes[i] == columncount){ - //Find which row it belongs to - for(int j=0; jsize; ++j){ - if(sparseMatrix->rowaccInd[j] == i){ - rowIndexes[nnznew] = j-1; - values_t[nnznew] = sparseMatrix->values[i]; - for(int k=i; ksize; ++k){ - ++colaccInd[k]; - } - ++nnznew; - } - } - - } - } - } - - memcpy(sparseMatrix->values, values_t, sparseMatrix->size*sizeof(double)); - memcpy(sparseMatrix->columnIndexes, rowIndexes, sparseMatrix->size*sizeof(int)); - memcpy(sparseMatrix->rowaccInd, colaccInd, sparseMatrix->size*sizeof(int) ); - sparseMatrix->nnz = nnznew; -} - -void csrSparseMatrixVectorMultiplication(CsrSparseMatrix sparseMatrix, - double *vector, double **product, int vectorSize) { - // Initializes the elements of the product vector to zero - for (int i=0; irowIndex, column = element->columnIndex; - - if (row >= vectorSize) { - printf("Error at sparseMatrixVectorMultiplication. Matrix has more rows than vector!\n"); - printf("row = %d\n", row); - exit(EXIT_FAILURE); - } - - (*product)[row] = (*product)[row] + element->value * vector[column]; - }*/ - int t; - //for every row - for (int i=0; ik){ - printf("Error at sparseMatrixVectorMultiplication. Matrix has more columns than vector rows!\n"); - exit(EXIT_FAILURE); - } - } - - } - } - - -} - -void destroyCsrSparseMatrix(CsrSparseMatrix *sparseMatrix) { - /*for (int i=0; isize; ++i) { - free(sparseMatrix->elements[i]); - }*/ - free(sparseMatrix->values); - free(sparseMatrix->rowaccInd); - free(sparseMatrix->columnIndexes); - -} - -void printCsrSparseMatrix(CsrSparseMatrix sparseMatrix) { - if (sparseMatrix.size == 0) { - return; - } - /* - CooSparseMatrixElement *element; - for (int i=0; irowIndex, element->columnIndex, - element->value); - }*/ - int t; - for (int i=0; i