1. 16 Aug, 2018 3 commits
  2. 14 Aug, 2018 1 commit
  3. 07 Aug, 2018 1 commit
  4. 25 Jul, 2018 1 commit
  5. 24 Jul, 2018 1 commit
  6. 23 Jul, 2018 2 commits
  7. 18 Jul, 2018 3 commits
  8. 09 Jul, 2018 2 commits
  9. 05 Jul, 2018 3 commits
  10. 04 Jul, 2018 1 commit
  11. 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
  12. 29 Jun, 2018 5 commits
  13. 28 Jun, 2018 2 commits
  14. 26 Jun, 2018 3 commits
  15. 24 Jun, 2018 2 commits
  16. 23 Jun, 2018 1 commit
  17. 22 Jun, 2018 4 commits
  18. 21 Jun, 2018 3 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
    • ngimel's avatar
      Merge pull request #12 from cclauss/patch-1 · 523be483
      ngimel authored
      import ctypes for line 51 of setup.py
      523be483