TensorInfo

This commit is contained in:
2025-11-17 12:44:50 +04:00
parent 41f5634ce9
commit bbd9c67c96
6 changed files with 395 additions and 609 deletions

View File

@@ -1,2 +1,8 @@
#include "tensor.hpp"
#include <iostream>
int main() { return 0; }
int main() {
Tensor<float, 2> a = Tensors::rand<float>(1, 3);
std::cout << a.toString();
return 0;
}