Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 строки
513 B
C
Исходник Постоянная ссылка Обычный вид История

2022-11-21 06:03:27 -08:00
/*
* Copyright (c) 2017-2022, NVIDIA CORPORATION. All rights reserved.
*/
#ifndef NCCL_ERR_H_
#define NCCL_ERR_H_
/* Error type for plugins */
typedef enum { ncclSuccess = 0,
ncclUnhandledCudaError = 1,
ncclSystemError = 2,
ncclInternalError = 3,
ncclInvalidArgument = 4,
2024-06-11 01:28:01 -07:00
ncclInvalidUsage = 5,
2022-11-21 06:03:27 -08:00
ncclRemoteError = 6 } ncclResult_t;
#endif