"x/model/models/gemma3/model.go" did not exist on "34d0c55ea57e24d04b57e792f91a91eaa18ad9ce"
  1. 08 Apr, 2022 1 commit
  2. 06 Apr, 2022 1 commit
  3. 01 Apr, 2022 1 commit
    • Charlie Lin's avatar
      Update developer overview, fix doc CMakeLists (#1140) · 0295965d
      Charlie Lin authored
      * Fix and change doc CMakeLists
      1. Fix include directory location with hange from #1088
      2. Create a DoxygenWarningLog.txt file in <build_dir>/doc/doxygen
      3. Move compiled html or pdf files to <build_dir>/doc/[pdf, html]
      0295965d
  4. 31 Mar, 2022 1 commit
  5. 29 Mar, 2022 2 commits
  6. 25 Mar, 2022 1 commit
  7. 24 Mar, 2022 1 commit
  8. 21 Mar, 2022 1 commit
  9. 18 Mar, 2022 2 commits
  10. 15 Mar, 2022 1 commit
  11. 11 Mar, 2022 1 commit
    • Shucai Xiao's avatar
      Improve print ins (#1096) · b3b44f5d
      Shucai Xiao authored
      The module::debug_print(ins) is very slow, which makes the trave_eval==1/2 very slow. The reason is printing an ins involves search the whole module to get the instruction, the print it.  This change is to fix that by calling module::print() to get names of all instructions of a program, then print the instruction by getting its name from a hash map.
      b3b44f5d
  12. 09 Mar, 2022 3 commits
  13. 08 Mar, 2022 1 commit
  14. 07 Mar, 2022 1 commit
  15. 04 Mar, 2022 2 commits
  16. 03 Mar, 2022 1 commit
  17. 02 Mar, 2022 2 commits
  18. 25 Feb, 2022 3 commits
  19. 24 Feb, 2022 1 commit
    • Paul Fultz II's avatar
      Some cmake fixes and updates (#1088) · cd0a4aa5
      Paul Fultz II authored
      Make doc/CMakeLists.txt standalone
      Switch to use rocm-cmake modules for document generation
      Add CONFIGURE_DEPENDS to file(GLOB) so it will update without an explicit cmake run
      Add STRINGS property for build type to make it easier to switch build types with ccmake
      Various fixes and improvements
      cd0a4aa5
  20. 23 Feb, 2022 1 commit
    • Shucai Xiao's avatar
      Keep std shape (#1059) · 98dfdf15
      Shucai Xiao authored
      This PR is the resolve two problems in the issue#999, i.e., non_standard_shape input to reshape and reduce_mean.
      Three fixes:
      
      Any operator that has a standard shape requirement will add a contiguous input for its input.
      Eliminate_contiguous, when computing whether a contiguous can be removed, we should use all the updated args, not just the one that is being checked.
      In two optimization in the simplify_reshape, we remove the contiguous in the reshaper name list, since eliminate_contiguous will remove the contiguous if it can be removed.
      the solution is add an attribute to the operator that requires standard input shape, then in the auto_contiguous pass, add a contiguous to every input of such operators.
      98dfdf15
  21. 16 Feb, 2022 2 commits
  22. 11 Feb, 2022 1 commit
  23. 09 Feb, 2022 2 commits
  24. 08 Feb, 2022 1 commit
  25. 31 Jan, 2022 1 commit
  26. 28 Jan, 2022 1 commit
  27. 27 Jan, 2022 1 commit
  28. 26 Jan, 2022 1 commit
    • turneram's avatar
      Add HardSwish op ONNX parser (#1066) · 7477aeb8
      turneram authored
      Add HardSwish to HardSigmoid parser
      
      HardSwish formula is y = x * HardSigmoid<alpha=1/6, beta=0.5>(x)
      HardSigmoid parser sets alpha to 1/6 and adds the mul instruction if op name is HardSwish
      
      Resolves #1062
      7477aeb8
  29. 21 Jan, 2022 2 commits