Skip to content

Commit

Permalink
chore: address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
peri044 committed Oct 17, 2024
1 parent 97867f5 commit b685087
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ def accumulate_fp32_matmul(

gm = clean_up_graph_after_modifications(gm)
logger.debug(
f"Graph after changing matmul layers to use FP32 accumulation:\n{gm.graph}"
f"Graph after enabling matmul layers to use FP32 accumulation:\n{gm.graph}"
)
return gm
else:
logger.debug(
"Skipping FP32 accumulation for matmul layers as use_fp32_acc is not enabled in the compilation settings"
)

return gm

0 comments on commit b685087

Please sign in to comment.