Skip to content
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

Support direct quantization for FP8 matmul #3922

Merged
merged 4 commits into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions flax/linen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,11 @@
)
from .batch_apply import BatchApply as BatchApply
from .combinators import Sequential as Sequential
from .fp8_ops import Fp8DotGeneralOp as Fp8DotGeneralOp
from .fp8_ops import NANOOFp8DotGeneralOp as NANOOFp8DotGeneralOp
from .fp8_ops import (
Fp8DotGeneralOp as Fp8DotGeneralOp,
Fp8DirectDotGeneralOp as Fp8DirectDotGeneralOp,
NANOOFp8DotGeneralOp as NANOOFp8DotGeneralOp,
)
from .initializers import (
ones_init as ones_init,
ones as ones,
Expand Down
Loading
Loading