Cannot convert tensor_hash code to any integer
PyTorch Forums
Cannot convert tensor_hash code to any integer
The following program was generated by googles AI: #include <torch/torch.h> #include <iostream> int main() { // Create a dummy tensor torch::Tensor a = torch::randn({1, 3}); // Hash the elements of the tensor torch::Tensor hashed = torch::hash_tensor(a); // Extract the hash value as a 64-bit unsigned integer uint64_t hash_value = hashed.item<uint64_t>(); std::cout << "Tensor Hash: " << hash_value << std::endl; } When I try to compile and link it I g...
0 comments
No comments yet.