1. 25 2月, 2022 2 次提交
  2. 03 2月, 2022 2 次提交
  3. 02 2月, 2022 1 次提交
  4. 28 1月, 2022 1 次提交
  5. 27 1月, 2022 3 次提交
  6. 25 1月, 2022 2 次提交
  7. 24 1月, 2022 1 次提交
  8. 21 1月, 2022 1 次提交
    • J
      Annotate signed type in int_divrem_guard · 56566d81
      Jubilee Young 提交于
      The way the macro expands, it may sometimes infer
      "this is a uint, but doesn't impl Neg???"
      Also, I made the "wrong path for intrinsics" error.
      These fixes allow integration into libcore.
      56566d81
  9. 20 1月, 2022 1 次提交
  10. 14 1月, 2022 2 次提交
  11. 10 1月, 2022 1 次提交
  12. 01 1月, 2022 3 次提交
    • J
      Merge portable-simd#219 - ./std-float · 09fa72ae
      Jubilee 提交于
       impl std::simd::StdFloat
      
       This introduces an extension trait to allow use of floating point methods
       that need runtime support. It is *excessively* documented because its mere
       existence is quite vexing, as the entire thing constitutes a leakage of
       implementation details into user observable space. Eventually the entire
       thing will ideally be folded into core and restructured to match the rest
       of the library, whatever that structure might look like at the time. This
       is preferred in lieu of the "lang item" path because any energy the lang
       items require (and it will be significant, by Simulacrum's estimation) is
       better spent on implementing our libmvec.
      09fa72ae
    • J
      Tear down and rewrite support for float testing · af26e3b9
      Jubilee Young 提交于
      af26e3b9
    • J
      impl std::simd::StdFloat · ecc00efe
      Jubilee Young 提交于
      While consulting with Simulacrum on how to make available the float
      functions that currently require runtime support for `Simd<f32, N>` and
      `Simd<f64, N>`, we realized breaking coherence with the classic approach
      of lang items was, since `{core,std}::simd::Simd` is a `ty::Adt`, likely
      to be quite a bit nasty. The project group has a long-term plan for how
      to get around this kind of issue and move the associated functions into
      libcore, but that will likely take time as well. Since all routes
      forward are temporally costly, we probably will skip the lang item
      approach entirely and go the "proper" route, but in the interests of
      having something this year for people to play around with, this
      extension trait was whipped up.
      
      For now, while it involves a lot of fairly internal details most users
      shouldn't have to care about, I went ahead and fully documented the
      situation for any passerby to read on the trait, as the situation is
      quite unusual and puzzling to begin with.
      ecc00efe
  13. 30 12月, 2021 1 次提交
    • J
      Merge portable-simd#210 - ./wrap-shifts · 4bbef261
      Jubilee 提交于
      Refactor ops.rs with wrapping shifts
      
      This approaches reducing macro nesting in a slightly different way. Instead of just flattening details, make one macro apply another. This allows specifying all details up-front in the first macro invocation, making it easier to audit and refactor in the future.
      
      This refactor also has some functional changes. Only one is a true behavior change, however:
      - The visible one is that SIMD shifts are now wrapping, not panicking on overflow
      - `core::simd` now has a lot more instances of `#[must_use]`, which merely lints
      - div/rem now perform a SIMD check but remain as before, which should improve performance but be invisible
      4bbef261
  14. 24 12月, 2021 1 次提交
  15. 23 12月, 2021 1 次提交
    • J
      Refactor ops.rs with a recursive macro · bc326a2b
      Jubilee Young 提交于
      This approaches reducing macro nesting in a slightly different way.
      Instead of just flattening details, make one macro apply another.
      This allows specifying all details up-front in the first macro
      invocation, making it easier to audit and refactor in the future.
      bc326a2b
  16. 11 12月, 2021 1 次提交
  17. 10 12月, 2021 1 次提交
  18. 09 12月, 2021 3 次提交
  19. 05 12月, 2021 1 次提交
    • J
      Merge portable-simd#207 - ./feature/simplify-select · 81484a39
      Jubilee 提交于
      Remove Select trait
      
      I realized that our `select` implementation predated `Simd` being generic over element type, and we don't really need the `Select` trait at all. The function signature is much simpler now (generic over element type, rather than over the entire vector). This did require changing mask select to be a different function, but I think that's fine considering they're not necessarily vectors.
      81484a39
  20. 04 12月, 2021 1 次提交
  21. 03 12月, 2021 1 次提交
    • J
      Merge portable-simd#195 - portable-simd:trait-ops · a8385522
      Jubilee 提交于
      Generic `core::ops` for `Simd<T, _>`
      
      In order to maintain type soundness, we need to be sure we only implement an operation for `Simd<T, _> where T: SimdElement`... and also valid for that operation in general. While we could do this purely parametrically, it is more sound to implement the operators directly for the base scalar type arguments and then use type parameters to extend the operators to the "higher order" operations.
      
      This implements that strategy and cleans up `simd::ops` into a few submodules:
      - assign.rs: `core::ops::*Assign`
      - deref.rs:  `core::ops` impls which "deref" borrowed versions of the arguments
      - unary.rs: encloses the logic for unary operators on `Simd`, as unary ops are much simpler
      
      This is possible since everything need not be nested in a single maze of macros anymore. The result simplifies the logic and allows reasoning about what operators are valid based on the expressed trait bounds, and also reduces the size of the trait implementation output in rustdoc, for a huge win of 4 MB off the size of `struct.Simd.html`! This addresses a common user complaint, as the original was over 5.5 MB and capable of crashing browsers!
      
      This also carries a fix for a type-inference-related breakage, by removing the autosplatting (vector + scalar binop) impls, as unfortunately the presence of autosplatting was capable of busting type inference. We will likely need to see results from a Crater run before we can understand how to re-land autosplatting.
      a8385522
  22. 02 12月, 2021 3 次提交
  23. 28 11月, 2021 1 次提交
  24. 27 11月, 2021 1 次提交
  25. 25 11月, 2021 1 次提交
  26. 24 11月, 2021 3 次提交