1. 08 7月, 2020 5 次提交
  2. 07 7月, 2020 7 次提交
  3. 06 7月, 2020 7 次提交
  4. 05 7月, 2020 2 次提交
  5. 04 7月, 2020 3 次提交
  6. 03 7月, 2020 3 次提交
  7. 02 7月, 2020 5 次提交
  8. 01 7月, 2020 5 次提交
  9. 30 6月, 2020 3 次提交
    • K
    • H
      [Dy2stat] Support Various-Length Return Grammar in Dy2stat (#25249) · 5e8e6dad
      Huihuang Zheng 提交于
      Support Various-Length Return Grammar in Dy2stat. This PR is a follow-up of https://github.com/PaddlePaddle/Paddle/pull/25176 .
      
      The basic idea is putting no-value placeholder variables at `return` statement to make all `return` statement have same length, after that the static graph can have fixed fetch output (code at return_transformer.py). Then remove those no-value placeholder when we finally return dygraph result (code at partial_program.py).
      
      However, various length return in Bert model is still not supported. The dy2stat can change the code as I wish but some ops which check shape at compile time (e.g. Reshape, MatMul) will throw error because of the no-value-placeholder may not have the required shape. Is this a matter? To me, those no-value placeholder will be replaced as really values meeting shape requirements at run time, so I think the solution should be some way to do the compile-time checking. By the way, every time when we have dynamic shape, it often causes problem in dy2stat. We should find a way to handle it in the future.
      
      Fixing various return in Bert is my TODO thing and I will also find some other existing models for verification.
      5e8e6dad
    • A
      [Dy2Stat] fix diff of cycle GAN model on GPU (#25233) · de27569e
      Aurelius84 提交于
      * fix GPU diff test=develop
      
      * refine code test=develop
      de27569e