18 lines
493 B
C
18 lines
493 B
C
/**
|
|
* Copyright (c) 2020 by Contributors
|
|
* @file dgl/array.h
|
|
* @brief Common array operations required by DGL.
|
|
*
|
|
* Note that this is not meant for a full support of array library such as ATen.
|
|
* Only a limited set of operators required by DGL are implemented.
|
|
*/
|
|
#ifndef DGL_ARRAY_H_
|
|
#define DGL_ARRAY_H_
|
|
#include "./aten/array_ops.h"
|
|
#include "./aten/coo.h"
|
|
#include "./aten/csr.h"
|
|
#include "./aten/macro.h"
|
|
#include "./aten/spmat.h"
|
|
#include "./aten/types.h"
|
|
#endif // DGL_ARRAY_H_
|