Replies: 1 comment 2 replies
-
Hi @ptimperio, thanks for the report. Can you please share 1) the OS you're using 2) Python version 3) whether this happens every time you run the program or just some of the time? It seems to work on my machine (M1 Mac) so I'm wondering if it's a platform-specific issue. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
non-codon code:
import torch
x = torch.rand(5, 3)
print(x)
non-codon results:
tensor([[0.8172, 0.7237, 0.2241],
[0.6361, 0.3099, 0.2438],
[0.0793, 0.1451, 0.8085],
[0.8898, 0.9722, 0.7596],
[0.7166, 0.0881, 0.1341]])
codon code:
from python import torch
x = torch.rand(5, 3)
print(x)
codon results:
tensor([[0.7914, 0.9300, 0.2801],
[0.7306, 0.4341, 0.6689],
[0.0472, 0.5387, 0.4636],
[0.4057, 0.8121, 0.1802],
[0.1005, 0.3935, 0.1841]])
free(): invalid pointer
Aborted
Any suggestions?
Beta Was this translation helpful? Give feedback.
All reactions