docs(frontend): Fix a typo in module composition

This commit is contained in:
Bourgerie Quentin
2024-10-01 16:56:04 +02:00
committed by Quentin Bourgerie
parent ffaed149b4
commit 48b5c9def3

View File

@@ -310,7 +310,7 @@ with MyModule.wire_pipeline(inputset) as samples_iter:
for s in samples_iter:
# Here we provide an example of how we expect the module functions to be used at runtime in fhe.
Module.increment(Module.decimate(Module.decrement(s)))
MyModule.increment(MyModule.decimate(MyModule.decrement(s)))
# It is not needed to provide any inputsets to the `compile` method after tracing the wires, since those were already computed automatically during the module tracing.
module = MyModule.compile(