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
According to Issue #67 , it can be inferred that when B=1, approximately 119 GFLOPs are needed (in fact, this represents the number of MACs).
However, in the DiT code, when calculating attention, it seems that an additional B empty classes are added to the calculation.
Therefore, when estimating the computational load of the DiT block, it should be calculated as B*2.
Generating a 256x256 image should require 1 (B=1) * 2 (adding empty classes) * 119 GFLOPs ?
Is there a problem with my understanding? I hope you can answer this question. Thank you very much
The text was updated successfully, but these errors were encountered:
@wpeebles @s9xie @ictzyqq @void-main could you please kindly take a look, thank you very much!
Sorry, something went wrong.
No branches or pull requests
According to Issue #67 , it can be inferred that when B=1, approximately 119 GFLOPs are needed (in fact, this represents the number of MACs).
However, in the DiT code, when calculating attention, it seems that an additional B empty classes are added to the calculation.
Therefore, when estimating the computational load of the DiT block, it should be calculated as B*2.
Generating a 256x256 image should require 1 (B=1) * 2 (adding empty classes) * 119 GFLOPs ?
Is there a problem with my understanding? I hope you can answer this question. Thank you very much
The text was updated successfully, but these errors were encountered: