"docs/source/vscode:/vscode.git/clone" did not exist on "fc18542a1e64f301eead3595d83b479379812036"
matrix_ops_impl.h 455 Bytes
Newer Older
1
2
3
4
5
6
7
8
/**
 *  Copyright (c) 2023 by Contributors
 * @file matrix_ops_impl.h
 * @brief DGL C++ sparse matrix operator implementations.
 */
#ifndef DGL_SPARSE_MATRIX_OPS_IMPL_H_
#define DGL_SPARSE_MATRIX_OPS_IMPL_H_

xiangyuzhi's avatar
xiangyuzhi committed
9
#include <sparse/sparse_format.h>
10
#include <sparse/sparse_matrix.h>
xiangyuzhi's avatar
xiangyuzhi committed
11
12

#include <tuple>
13
#include <vector>
xiangyuzhi's avatar
xiangyuzhi committed
14

15
#include "./utils.h"
xiangyuzhi's avatar
xiangyuzhi committed
16

17
18
namespace dgl {
namespace sparse {}  // namespace sparse
19
20
21
}  // namespace dgl

#endif  // DGL_SPARSE_MATRIX_OPS_IMPL_H_