xref: /aosp_15_r20/external/pytorch/aten/src/ATen/native/mkl/SparseCsrLinearAlgebra.h (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1 #pragma once
2 #include <ATen/core/Tensor.h>
3 #include <ATen/SparseCsrTensorUtils.h>
4 
5 namespace at {
6 namespace sparse_csr {
7 Tensor& _sparse_mm_mkl_(
8     Tensor& self,
9     const SparseCsrTensor& sparse_,
10     const Tensor& dense,
11     const Tensor& t,
12     const Scalar& alpha,
13     const Scalar& beta);
14 } // namespace native
15 } // namespace at
16