1. 20 Nov, 2023 2 commits
  2. 07 Nov, 2023 1 commit
  3. 30 Oct, 2023 1 commit
  4. 20 Oct, 2023 1 commit
  5. 18 Oct, 2023 1 commit
  6. 13 Oct, 2023 1 commit
  7. 12 Oct, 2023 1 commit
  8. 11 Oct, 2023 2 commits
  9. 28 Sep, 2023 1 commit
    • Umang Yadav's avatar
      Add options to set tolerances inside MIGraphX driver (#2213) · 69d8d789
      Umang Yadav authored
      MIGraphX verification by default uses normalized RMS error as the basis for the verification.  This change adds some logic to allow migraphx to do "np.allclose" type of elementwise verification using atol and rtol.
      
      Commit also includes changes to consistently pass "gold" or "expected" results as the second argument for "verify_range()" calls.  Default RMS tolerance inside driver is set to 0.001 which IMO is high for FP32 compared to what we had earlier. Need better defaults
      69d8d789
  10. 27 Sep, 2023 1 commit
  11. 21 Sep, 2023 1 commit
  12. 15 Sep, 2023 1 commit
  13. 18 Aug, 2023 1 commit
  14. 28 Jul, 2023 1 commit
  15. 22 Jul, 2023 1 commit
  16. 13 Jul, 2023 1 commit
    • Charlie Lin's avatar
      Update deconvolution -> convolution_backwards and Dynamic Shape Support (#1801) · 4edf1195
      Charlie Lin authored
      Renames deconvolution -> convolution_backwards to be more consistent with the literature
      Note: this is not the cross-correlation operator (which is the adjoint of convolution). This is technically a standard convolution operator combined with an upsampling operator rather than a downsampling operator.
      Adds unit tests for the padding, strides, dilations, and other op attributes.
      Throws on auto_pad attribute since it has not been implemented
      Previously it read the attribute and set it but then did nothing with it
      Extended for dynamic shapes
      Does not support using asymmetric padding (padding_L != padding_R) and output_shape with dynamic shapes.
      4edf1195
  17. 10 Jul, 2023 1 commit
    • Brian Pickrell's avatar
      Pooling op. calculation changes (#1823) · bb06dbf5
      Brian Pickrell authored
      Changes to the way Pooling operation calculates pooling when there's padding. Old code would clip off any padding values before computing; for instance if an Average pooling window contained 0 1 2 where the 0 is padding, the result was 1.5 instead of 1.0. See Issue 1766
      bb06dbf5
  18. 08 Jul, 2023 1 commit
  19. 06 Jul, 2023 1 commit
  20. 02 Jul, 2023 1 commit
    • Paul Fultz II's avatar
      Improvement to ck integration (#1859) · 3c9df3b4
      Paul Fultz II authored
      Add a CI job to test CK
      Add MIGRAPHX_TUNE_CK env variable to only do tuning for CK
      Continue tuning even when there is invalid configs
      Fix a bug with parallel compilation not using all available threads
      Add additional test for gemms using half types
      Removed int32 as supported type since it doesnt pass our test suite
      3c9df3b4
  21. 23 Jun, 2023 1 commit
  22. 01 Jun, 2023 1 commit
  23. 25 May, 2023 1 commit
  24. 20 May, 2023 1 commit
  25. 04 May, 2023 1 commit
  26. 28 Apr, 2023 1 commit
  27. 24 Apr, 2023 2 commits
  28. 07 Apr, 2023 1 commit
  29. 05 Apr, 2023 1 commit
  30. 31 Mar, 2023 1 commit
    • Charlie Lin's avatar
      Split single dynamic dimension compiler pass (#1580) · e9e3eacc
      Charlie Lin authored
      Adds a new GPU compiler pass split_single_dyn_dim that handles when one input parameter has a single non-fixed dynamic_dimension.
      commonly occurs for dynamic batch or BERT sequence length
      Splits the dynamic shape into several submodules will static input parameters to handle all of the cases in the dynamic_dimension range.
      Essentially does what I manually did for the select_module verify tests
      Adds a compile option split_single_dyn_dim that toggles the pass on/off. Defaults to false.
      Updates verify_program.hpp and run_verify.cpp to allow for the tests to change the compile_options
      e9e3eacc
  31. 29 Mar, 2023 1 commit
  32. 21 Mar, 2023 1 commit
  33. 18 Mar, 2023 1 commit
  34. 17 Mar, 2023 2 commits
  35. 10 Mar, 2023 2 commits