Lines Matching defs:cols
581 mgpuCreateDnMat(intptr_t rows, intptr_t cols, void *values, int32_t dtp,
585 CUSPARSE_REPORT_IF_ERROR(cusparseCreateDnMat(&mat, rows, cols, /*ld=*/cols,
597 mgpuCreateCoo(intptr_t rows, intptr_t cols, intptr_t nnz, void *rowIdxs,
603 CUSPARSE_REPORT_IF_ERROR(cusparseCreateCoo(&mat, rows, cols, nnz, rowIdxs,
611 mgpuCreateCooAoS(intptr_t rows, intptr_t cols, intptr_t nnz, void *idxs,
617 &mat, rows, cols, nnz, idxs, values, iTp, CUSPARSE_INDEX_BASE_ZERO, dTp))
623 mgpuCreateCsr(intptr_t rows, intptr_t cols, intptr_t nnz, void *rowPos,
630 CUSPARSE_REPORT_IF_ERROR(cusparseCreateCsr(&mat, rows, cols, nnz, rowPos,
637 mgpuCreateCsc(intptr_t rows, intptr_t cols, intptr_t nnz, void *colPos,
644 CUSPARSE_REPORT_IF_ERROR(cusparseCreateCsc(&mat, rows, cols, nnz, colPos,
844 int64_t *cols = reinterpret_cast<int64_t *>(c);
846 CUSPARSE_REPORT_IF_ERROR(cusparseSpMatGetSize(matDescr, rows, cols, nnz));
901 mgpuCreateCuSparseLtDnMat(void *dh, intptr_t rows, intptr_t cols, void *values,
910 &cusparseLt_env, &(dnmat_handle->mat), rows, cols, /*lda=*/cols,
921 mgpuCusparseLtCreate2To4SpMat(void *sh, intptr_t rows, intptr_t cols,
930 &cusparseLt_env, &(spmat_handle->mat), rows, cols, /*ld=*/cols, alignment,