View source on GitHub |
Asserts that comp
contains no secure aggregation calls.
tff.test.assert_not_contains_secure_aggregation(
comp
)
Args | |
---|---|
comp
|
A tff.Computation , often a function annotated with
tff.federated_computation or tff.tensorflow.computation . Note that
polymorphic functions (those without the types of their arguments
explicitly specified) will not yet be tff.Computation s.
|
Raises | |
---|---|
AssertionError if comp contains a secure aggregation call.
ValueError if comp contains a call whose target function cannot be
identified. This may result from calls to references or other
indirect structures.
|