-
Notifications
You must be signed in to change notification settings - Fork 59
Open
Labels
Description
Currently, the intrinsics we expose for Float16
inputs accept scalar inputs, however, there exists many math intrinsics that take Tuple{Float16,Float16}
, with the intention to be able to use packed math instructions most effectively. While we certainly can expose these intrinsics directly to the user, we should also consider if there is some optimization available (either through LLVM, or manually implemented here) to fuse non-packed F16 operations into packed 2F16 operations.