It is common for a script to have a series of blocks that update e.g. a tensor. Currently YW doesn't allow blocks with the same @out variables; we have to fake it with code like...
@begin block_1
@in myTensor
@out myTensor @as myTensor_1
@end block_1
@begin block_2
@in myTensor @as myTensor_1
@out myTensor @as myTensor_2
@end block_2
:
This does not accurately depict what is happening to myTensor. Any ideas?
It is common for a script to have a series of blocks that update e.g. a tensor. Currently YW doesn't allow blocks with the same @out variables; we have to fake it with code like...
This does not accurately depict what is happening to myTensor. Any ideas?