simit
simit copied to clipboard
Error naming a tensor variable free
If a tensor variable is named free then the backend assert fails, presumably because there are internal functions named free
. The following test fails:
func main(a : vector[2](int)) -> b : vector[2](int)
free = a;
b = free*2;
end