2024-07-12 21:32:19 +08:00
|
|
|
#pragma once
|
|
|
|
|
2024-08-13 17:00:48 +08:00
|
|
|
#ifdef IRRT_DEBUG
|
|
|
|
#define IRRT_DEBUG_ASSERT
|
|
|
|
#define IRRT_DEBUG_ASSERT_BOOL true
|
|
|
|
#else
|
|
|
|
#define IRRT_DEBUG_ASSERT_BOOL false
|
|
|
|
#endif
|
|
|
|
|
2024-07-12 21:32:19 +08:00
|
|
|
#include <irrt/core.hpp>
|
2024-08-13 17:00:48 +08:00
|
|
|
#include <irrt/debug.hpp>
|
|
|
|
#include <irrt/exception.hpp>
|
2024-07-12 21:32:19 +08:00
|
|
|
#include <irrt/int_defs.hpp>
|
2024-08-13 17:00:48 +08:00
|
|
|
#include <irrt/ndarray/array.hpp>
|
|
|
|
#include <irrt/ndarray/basic.hpp>
|
|
|
|
#include <irrt/ndarray/broadcast.hpp>
|
|
|
|
#include <irrt/ndarray/def.hpp>
|
|
|
|
#include <irrt/ndarray/indexing.hpp>
|
|
|
|
#include <irrt/ndarray/iter.hpp>
|
|
|
|
#include <irrt/ndarray/product.hpp>
|
|
|
|
#include <irrt/ndarray/reshape.hpp>
|
|
|
|
#include <irrt/ndarray/transpose.hpp>
|
|
|
|
#include <irrt/util.hpp>
|