You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As the documentation states that the return value is "a promise that is resolved when preprocessing is completed, null if this is called by a party that is neither a compute nor receiver party", one would expect that the programme would print finished preprocessing for cdivafter all preprocessing is finished.
However, when executing the programme I observe that finished preprocessing for cdiv is printed almost immediately, while preprocessing continues.
The next log message performed preprocessing in [...] is only printed after preprocessing is actually finished, which is several minutes later.
Expected behaviour:
finished preprocessing for cdiv should be printed after all preprocessing is completed, i.e. the promise returned by preprocessing() should resolve after all preprocessing operations triggered by the corresponding call to preprocessing() are completed.
The text was updated successfully, but these errors were encountered:
Consider the following piece of code:
As the documentation states that the return value is "a promise that is resolved when preprocessing is completed, null if this is called by a party that is neither a compute nor receiver party", one would expect that the programme would print
finished preprocessing for cdiv
after all preprocessing is finished.However, when executing the programme I observe that
finished preprocessing for cdiv
is printed almost immediately, while preprocessing continues.The next log message
performed preprocessing in [...]
is only printed after preprocessing is actually finished, which is several minutes later.Expected behaviour:
finished preprocessing for cdiv
should be printed after all preprocessing is completed, i.e. the promise returned bypreprocessing()
should resolve after all preprocessing operations triggered by the corresponding call topreprocessing()
are completed.The text was updated successfully, but these errors were encountered: