Skip to content
This project is mirrored from https://review.mlplatform.org/tosa/reference_model. Pull mirroring updated .
  1. Mar 21, 2024
  2. Feb 02, 2024
  3. Jan 31, 2024
  4. Jan 30, 2024
  5. Jan 29, 2024
  6. Jan 25, 2024
  7. Jan 24, 2024
  8. Jan 23, 2024
  9. Jan 18, 2024
  10. Jan 17, 2024
  11. Jan 11, 2024
  12. Jan 10, 2024
  13. Jan 08, 2024
  14. Jan 05, 2024
  15. Jan 03, 2024
    • Jerry-Ge's avatar
      Fix Cast Float to Int overflows · d6a04617
      Jerry-Ge authored
      
      
      - For Casting from Float to Integers, if the input float is greater
      than INT_MAX, an overflow will happen when calling rint which causes the
      clipplings to be ineffectives
      - Moved all the range checks and clippings before rint to avoid this
        issue
      
      Signed-off-by: Jerry-Ge's avatarJerry Ge <jerry.ge@arm.com>
      Change-Id: Ic189d59685b6d36464e3ef26766665148a660a14
      d6a04617
  16. Dec 15, 2023
    • Jerry-Ge's avatar
      Fix Cast FP32 to Int32 Overflow · 44827be1
      Jerry-Ge authored and Eric Kunze's avatar Eric Kunze committed
      
      
      - With input of 2147483648.00, the output overflows to -2147483648
      - The root cause is the following:
        - std::rint still returns float, the existing implementation is
          forcing a cast from that float to int32_t
        - when the input is over INT32_MAX, the output right after rint will
          overflow which casues the clipplings later to be ineffective
      - Instead, perform the range check before rint
      
      Signed-off-by: Jerry-Ge's avatarJerry Ge <jerry.ge@arm.com>
      Change-Id: Ib5a8cfd98aea17e326f8b11097beeb2d2b3efac9
      44827be1
    • Jerry-Ge's avatar
      Add basic framework test cases for dynamic shapes · 28811d9a
      Jerry-Ge authored and Jerry-Ge's avatar Jerry-Ge committed
      
      
      - Added a basic infrastructure for allowing generate network with
        dynamic_shapes
      - Added tests cases for
        - batch_to_space
        - depth_to_space, space_to_depth
        - linear
      
      Signed-off-by: Jerry-Ge's avatarJerry Ge <jerry.ge@arm.com>
      Change-Id: Ie3f13231a74485df64b852f554cfe65e995f0d03
      28811d9a
  17. Dec 14, 2023
  18. Dec 12, 2023
  19. Dec 11, 2023
Loading