Files
rocm-systems/projects/rccl/src/include/argcheck.h
T

17 lines
479 B
C
Raw Normal View History

2019-03-14 19:39:20 -07:00
/*************************************************************************
* Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
*
* See LICENSE.txt for license information
************************************************************************/
#ifndef NCCL_ARGCHECK_H_
#define NCCL_ARGCHECK_H_
#include "core.h"
2019-11-19 14:57:39 -08:00
#include "info.h"
2019-03-14 19:39:20 -07:00
ncclResult_t PtrCheck(void* ptr, const char* opname, const char* ptrname);
ncclResult_t ArgsCheck(struct ncclInfo* info);
#endif