Fix add tensor

This commit is contained in:
lucasdelimanogueira 2024-04-29 10:16:20 -03:00
parent b5172b5bdb
commit be1cc7ba11
4 changed files with 1 additions and 1 deletions

Binary file not shown.

View file

@ -209,7 +209,7 @@ extern "C" {
}
if (strcmp(tensor1->device, tensor2->device) != 0) {
fprintf(stderr, "Tensors must be on the same device: %s and %s\n", &tensor1->device, &tensor2->device);
fprintf(stderr, "Tensors must be on the same device: %s and %s\n", tensor1->device, tensor2->device);
exit(1);
}

Binary file not shown.