2024-09-10 05:57:10 -07:00
|
|
|
/*************************************************************************
|
|
|
|
|
* Copyright (c) 2024, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* See LICENSE.txt for license information
|
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef PRINT_EVENT_H_
|
|
|
|
|
#define PRINT_EVENT_H_
|
|
|
|
|
|
2025-05-29 20:56:40 -07:00
|
|
|
#include "nccl/common.h"
|
|
|
|
|
extern ncclDebugLogger_t logFn;
|
|
|
|
|
|
2024-09-10 05:57:10 -07:00
|
|
|
void debugEvent(void* eHandle, const char* tag);
|
|
|
|
|
void printEvent(FILE* fh, void* handle);
|
|
|
|
|
|
|
|
|
|
#endif
|