forked from M-Labs/nac3
David Mak
438943ac6f
Based on 8f9d2d82: core/ndstrides: implement ndarray indexing The functionality for `...` and `np.newaxis` is there in IRRT, but there is no implementation of them for @kernel Python expressions because of M-Labs/nac3#486.
11 lines
296 B
C++
11 lines
296 B
C++
#include "irrt/exception.hpp"
|
|
#include "irrt/list.hpp"
|
|
#include "irrt/math.hpp"
|
|
#include "irrt/ndarray.hpp"
|
|
#include "irrt/range.hpp"
|
|
#include "irrt/slice.hpp"
|
|
#include "irrt/ndarray/basic.hpp"
|
|
#include "irrt/ndarray/def.hpp"
|
|
#include "irrt/ndarray/iter.hpp"
|
|
#include "irrt/ndarray/indexing.hpp"
|