tf-encrypted / moose

Secure distributed dataflow framework for encrypted machine learning and data processing
Apache License 2.0
58 stars 15 forks source link

Incomplete ops for boolean tensor #981

Open jvmncs opened 2 years ago

jvmncs commented 2 years ago

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
mortendahl commented 2 years ago

I would say "fix later", wdyt @jvmncs ?