-
Notifications
You must be signed in to change notification settings - Fork 43
Inefficient x64 codegen for fmin/fmax #186
Comments
I think the key point from the proposal is "They are lane-wise versions of the existing scalar WebAssembly operations." This requires it to follow the semantics of scalar fmin. |
I guess we could discuss if that has to be the case. Is that the reason behind quieting and clearing the NaN payload? |
Yes, wasm propagates NaNs, that's why they have to be of "quiet" type. |
This has been discussed a few times in various contexts, and there isn't much that can be done here that's actionable. It may be possible to whittle down the V8 codegen some more (if you know of something specific here, please file a V8 issue so we can address it), but the conclusion of most previous discussions here has been that we need fmin/fmax operations, and at least for the MVP SIMD, these have to be deterministic, and follow the same semantics of the scalar operations. See also the discussion for Pseudo Min/Max operations in #122, as a potential follow up to this particular issue. I'm closing this for now as your question seems to be answered, feel free to reopen if there's still something outstanding to address that hasn't already been addressed here or in #122. |
@penzn, could |
@dtig, could we keep this open or tag this in some way so that we keep track of these inefficiencies? @rrwinterton had proposed an optimization guide for documenting pitfalls exactly like these--alternately we could just start recording issues like this one there? |
I agree with @abrown, we should reopen this since it fits in with the set of about 10 other issues we have on related topics. I don't know if fmin/fmax with one constant operand is typical in code, but it does lend itself to better code and may be worth specializing. |
After looking into this a little more, I think there is a bigger problem than |
|
Yeah, that is on my list as well - trying to investigate better min/max sequences, using AVX512. |
(the following is an excerpt from meeting notes WebAssembly/relaxed-simd#47) Floating-point min and max operations in WebAssembly have the following
This makes x86-based implementations somewhat complicated, because SSE and AVX
The problem is that mitigations for the constraints above interact with each With AVX512:
We have tried
Implementation challenges:
|
In attempting to implement
fmin
andfmax
, I observed that the semantics of these instructions prevents a single instruction lowering on x64. V8 has a 9-instruction lowering for F32x4Min, for example, and the other min/max implementations for F32x4/F64x2 are not better.Also, I noticed that the V8 implementation quiets and clears the NaN payload; this behavior does not seem to be specified in the spec but I suspect that it is necessary for passing the spec tests. Is this correct?
The text was updated successfully, but these errors were encountered: