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
This will involve using an auxiliary helper together with changes to Gradient.TypedServer.CompileHooks.
Specifically, CompileHooks will have to detect the standard GenServer.handle_call return values instead of just detecting the TypedServer.reply call, as the latter won't be usable at all, since the auxiliary handle cannot accept from at all. This is due to from, due to the use of term() / any() in its definition, disabling exhaustiveness checking. See #96 for more details.
The text was updated successfully, but these errors were encountered:
This will involve using an auxiliary helper together with changes to
Gradient.TypedServer.CompileHooks
.Specifically,
CompileHooks
will have to detect the standardGenServer.handle_call
return values instead of just detecting theTypedServer.reply
call, as the latter won't be usable at all, since the auxiliaryhandle
cannot acceptfrom
at all. This is due tofrom
, due to the use ofterm()
/any()
in its definition, disabling exhaustiveness checking. See #96 for more details.The text was updated successfully, but these errors were encountered: