-
Hi Huanchen, I have a few quesitons about the memory usage in block2.
Thank you so much! Best, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Beta Was this translation helpful? Give feedback.
Fused X and Y means
opY(opX(A, B), C)
is implemented asopXY(A, B, C)
without storing the intermediateopX(A, B)
in memory. Since these options may conflict with other more effective optimizations, it is very likely for a specific usage case there is no saving of the peak memory during the whole calculation. Normally the default option is recommended.