1. 19 Aug, 2018 1 commit
  2. 16 Aug, 2018 3 commits
  3. 14 Aug, 2018 1 commit
  4. 07 Aug, 2018 1 commit
  5. 25 Jul, 2018 1 commit
  6. 24 Jul, 2018 1 commit
  7. 23 Jul, 2018 2 commits
  8. 18 Jul, 2018 3 commits
  9. 09 Jul, 2018 2 commits
  10. 05 Jul, 2018 3 commits
  11. 04 Jul, 2018 1 commit
  12. 03 Jul, 2018 2 commits
    • mcarilli's avatar
      Update fp16_optimizer.py · a21a945c
      mcarilli authored
      a21a945c
    • Raul Puri's avatar
      LARC clipping+documentation (#6) · 88effd5d
      Raul Puri authored
      * Proper implementation of LARC clipping
       * Documentation of LARC class
       * Modification of FP16_Optimizer to absorb optimizer instance that's being wrapped instead of creating new optimizer instance of same class.
      88effd5d
  13. 29 Jun, 2018 5 commits
  14. 28 Jun, 2018 2 commits
  15. 26 Jun, 2018 3 commits
  16. 24 Jun, 2018 2 commits
  17. 23 Jun, 2018 1 commit
  18. 22 Jun, 2018 4 commits
  19. 21 Jun, 2018 2 commits
    • Carl Case's avatar
      Merge pull request #13 from cclauss/patch-1 · 06d035e3
      Carl Case authored
      Type in variable name: hidden --> hiddens (w/ trailing 's')
      06d035e3
    • cclauss's avatar
      Type in variable name: hidden --> hiddens (w/ trailing 's') · 2e32e245
      cclauss authored
      __hidden__ in an undefined name in this context but __hiddens__ is used on the lines above.
      
      flake8 testing of https://github.com/NVIDIA/apex on Python 3.6.3
      
      $ __flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics__
      ```
      ./setup.py:50:23: F821 undefined name 'ctypes'
              cudart_path = ctypes.util.find_library('cudart')
                            ^
      ./apex/amp/wrap.py:194:37: F821 undefined name 'hidden'
                  elif utils.is_fp_tensor(hidden):
                                          ^
      ./apex/amp/wrap.py:195:41: F821 undefined name 'hidden'
                      new_args.append(cast_fn(hidden))
                                              ^
      ./apex/amp/wrap.py:198:33: F821 undefined name 'hidden'
                      new_args.append(hidden)
                                      ^
      4     F821 undefined name 'hidden'
      4
      ```
      2e32e245