CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ai-forever

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: ai-forever/sber-swap
Path: blob/main/apex/csrc/compat.h
Views: 792
1
#ifndef TORCH_CHECK
2
#define TORCH_CHECK AT_CHECK
3
#endif
4
5
#ifdef VERSION_GE_1_3
6
#define DATA_PTR data_ptr
7
#else
8
#define DATA_PTR data
9
#endif
10
11