forked from jiuyuan/InfiniTensor
9 lines
125 B
C
9 lines
125 B
C
![]() |
namespace infini {
|
||
|
|
||
|
#define SMALL_ARRAY_SIZE 8
|
||
|
struct SmallArray {
|
||
|
int data[SMALL_ARRAY_SIZE];
|
||
|
};
|
||
|
|
||
|
} // namespace infini
|