aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/libraries/science/math/libtorch/test/test.cpp
blob: 5537724ce5f671ad2fa83e0bc0a564735fbd59db (plain)
1
2
3
4
5
6
7
#include <torch/torch.h>
#include <iostream>

int main() {
  torch::Tensor tensor = torch::eye(3);
  std::cout << tensor << std::endl;
}