We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At this point in apply_to_tensors(), the PackedSequence case drops the result tensors, unlike the other cases https://github.com/facebookresearch/fairscale/blob/main/fairscale/utils/containers.py#L27
apply_to_tensors()
and thus fully_sharded_data_parallel is going to fail to capture the tensors for hooks here: https://github.com/facebookresearch/fairscale/blob/main/fairscale/nn/data_parallel/fully_sharded_data_parallel.py#L1545
or properly yield casting results here: https://github.com/facebookresearch/fairscale/blob/main/fairscale/nn/data_parallel/fully_sharded_data_parallel.py#L2490
The text was updated successfully, but these errors were encountered:
This is a care that our unit tests failed to cover, right?
Sorry, something went wrong.
crutcher
No branches or pull requests
At this point in
apply_to_tensors()
, the PackedSequence case drops the result tensors, unlike the other caseshttps://github.com/facebookresearch/fairscale/blob/main/fairscale/utils/containers.py#L27
and thus fully_sharded_data_parallel is going to fail to capture the tensors for hooks here:
https://github.com/facebookresearch/fairscale/blob/main/fairscale/nn/data_parallel/fully_sharded_data_parallel.py#L1545
or properly yield casting results here:
https://github.com/facebookresearch/fairscale/blob/main/fairscale/nn/data_parallel/fully_sharded_data_parallel.py#L2490
The text was updated successfully, but these errors were encountered: