/** * Copyright (c) 2022 by Contributors * @file sparse/spmm.h * @brief DGL C++ SpMM operator. */ #ifndef SPARSE_SPMM_H_ #define SPARSE_SPMM_H_ #include #include namespace dgl { namespace sparse { /** * @brief Perform a matrix multiplication of the sparse matrix and dense * matrix. The sparse matrix must have 1-dimensional values. If the sparse * matrix has shape (n, m), the dense matrix must have shape (m, k) or (m,), and * the returned dense matrix has shape (n, k) or (n,). * * This function supports autograd for both the sparse and dense matrix but does * not support higher order gradient. * * @param sparse_mat The sparse matrix. * @param dense_mat The dense matrix. * * @return Dense matrix. */ torch::Tensor SpMM( const c10::intrusive_ptr& sparse_mat, torch::Tensor dense_mat); } // namespace sparse } // namespace dgl #endif // SPARSE_SPMM_H_