File: GB_cuda_select_sparse.cpp

package info (click to toggle)
suitesparse 1%3A7.12.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 258,724 kB
  • sloc: ansic: 1,156,724; cpp: 48,359; makefile: 5,047; fortran: 2,087; java: 1,826; sh: 1,456; ruby: 725; python: 676; asm: 371; sed: 166; awk: 44
file content (92 lines) | stat: -rw-r--r-- 2,978 bytes parent folder | download
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

#include "select/GB_cuda_select.hpp"

#undef  GB_FREE_ALL
#define GB_FREE_ALL                         \
{                                           \
    GB_phybix_free (C) ;                    \
    GB_cuda_stream_pool_release (&stream) ; \
}

GrB_Info GB_cuda_select_sparse
(
    GrB_Matrix C,               // C is jumbled if A is jumbled
    const bool C_iso,
    const GrB_IndexUnaryOp op,
    const bool flipij,
    const GrB_Matrix A,         // A can be jumbled, in all cases
    const GB_void *athunk,
    const GB_void *ythunk,
    GB_Werk Werk
)
{

    // check inputs
    GrB_Info info = GrB_NO_VALUE ;
    ASSERT (C != NULL && !(C->header_size == 0)) ;
    ASSERT (A != NULL && !(A->header_size == 0)) ;

    GBURBLE ("(select sparse on cuda) ") ;
    printf ("\nblockdim1: %d chunksize1: %d\n", 
        GB_CUDA_SELECT_SPARSE_BLOCKDIM1,
        GB_CUDA_SELECT_SPARSE_CHUNKSIZE1) ;
    printf ("blockdim2: %d chunksize2: %d\n", 
        GB_CUDA_SELECT_SPARSE_BLOCKDIM2,
        GB_CUDA_SELECT_SPARSE_CHUNKSIZE2) ;

    cudaStream_t stream = nullptr ;
    GB_OK (GB_cuda_stream_pool_acquire (&stream)) ;

    int64_t anz = GB_nnz_held (A) ;

    int32_t number_of_sms = GB_Global_gpu_sm_get (0) ;
    int64_t raw_gridsz = GB_ICEIL (anz, GB_CUDA_SELECT_SPARSE_CHUNKSIZE1) ;
    int32_t gridsz = std::min (raw_gridsz, (int64_t) (number_of_sms * 256)) ;
    gridsz = std::max (gridsz, 1) ;

    // determine the p_is_32, j_is_32, and i_is_32 settings for the new matrix
    int csparsity = GxB_HYPERSPARSE ;
    bool Cp_is_32, Cj_is_32, Ci_is_32 ;
    GB_determine_pji_is_32 (&Cp_is_32, &Cj_is_32, &Ci_is_32,
        csparsity, anz, A->vlen, A->vdim, Werk) ;

    // Initialize C to be a user-returnable hypersparse empty matrix.
    // If needed, we handle the hyper->sparse conversion below.

    GB_OK (GB_new (&C, // sparse or hyper (from A), existing header
        A->type, A->vlen, A->vdim, GB_ph_calloc, A->is_csc,
        csparsity, A->hyper_switch, /* C->plen: revised later: */ 1,
        Cp_is_32, Cj_is_32, Ci_is_32)) ;

    C->iso = C_iso ;

    CUDA_OK (cudaGetLastError ( )) ;    //FIXME: remove
    CUDA_OK (cudaStreamSynchronize (stream)) ;  //FIXME: remove
    CUDA_OK (cudaGetLastError ( )) ;    //FIXME: remove
    CUDA_OK (cudaStreamSynchronize (stream)) ;  //FIXME: remove
    CUDA_OK (cudaGetLastError ( )) ;    //FIXME: remove

    GB_OK (GB_cuda_select_sparse_jit (C, A,
        flipij, ythunk, op, stream, gridsz)) ;

    GB_OK (GB_cuda_stream_pool_release (&stream)) ;

    ASSERT (C->x != NULL) ;

    if (C_iso)
    {
        // If C is iso, initialize the iso entry
        GB_select_iso ((GB_void *) C->x, op->opcode, athunk,
            (GB_void *) A->x, A->type->size) ;
    }

    if (C->nvec == C->vdim)
    {
        // C hypersparse with all vectors present; quick convert to sparse
        GB_FREE_MEMORY (&(C->h), C->h_size) ;
    }

    ASSERT_MATRIX_OK (C, "C output of cuda_select_sparse", GB0) ;
    return GrB_SUCCESS ;
}