1
1
openmpi/oshmem/util/oshmem_util.h

36 строки
931 B
C
Исходник Обычный вид История

/*
* Copyright (c) 2014 Mellanox Technologies, Inc.
* All rights reserved.
* $COPYRIGHT$
2015-06-24 06:59:57 +03:00
*
* Additional copyrights may follow
2015-06-24 06:59:57 +03:00
*
* $HEADER$
*/
#ifndef OSHMEM_UTIL_H
#define OSHMEM_UTIL_H
#include "oshmem_config.h"
/*
* Environment variables
*/
#define OSHMEM_ENV_SYMMETRIC_SIZE "SMA_SYMMETRIC_SIZE"
#define OSHMEM_ENV_DEBUG "SMA_DEBUG"
#define OSHMEM_ENV_INFO "SMA_INFO"
#define OSHMEM_ENV_VERSION "SMA_VERSION"
void oshmem_output_verbose(int level, int output_id, const char* prefix,
const char* file, int line, const char* function, const char* format, ...);
/*
* Temporary wrapper which ingores output verbosity level
* to ensure error messages are seeing by user
*/
2015-06-24 06:59:57 +03:00
void oshmem_output(int output_id, const char* prefix, const char* file,
int line, const char* function, const char* format, ...);
#endif /* OSHMEM_UTIL_H */