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
in other worlds, the transmit direction of agg_vs_mul_fg should be from guest to host.
And after this modification, I can run the hetero_fm example successfully, which would fail otherwise.
PS: I would like to work on this, but may need some help, like some guides on how to setup environment, what test uint should be added before open a PR. Please let me know who should I contact?
The text was updated successfully, but these errors were encountered:
Inside the definition of class
HeteroFMTransferVariable
, there is the following line of code:which means the transmit direction of
agg_vx_mul_fg
is from host to guest.Then, inside file
hetero_fm_gradient_and_loss.py
, there is the following lines of code:which says the transmit direction of
agg_vs_mul_fg
is from guest to host.So, there is a conflict between these two places of code.
After some try and test, I found that it is a typo in the definition of
HeteroFMTransferVariable
. The way it meant to be should be like the following:in other worlds, the transmit direction of
agg_vs_mul_fg
should be from guest to host.And after this modification, I can run the hetero_fm example successfully, which would fail otherwise.
PS: I would like to work on this, but may need some help, like some guides on how to setup environment, what test uint should be added before open a PR. Please let me know who should I contact?
The text was updated successfully, but these errors were encountered: