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
Summary:
Pull Request resolved: meta-pytorch#3384
# context
* simple BE work to add postproc module name to the trace
Reviewed By: spmex
Differential Revision: D82700705
fbshipit-source-id: 572b120d008bfe85eb25b7488c6f46830e5e382f
f"Result of postproc module {self._fqn} is of type {type(res)}. We currently expect it to be a Tensor, Pipelineable, Iterable, or Dict to handle memory safety. If your output is not of this type, please add support for it above. Otherwise you might run into NaNs or CUDA Illegal Memory issues during training!"
167
+
f"Result of postproc module {self._fqn} is of type {type(res)}. "
168
+
"We currently expect it to be a Tensor, Pipelineable, Iterable, "
169
+
"or Dict to handle memory safety. If your output is not of this "
170
+
"type, please add support for it above. Otherwise you might run "
171
+
"into NaNs or CUDA Illegal Memory issues during training!"
0 commit comments