compat.h 336 B

12345678910111213141516171819
  1. // Copyright (c) Microsoft Corporation.
  2. // SPDX-License-Identifier: Apache-2.0
  3. // DeepSpeed Team
  4. /*
  5. Copyright NVIDIA/apex
  6. This file is adapted from fused adam in NVIDIA/apex, commit a109f85
  7. */
  8. #ifndef TORCH_CHECK
  9. #define TORCH_CHECK AT_CHECK
  10. #endif
  11. #ifdef VERSION_GE_1_3
  12. #define DATA_PTR data_ptr
  13. #else
  14. #define DATA_PTR data
  15. #endif