Following from #105 , it turns out some intrinsics that optimize correctly in Godbolt might not once inlined into another function.
This is because intel-intrinsics, in a lot of cases, is forced to use the backend optimizations and no builtin are available.
Sometimes no-builtins will be for the best, but sometimes not.
Does that even happen often?
Following from #105 , it turns out some intrinsics that optimize correctly in Godbolt might not once inlined into another function. This is because
intel-intrinsics
, in a lot of cases, is forced to use the backend optimizations and no builtin are available.Sometimes no-builtins will be for the best, but sometimes not. Does that even happen often?