1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
|
/* spcompress.c
*
* Copyright (C) 2012-2014, 2016 Patrick Alken
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <config.h>
#include <stdlib.h>
#include <math.h>
#include <gsl/gsl_math.h>
#include <gsl/gsl_errno.h>
#include <gsl/gsl_spmatrix.h>
/*
gsl_spmatrix_ccs()
Create a sparse matrix in compressed column format
Inputs: T - sparse matrix in triplet format
Return: pointer to new matrix (should be freed when finished with it)
*/
gsl_spmatrix *
gsl_spmatrix_ccs(const gsl_spmatrix *T)
{
if (!GSL_SPMATRIX_ISTRIPLET(T))
{
GSL_ERROR_NULL("matrix must be in triplet format", GSL_EINVAL);
}
else
{
const size_t *Tj; /* column indices of triplet matrix */
size_t *Cp; /* column pointers of compressed column matrix */
size_t *w; /* copy of column pointers */
gsl_spmatrix *m;
size_t n;
m = gsl_spmatrix_alloc_nzmax(T->size1, T->size2, T->nz,
GSL_SPMATRIX_CCS);
if (!m)
return NULL;
Tj = T->p;
Cp = m->p;
/* initialize column pointers to 0 */
for (n = 0; n < m->size2 + 1; ++n)
Cp[n] = 0;
/*
* compute the number of elements in each column:
* Cp[j] = # non-zero elements in column j
*/
for (n = 0; n < T->nz; ++n)
Cp[Tj[n]]++;
/* compute column pointers: p[j] = p[j-1] + nnz[j-1] */
gsl_spmatrix_cumsum(m->size2, Cp);
/* make a copy of the column pointers */
w = (size_t *) m->work;
for (n = 0; n < m->size2; ++n)
w[n] = Cp[n];
/* transfer data from triplet format to CCS */
for (n = 0; n < T->nz; ++n)
{
size_t k = w[Tj[n]]++;
m->i[k] = T->i[n];
m->data[k] = T->data[n];
}
m->nz = T->nz;
return m;
}
}
gsl_spmatrix *
gsl_spmatrix_compcol(const gsl_spmatrix *T)
{
return gsl_spmatrix_ccs(T);
}
/*
gsl_spmatrix_crs()
Create a sparse matrix in compressed row format
Inputs: T - sparse matrix in triplet format
Return: pointer to new matrix (should be freed when finished with it)
*/
gsl_spmatrix *
gsl_spmatrix_crs(const gsl_spmatrix *T)
{
if (!GSL_SPMATRIX_ISTRIPLET(T))
{
GSL_ERROR_NULL("matrix must be in triplet format", GSL_EINVAL);
}
else
{
const size_t *Ti; /* row indices of triplet matrix */
size_t *Cp; /* row pointers of compressed row matrix */
size_t *w; /* copy of column pointers */
gsl_spmatrix *m;
size_t n;
m = gsl_spmatrix_alloc_nzmax(T->size1, T->size2, T->nz,
GSL_SPMATRIX_CRS);
if (!m)
return NULL;
Ti = T->i;
Cp = m->p;
/* initialize row pointers to 0 */
for (n = 0; n < m->size1 + 1; ++n)
Cp[n] = 0;
/*
* compute the number of elements in each row:
* Cp[i] = # non-zero elements in row i
*/
for (n = 0; n < T->nz; ++n)
Cp[Ti[n]]++;
/* compute row pointers: p[i] = p[i-1] + nnz[i-1] */
gsl_spmatrix_cumsum(m->size1, Cp);
/* make a copy of the row pointers */
w = (size_t *) m->work;
for (n = 0; n < m->size1; ++n)
w[n] = Cp[n];
/* transfer data from triplet format to CRS */
for (n = 0; n < T->nz; ++n)
{
size_t k = w[Ti[n]]++;
m->i[k] = T->p[n];
m->data[k] = T->data[n];
}
m->nz = T->nz;
return m;
}
}
/*
gsl_spmatrix_cumsum()
Compute the cumulative sum:
p[j] = Sum_{k=0...j-1} c[k]
0 <= j < n + 1
Alternatively,
p[0] = 0
p[j] = p[j - 1] + c[j - 1]
Inputs: n - length of input array
c - (input/output) array of size n + 1
on input, contains the n values c[k]
on output, contains the n + 1 values p[j]
Return: success or error
*/
void
gsl_spmatrix_cumsum(const size_t n, size_t *c)
{
size_t sum = 0;
size_t k;
for (k = 0; k < n; ++k)
{
size_t ck = c[k];
c[k] = sum;
sum += ck;
}
c[n] = sum;
} /* gsl_spmatrix_cumsum() */
|