-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
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
[float8] improve eager numerics for dynamic scales and gets on par with torch.compile #904
Changes from all commits
6bf0f5c
553687f
19a592d
218290e
24ec914
c099486
b93ffc8
ebff416
8978ab2
f17dc12
511c751
9becda1
e4fdca9
0cd4d37
014558d
3267402
1e07eff
ebdeed0
09ffa22
0b8dd85
87faf04
3a9fdb0
fc6c393
0043ace
ab3435c
a05a40f
334891b
c706139
93554c0
efd9bb9
85126cc
a5a426e
e7270f1
352685c
168cfe9
5900c3e
37e1479
2efde49
8c04f4f
04b229b
8b7c2ef
9346afd
3d0da20
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -163,7 +163,10 @@ def forward( | |
|
||
DTensor Invariant: DTensor must always be the outer most tensor subclass | ||
""" | ||
tensor_scaled = tensor * scale | ||
# Note: when the line below is compiled with `torch.compile`, `tensor` is automatically | ||
# upcasted to `float32` to multiply with the scale | ||
# In order to match numerics between eager and compile, we upcast manually here. | ||
tensor_scaled = tensor.to(torch.float32) * scale | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. without upcasting, the eager numeric is like There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. torch.compile upcast tensor ahead, see
|
||
bits_fp8 = to_fp8_saturated(tensor_scaled, float8_dtype) | ||
|
||
if isinstance(bits_fp8, DTensor): | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,9 @@ def amax_to_scale( | |
float8_dtype: The float8 dtype. | ||
orig_dtype: The original dtype of the tensor. | ||
""" | ||
# torch.compile and eager show different numerics for 1.0 / float32, | ||
# upcast to float64 to ensure same numeric between compile and eager | ||
amax = amax.to(torch.float64) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. upcast
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. could you share why the upcasting happens? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I can look into inductor more on how it achieved fp64 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. torch.compile actually upcasts to float32 with The float32 numeric difference can be verified with
|
||
if float8_dtype in FP8_TYPES: | ||
res = torch.finfo(float8_dtype).max / torch.clamp(amax, min=EPS) | ||
else: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should be an object of type
LinearMMConfig
, I'm actually kind of surprised passing inFloat8LinearConfig
works :(There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good catch! I switched to
LinearMMConfig
.Float8LinearConfig
was working because I did not call matmul that requires access toself._linear_mm_config
.