spmm_cpu.h 472 Bytes
Newer Older
rusty1s's avatar
matmul  
rusty1s committed
1
2
#pragma once

3
#include "../extensions.h"
rusty1s's avatar
matmul  
rusty1s committed
4
5
6
7
8
9
10
11
12

std::tuple<torch::Tensor, torch::optional<torch::Tensor>>
spmm_cpu(torch::Tensor rowptr, torch::Tensor col,
         torch::optional<torch::Tensor> optional_value, torch::Tensor mat,
         std::string reduce);

torch::Tensor spmm_value_bw_cpu(torch::Tensor row, torch::Tensor rowptr,
                                torch::Tensor col, torch::Tensor mat,
                                torch::Tensor grad, std::string reduce);