c2caa5ae2c
one or both directions. Users can enumerate the pools reported by system to specify which pools serve as source / destination Change-Id: I8e6d0adb3743b3328dd3ce9152762ca840ea613b
15 regels
298 B
C++
Executable File
15 regels
298 B
C++
Executable File
|
|
#ifndef ROCM_ASYNC_BW_UTILS_OS_H_
|
|
#define ROCM_ASYNC_BW_UTILS_OS_H_
|
|
|
|
#include <stdio.h>
|
|
|
|
// Set envriroment variable
|
|
void SetEnv(const char* env_var_name, const char* env_var_value);
|
|
|
|
// Get the value of enviroment
|
|
char* GetEnv(const char* env_var_name);
|
|
|
|
|
|
#endif // ROCM_ASYNC_BW_UTILS_OS_H_
|