27#include "neml2/misc/types.h"
28#include "neml2/tensors/tensors_fwd.h"
32#define DECLARE_BATCH_CAT(T) \
33 T batch_cat(const std::vector<T> & tensors, Size d = 0); \
34 T batch_cat(const std::initializer_list<T> & tensors, Size d = 0)
35FOR_ALL_TENSORBASE(DECLARE_BATCH_CAT);
36#undef DECLARE_BATCH_CAT
Definition DiagnosticsInterface.cxx:30
int64_t Size
Definition types.h:65
Tensor base_cat(const std::vector< Tensor > &tensors, Size d)
Definition cat.cxx:47