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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
|
//------------------------------------------------------------------------------
// GB_resize: change the size of a matrix
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//------------------------------------------------------------------------------
#include "GB_select.h"
#define GB_FREE_ALL \
{ \
GB_FREE (&Ax_new, Ax_new_size) ; \
GB_FREE (&Ab_new, Ab_new_size) ; \
GB_phybix_free (A) ; \
}
//------------------------------------------------------------------------------
// GB_resize: resize a GrB_Matrix
//------------------------------------------------------------------------------
GrB_Info GB_resize // change the size of a matrix
(
GrB_Matrix A, // matrix to modify
const GrB_Index nrows_new, // new number of rows in matrix
const GrB_Index ncols_new, // new number of columns in matrix
GB_Context Context
)
{
//--------------------------------------------------------------------------
// check inputs
//--------------------------------------------------------------------------
GrB_Info info ;
GB_void *restrict Ax_new = NULL ; size_t Ax_new_size = 0 ;
int8_t *restrict Ab_new = NULL ; size_t Ab_new_size = 0 ;
ASSERT_MATRIX_OK (A, "A to resize", GB0) ;
//--------------------------------------------------------------------------
// handle the CSR/CSC format
//--------------------------------------------------------------------------
int64_t vdim_old = A->vdim ;
int64_t vlen_old = A->vlen ;
int64_t vlen_new, vdim_new ;
if (A->is_csc)
{
vlen_new = nrows_new ;
vdim_new = ncols_new ;
}
else
{
vlen_new = ncols_new ;
vdim_new = nrows_new ;
}
if (vdim_new == vdim_old && vlen_new == vlen_old)
{
// nothing to do
return (GrB_SUCCESS) ;
}
//--------------------------------------------------------------------------
// delete any lingering zombies and assemble any pending tuples
//--------------------------------------------------------------------------
// only do so if either dimension is shrinking, or if pending tuples exist
// and vdim_old <= 1 and vdim_new > 1, since in that case, Pending->j has
// not been allocated yet, but would be required in the resized matrix.
// If A is jumbled, it must be sorted.
if (vdim_new < vdim_old || vlen_new < vlen_old || A->jumbled ||
(GB_PENDING (A) && vdim_old <= 1 && vdim_new > 1))
{
GB_MATRIX_WAIT (A) ;
ASSERT_MATRIX_OK (A, "A to resize, wait", GB0) ;
}
ASSERT (!GB_JUMBLED (A)) ;
//--------------------------------------------------------------------------
// resize the matrix
//--------------------------------------------------------------------------
const bool A_is_bitmap = GB_IS_BITMAP (A) ;
const bool A_is_full = GB_IS_FULL (A) ;
const bool A_is_shrinking = (vdim_new <= vdim_old && vlen_new <= vlen_old) ;
if ((A_is_full || A_is_bitmap) && A_is_shrinking)
{
//----------------------------------------------------------------------
// A is full or bitmap
//----------------------------------------------------------------------
// get the old and new dimensions
int64_t anz_new = 1 ;
bool ok = GB_int64_multiply ((GrB_Index *) &anz_new,
vlen_new, vdim_new) ;
if (!ok) anz_new = 1 ;
size_t nzmax_new = GB_IMAX (anz_new, 1) ;
bool in_place = A_is_full && (vlen_new == vlen_old || vdim_new <= 1) ;
size_t asize = A->type->size ;
const bool A_iso = A->iso ;
//----------------------------------------------------------------------
// allocate or reallocate A->x, unless A is iso
//----------------------------------------------------------------------
ok = true ;
if (!A_iso)
{
if (in_place)
{
// reallocate A->x in-place; no data movement needed
GB_REALLOC (A->x, nzmax_new*asize, GB_void, &(A->x_size), &ok,
Context) ;
}
else
{
// allocate new space for A->x; use calloc to ensure all space
// is initialized.
Ax_new = GB_CALLOC (nzmax_new*asize, GB_void, // x:OK:calloc
&Ax_new_size) ;
ok = (Ax_new != NULL) ;
}
}
//----------------------------------------------------------------------
// allocate or reallocate A->b
//----------------------------------------------------------------------
if (!in_place && A_is_bitmap)
{
// allocate new space for A->b
Ab_new = GB_MALLOC (nzmax_new*asize, int8_t, &Ab_new_size) ;
ok = ok && (Ab_new != NULL) ;
}
if (!ok)
{
// out of memory
GB_FREE_ALL ;
return (GrB_OUT_OF_MEMORY) ;
}
//----------------------------------------------------------------------
// move data if not in-place
//----------------------------------------------------------------------
if (!in_place)
{
//------------------------------------------------------------------
// determine number of threads to use
//------------------------------------------------------------------
GB_GET_NTHREADS_MAX (nthreads_max, chunk, Context) ;
int nthreads = GB_nthreads (anz_new, chunk, nthreads_max) ;
//------------------------------------------------------------------
// resize Ax, unless A is iso
//------------------------------------------------------------------
if (!A_iso)
{
GB_void *restrict Ax_old = (GB_void *) A->x ;
int64_t j ;
if (vdim_new <= 4*nthreads)
{
// use all threads for each vector
for (j = 0 ; j < vdim_new ; j++)
{
GB_void *pdest = Ax_new + j * vlen_new * asize ;
GB_void *psrc = Ax_old + j * vlen_old * asize ;
GB_memcpy (pdest, psrc, vlen_new * asize, nthreads) ;
}
}
else
{
// use a single thread for each vector
#pragma omp parallel for num_threads(nthreads) \
schedule(static)
for (j = 0 ; j < vdim_new ; j++)
{
GB_void *pdest = Ax_new + j * vlen_new * asize ;
GB_void *psrc = Ax_old + j * vlen_old * asize ;
memcpy (pdest, psrc, vlen_new * asize) ;
}
}
GB_FREE (&Ax_old, A->x_size) ;
A->x = Ax_new ; A->x_size = Ax_new_size ;
}
//------------------------------------------------------------------
// resize Ab if A is bitmap, and count the # of entries
//------------------------------------------------------------------
if (A_is_bitmap)
{
int8_t *restrict Ab_old = A->b ;
int64_t pnew ;
int64_t anvals = 0 ;
#pragma omp parallel for num_threads(nthreads) \
schedule(static) reduction(+:anvals)
for (pnew = 0 ; pnew < anz_new ; pnew++)
{
int64_t i = pnew % vlen_new ;
int64_t j = pnew / vlen_new ;
int64_t pold = i + j * vlen_old ;
int8_t ab = Ab_old [pold] ;
Ab_new [pnew] = ab ;
anvals += ab ;
}
A->nvals = anvals ;
GB_FREE (&Ab_old, A->b_size) ;
A->b = Ab_new ; A->b_size = Ab_new_size ;
}
}
//----------------------------------------------------------------------
// adjust dimensions and return result
//----------------------------------------------------------------------
A->vdim = vdim_new ;
A->vlen = vlen_new ;
A->nvec = vdim_new ;
A->nvec_nonempty = (vlen_new == 0) ? 0 : vdim_new ;
ASSERT_MATRIX_OK (A, "A bitmap/full shrunk", GB0) ;
return (GrB_SUCCESS) ;
}
else
{
//----------------------------------------------------------------------
// convert A to hypersparse and resize it
//----------------------------------------------------------------------
// convert to hypersparse
GB_OK (GB_convert_any_to_hyper (A, Context)) ;
ASSERT (GB_IS_HYPERSPARSE (A)) ;
// A->Y will be invalidated, so free it
GB_hyper_hash_free (A) ;
// resize the number of sparse vectors
int64_t *restrict Ah = A->h ;
int64_t *restrict Ap = A->p ;
A->vdim = vdim_new ;
if (vdim_new < A->plen)
{
// reduce the size of A->p and A->h; this cannot fail
info = GB_hyper_realloc (A, vdim_new, Context) ;
ASSERT (info == GrB_SUCCESS) ;
Ap = A->p ;
Ah = A->h ;
}
if (vdim_new < vdim_old)
{
// descrease A->nvec to delete the vectors outside the range
// 0...vdim_new-1.
int64_t pleft = 0 ;
int64_t pright = GB_IMIN (A->nvec, vdim_new) - 1 ;
bool found ;
GB_SPLIT_BINARY_SEARCH (vdim_new, Ah, pleft, pright, found) ;
A->nvec = pleft ;
A->nvals = Ap [A->nvec] ;
// number of vectors is decreasing, need to count the new number of
// non-empty vectors: done during pruning or by selector, below.
A->nvec_nonempty = -1 ; // recomputed just below
}
//----------------------------------------------------------------------
// resize the length of each vector
//----------------------------------------------------------------------
// if vlen is shrinking, delete entries outside the new matrix
if (vlen_new < vlen_old)
{
GB_OK (GB_selector (
NULL, // A in-place
GB_ROWLE_idxunop_code, // use the opcode only
NULL, // no operator, just opcode is needed
false, // flipij is false
A, // input/output matrix
vlen_new-1, // ithunk
NULL, // no Thunk GrB_Scalar
Context)) ;
}
//----------------------------------------------------------------------
// vlen has been resized
//----------------------------------------------------------------------
A->vlen = vlen_new ;
ASSERT_MATRIX_OK (A, "A vlen resized", GB0) ;
//----------------------------------------------------------------------
// conform the matrix to its desired sparsity structure
//----------------------------------------------------------------------
info = GB_conform (A, Context) ;
ASSERT (GB_IMPLIES (info == GrB_SUCCESS, A->nvec_nonempty >= 0)) ;
return (info) ;
}
}
|