compat.h 287 B

1234567891011121314
  1. /* Copyright 2020 The Microsoft DeepSpeed Team
  2. Copyright NVIDIA/apex
  3. This file is adapted from fused adam in NVIDIA/apex, commit a109f85
  4. */
  5. #ifndef TORCH_CHECK
  6. #define TORCH_CHECK AT_CHECK
  7. #endif
  8. #ifdef VERSION_GE_1_3
  9. #define DATA_PTR data_ptr
  10. #else
  11. #define DATA_PTR data
  12. #endif