forked from ofiwg/libfabric
-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
Description
A number of large runs of our code failed due to errors when polling the send queue.
when an error is reported we use
struct fi_cq_err_entry e = {};
int err_sz = fi_cq_readerr(txcq_, &e ,0);
the error returned reported
Flags = 0
length = 0
so we do not have much information to use to debug.
Should the flags be set to SEND or RMA or is flags of 0 a valid value?
Reactions are currently unavailable