forked from M-Labs/nac3
20 lines
609 B
C++
20 lines
609 B
C++
// This file will be compiled like a real C++ program,
|
|
// and we do have the luxury to use the standard libraries.
|
|
// That is if the nix flakes do not have issues... especially on msys2...
|
|
#include <cstdint>
|
|
#include <cstdio>
|
|
#include <cstdlib>
|
|
#include <test/test_core.hpp>
|
|
#include <test/test_ndarray_basic.hpp>
|
|
#include <test/test_ndarray_broadcast.hpp>
|
|
#include <test/test_ndarray_indexing.hpp>
|
|
#include <test/test_slice.hpp>
|
|
|
|
int main() {
|
|
test::core::run();
|
|
test::slice::run();
|
|
test::ndarray_basic::run();
|
|
test::ndarray_indexing::run();
|
|
test::ndarray_broadcast::run();
|
|
return 0;
|
|
} |