mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-05-27 17:45:02 +00:00
* [feat] refactored extension module * polish * polish * polish * polish * polish * polish * polish * polish * polish * polish
11 lines
214 B
C
11 lines
214 B
C
// modified from https://github.com/NVIDIA/apex/blob/master/csrc/compat.h
|
|
#ifndef TORCH_CHECK
|
|
#define TORCH_CHECK AT_CHECK
|
|
#endif
|
|
|
|
#ifdef VERSION_GE_1_3
|
|
#define DATA_PTR data_ptr
|
|
#else
|
|
#define DATA_PTR data
|
|
#endif
|