Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1.53 KB

File metadata and controls

48 lines (34 loc) · 1.53 KB

cuSPARSE Generic APIs - cusparseDenseToSparse Blocked ELL

Description

This sample demonstrates the usage of cusparseDenseToSparse Blocked ELL for performing dense matrix to sparse matrix conversion, where the sparse matrix is represented in Blocked-ELL format.

cusparseDenseToSparse Documentation

B (dense) -> A (blockedell)

Building

  • Command line

    nvcc -I<cuda_toolkit_path>/include dense2sparse_blockedell_example.c -o dense2sparse_blockedell_example -lcusparse
  • Linux

    make
  • Windows/Linux

    mkdir build
    cd build
    cmake ..
    make

    On Windows, instead of running the last build step, open the Visual Studio Solution that was created and build.

Support

  • Supported SM Architectures: SM 5.0, SM 5.2, SM 5.3, SM 6.0, SM 6.1, SM 6.2, SM 7.0, SM 7.2, SM 7.5, SM 8.0, SM 8.6, SM 8.9, SM 9.0
  • Supported OSes: Linux, Windows, QNX, Android
  • Supported CPU Architectures: x86_64, arm64
  • Supported Compilers: gcc, clang, Intel icc, Microsoft msvc, Nvidia HPC SDK nvc
  • Language: C99

Prerequisites