1. 19 Sep, 2023 1 commit
  2. 17 Sep, 2023 1 commit
  3. 16 Sep, 2023 3 commits
  4. 15 Sep, 2023 1 commit
  5. 14 Sep, 2023 2 commits
    • Paul Fultz II's avatar
    • Brian Pickrell's avatar
      added rand_uniform operation closes #1958 (#2051) · fbd12bd3
      Brian Pickrell authored
      New op that populates a shape with random numbers with a uniform distribution. The rand_uniform op. can implement the Onnx RandomUniform instruction, and can also create the random number sequence necessary to implement Multinomial. (At this time, our Onnx Multinomial parsing generates a random sequence of numbers when parsing as a workaround, so that the resulting program uses the same "random" set every time.)
      
      Arguments: shape, seed. Shape is required; can be static or dynamic. Seed is still optional in this version. If it's not given at inference time, use the value in the creation attribute seed. Update: deleted A boolean use_auto_seed causes any given seed to be ignored.
      fbd12bd3
  6. 13 Sep, 2023 1 commit
  7. 12 Sep, 2023 1 commit
  8. 11 Sep, 2023 1 commit
  9. 10 Sep, 2023 2 commits
    • tvukovic-amd's avatar
      Fixed test float equal for Windows (#2153) · 37787e0b
      tvukovic-amd authored
      Added case to skip test_limits<int,long> while running tests on Windows since int and long have same min and max values
      37787e0b
    • Charlie Lin's avatar
      Dynamic allocate (#2079) · ede8bfa6
      Charlie Lin authored
      Makes a version of allocate that takes in dimensions and allocates a buffer
      Going to create a simplify_dynamic_ops compiler pass that will use the use_shape_attr flag
      The ONNX op ConstantOfShape needs the buffer to be filled with a specific value, so going to make another PR for that and a fill operator
      ede8bfa6
  10. 08 Sep, 2023 1 commit
  11. 07 Sep, 2023 1 commit
  12. 06 Sep, 2023 2 commits
  13. 29 Aug, 2023 1 commit
    • Brian Pickrell's avatar
      Fix dyn pooling (#1768) · 7b8a28f5
      Brian Pickrell authored
      Adds support for dynamic input shape in pooling operator along with auto-padding. This combination requires that the padding (and therefore the output shape) can't be computed until runtime.
      7b8a28f5
  14. 22 Aug, 2023 2 commits
  15. 21 Aug, 2023 1 commit
  16. 18 Aug, 2023 2 commits
  17. 13 Aug, 2023 1 commit
  18. 11 Aug, 2023 1 commit
  19. 10 Aug, 2023 1 commit
  20. 08 Aug, 2023 3 commits
  21. 06 Aug, 2023 2 commits
  22. 03 Aug, 2023 1 commit
  23. 31 Jul, 2023 2 commits
    • Lakhinder Walia's avatar
      Lw/fix half shape (#2000) · e4dc75ea
      Lakhinder Walia authored
      * Use shape of Instruction (instead of a default) in add_return()
      
      * Instruction validation fix: not to use a default shape value for comparison
      
      * Fix instruction::replace() to recompute shape for "@return"
      
      * handle the case of missing shape in an Instruction related Test
      
      * use compute_shape() to get op shapes + test case for tuple_type
      
      * add test case shape_test/return_shape_tuple
      
      * Add test for @return to check for half type
      
      * Move @return unit-tests around..; Address review comments
      
      * Broken comparison fix: comparison to a (default) shape of tuple_type
      
      * Test cases: (add) return_shape_empty & (modify) return_shape_tuple
      
      * modify the assert() statement
      e4dc75ea
    • Artur Wojcik's avatar
  24. 30 Jul, 2023 2 commits
  25. 28 Jul, 2023 2 commits
  26. 27 Jul, 2023 1 commit
  27. 26 Jul, 2023 1 commit