sparse_format.h 2.83 KB
Newer Older
czkkkkkk's avatar
czkkkkkk committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 *  Copyright (c) 2022 by Contributors
 * @file sparse/sparse_format.h
 * @brief DGL C++ sparse format header.
 */
#ifndef SPARSE_SPARSE_FORMAT_H_
#define SPARSE_SPARSE_FORMAT_H_

// clang-format off
#include <sparse/dgl_headers.h>
// clang-format on

#include <torch/custom_class.h>
#include <torch/script.h>

#include <memory>

namespace dgl {
namespace sparse {

21
/** @brief SparseFormat enumeration. */
czkkkkkk's avatar
czkkkkkk committed
22
23
enum SparseFormat { kCOO, kCSR, kCSC };

24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/** @brief COO sparse structure. */
struct COO {
  /** @brief The shape of the matrix. */
  int64_t num_rows = 0, num_cols = 0;
  /** @brief COO format row indices array of the matrix. */
  torch::Tensor row;
  /** @brief COO format column indices array of the matrix. */
  torch::Tensor col;
  /** @brief Whether the row indices are sorted. */
  bool row_sorted = false;
  /** @brief Whether the column indices per row are sorted. */
  bool col_sorted = false;
};


/** @brief CSR sparse structure. */
czkkkkkk's avatar
czkkkkkk committed
40
struct CSR {
41
42
43
  /** @brief The dense shape of the matrix. */
  int64_t num_rows = 0, num_cols = 0;
  /** @brief CSR format index pointer array of the matrix. */
czkkkkkk's avatar
czkkkkkk committed
44
  torch::Tensor indptr;
45
  /** @brief CSR format index array of the matrix. */
czkkkkkk's avatar
czkkkkkk committed
46
  torch::Tensor indices;
47
48
  /** @brief Data index tensor. When it is null, assume it is from 0 to NNZ - 1.
   */
czkkkkkk's avatar
czkkkkkk committed
49
  torch::optional<torch::Tensor> value_indices;
50
51
  /** @brief Whether the column indices per row are sorted. */
  bool sorted = false;
czkkkkkk's avatar
czkkkkkk committed
52
53
};

54
55
/** @brief Convert an old DGL COO format to a COO in the sparse library. */
std::shared_ptr<COO> COOFromOldDGLCOO(const aten::COOMatrix& dgl_coo);
czkkkkkk's avatar
czkkkkkk committed
56

57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/** @brief Convert a COO in the sparse library to an old DGL COO matrix. */
aten::COOMatrix COOToOldDGLCOO(const std::shared_ptr<COO>& coo);

/** @brief Convert an old DGL CSR format to a CSR in the sparse library. */
std::shared_ptr<CSR> CSRFromOldDGLCSR(const aten::CSRMatrix& dgl_csr);

/** @brief Convert a CSR in the sparse library to an old DGL CSR matrix. */
aten::CSRMatrix CSRToOldDGLCSR(const std::shared_ptr<CSR>& csr);

/** @brief Convert a CSR format to COO format. */
std::shared_ptr<COO> CSRToCOO(const std::shared_ptr<CSR>& csr);

/** @brief Convert a CSC format to COO format. */
std::shared_ptr<COO> CSCToCOO(const std::shared_ptr<CSR>& csc);

/** @brief Convert a COO format to CSR format. */
std::shared_ptr<CSR> COOToCSR(const std::shared_ptr<COO>& coo);

/** @brief Convert a CSC format to CSR format. */
std::shared_ptr<CSR> CSCToCSR(const std::shared_ptr<CSR>& csc);

/** @brief Convert a COO format to CSC format. */
std::shared_ptr<CSR> COOToCSC(const std::shared_ptr<COO>& coo);

/** @brief Convert a CSR format to CSC format. */
std::shared_ptr<CSR> CSRToCSC(const std::shared_ptr<CSR>& csr);
czkkkkkk's avatar
czkkkkkk committed
83

84
85
86
87
/** @brief COO transposition. */
std::shared_ptr<COO> COOTranspose(const std::shared_ptr<COO>& coo);


czkkkkkk's avatar
czkkkkkk committed
88
89
90
91
}  // namespace sparse
}  // namespace dgl

#endif  // SPARSE_SPARSE_FORMAT_H_