View source on GitHub |
Broadcasts a federated value from the tff.SERVER
to the tff.CLIENTS
.
tff.federated_broadcast(
value
)
Args | |
---|---|
value
|
A value of a TFF federated type placed at the tff.SERVER , all
members of which are equal (the tff.FederatedType.all_equal property of
value is True ).
|
Returns | |
---|---|
A representation of the result of broadcasting: a value of a TFF federated
type placed at the tff.CLIENTS , all members of which are equal.
|
Raises | |
---|---|
TypeError
|
If the argument is not a federated TFF value placed at the
tff.SERVER .
|