moose
moose copied to clipboard
Incomplete ops for boolean tensor
- Identity op @ replicated (from host input)
- logical or @ replicated (from host input)
comp to reproduce:
@edsl.computation
def my_comp():
with bob:
x = edsl.constant(np.array([0, 1], dtype=np.bool))
with rep:
# x = edsl.logical_or(x, x)
x = edsl.identity(x)
with bob:
x = edsl.identity(x)
return x
I would say "fix later", wdyt @jvmncs ?