First omp

This commit is contained in:
2026-06-23 15:07:55 +02:00
parent b842990cd4
commit 77d2dad320
18 changed files with 789 additions and 88 deletions
+7 -1
View File
@@ -62,9 +62,15 @@ panic::real_t x = 2.4;
int main(void) {
panic::tensor::vector a(3);
panic::tensor::real_vector a(3);
panic::tensor::uint_vector b(3);
panic::tensor::int_vector c(3);
a[2] = 1.2;
b[2] = 3;
c[2] = -3;
panic::io::print(a);
panic::io::print(b);
panic::io::print(c);
std::cout << a[100] << std::endl;
std::cout << a.at(100) << std::endl;
std::cout << panic::pi << std::endl;