1. 11 Mar, 2020 3 commits
    • Ashish Farmer's avatar
      [ROCm] Create torchvision as a HIP Extension (#1928) · 43e94b39
      Ashish Farmer authored
      * Added code to support creating extension on ROCm
      
      * max -> fmaxf conversion for hipification
      
      * added WITH_HIP flag for hipExtension
      
      * added appropriate headers for HIP build
      
      * use USE_ROCM in condition to build
      
      * change fmaxf and fminf calls
      
      * fminf -> min
      
      * fix the check for ROCM_HOME
      
      * more robust checking for rocm pytorch
      
      * add check for pytorch version before using HIP extensions
      
      * conditional reading of ROCM_HOME
      43e94b39
    • peterjc123's avatar
      Update Windows CI for nightly builds (#1961) · cca0c77a
      peterjc123 authored
      * Update Windows CI for nightly builds
      
      * Add CUDA 10.2 jobs
      
      * Update vs install scripts
      
      * Add switch case for cuda 10.2
      
      * more changes for cuda 10.2
      
      * Revert upload jobs
      cca0c77a
    • Eli Uriegas's avatar
      .circleci: Switch to use token for conda uploads (#1960) · c35ec388
      Eli Uriegas authored
      
      
      pjh5 is a former employee so we should switch over to using a bot token.
      
      Should resolve nightly pipeline failing on upload.
      Signed-off-by: default avatarEli Uriegas <eliuriegas@fb.com>
      c35ec388
  2. 10 Mar, 2020 4 commits
  3. 04 Mar, 2020 5 commits
  4. 28 Feb, 2020 1 commit
  5. 27 Feb, 2020 1 commit
  6. 25 Feb, 2020 3 commits
    • Phoenix Meadowlark's avatar
      Improved error messages for transforms.functional.normalize(). (#1915) · 2f433e0a
      Phoenix Meadowlark authored
      * Improved error messages for transforms.functional.normalize().
      
      Split the original TypeError into 1. a TypeError if `tensor` is not a torch.Tensor and 2. a ValueError if `tensor` does not have the correct dimensionality.
      
      Added more detail to the error for when `tensor` has the wrong dimension to make it easier to diagnose. This is useful when this function isn't called directly by the user (e.g. when the user uses transforms.Normalize and can't directly see this functions doc string).
      
      Deleted hanging function `_is_tensor_image()`. It isn't used in this file and isn't used internally anywhere else in torchvision that I can see. (Some users will have used it despite the underscore prefix, but a quick google search for "F._is_tensor_image" suggests this is rare).
      
      * Value checking to prevent division by zero runtime crashes.
      
      Added a ValueError to check for and avoid division by zero in `div_`. Not preventing the call leads to runtime crashes, at least in some environments.
      
      * Fixed div by zero check for non-scalar inputs.
      2f433e0a
    • Francisco Massa's avatar
      2937d77d
    • Lutz Roeder's avatar
      21603531
  7. 24 Feb, 2020 4 commits
  8. 14 Feb, 2020 4 commits
  9. 13 Feb, 2020 2 commits
  10. 10 Feb, 2020 4 commits
  11. 04 Feb, 2020 1 commit
    • F-G Fernandez's avatar
      Added __repr__ attribute to GeneralizedRCNNTransform (#1834) · e2573a71
      F-G Fernandez authored
      * feat: Added __repr__ attribute to GeneralizedRCNNTransform
      
      Added more details to default __repr__ attribute for printing.
      
      * fix: Put back relative imports
      
      * style: Fixed pep8 compliance
      
      Switched strings with  syntax to f-strings.
      
      * test: Added test for GeneralizedRCNNTransform __repr__
      
      Checked integrity of __repr__ attribute
      
      * test: Fixed unittest for __repr__
      
      Fixed the formatted strings in the __repr__ integrity check for GeneralizedRCNNTransform
      
      * fix: Fixed f-strings for earlier python versions
      
      Switched back f-strings to .format syntax for Python3.5 compatibility.
      
      * fix: Fixed multi-line string
      
      Fixed multiple-line string syntax for compatibility
      
      * fix: Fixed GeneralizedRCNNTransform unittest
      
      Fixed formatting of min_size argument of the resizing part
      e2573a71
  12. 03 Feb, 2020 1 commit
  13. 30 Jan, 2020 1 commit
  14. 29 Jan, 2020 6 commits