/usr/include/armci.h is in libga-dev 5.3+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 | /* ARMCI header file */
#ifndef _ARMCI_H
#define _ARMCI_H
/* for size_t */
#include <stdlib.h>
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
extern int armci_sameclusnode(int proc);
typedef struct {
void **src_ptr_array;
void **dst_ptr_array;
int ptr_array_len;
int bytes;
} armci_giov_t;
typedef long armci_size_t;
extern int armci_notify(int proc);
extern int armci_notify_wait(int proc,int *pval);
extern int ARMCI_Init(void); /* initialize ARMCI */
extern int ARMCI_Init_args(int *argc, char ***argv); /* initialize ARMCI */
extern int ARMCI_Initialized();
extern void ARMCI_Barrier(void); /* ARMCI Barrier*/
extern int ARMCI_Put(void *src, void* dst, int bytes, int proc);
extern int ARMCI_Put_flag(void *src, void* dst,int bytes,int *f,int v,int proc);
/* On path for deprecation */
#define ARMCI_Put1(_s,_d,_b,_p) memcpy(_d,_s,_b), 0
extern int ARMCI_PutS( /* strided put */
void *src_ptr, /* pointer to 1st segment at source*/
int src_stride_arr[], /* array of strides at source */
void* dst_ptr, /* pointer to 1st segment at destination*/
int dst_stride_arr[], /* array of strides at destination */
int count[], /* number of units at each stride level count[0]=bytes */
int stride_levels, /* number of stride levels */
int proc /* remote process(or) ID */
);
extern int ARMCI_PutS_flag_dir( /* put with flag that uses direct put */
void *src_ptr, /* pointer to 1st segment at source*/
int src_stride_arr[], /* array of strides at source */
void* dst_ptr, /* pointer to 1st segment at destination*/
int dst_stride_arr[], /* array of strides at destination */
int count[], /* number of segments at each stride
levels: count[0]=bytes*/
int stride_levels, /* number of stride levels */
int *flag, /* pointer to remote flag */
int val, /* value to set flag upon completion of
data transfer */
int proc /* remote process(or) ID */
);
extern int ARMCI_PutS_flag(
void *src_ptr, /* pointer to 1st segment at source*/
int src_stride_arr[], /* array of strides at source */
void* dst_ptr, /* pointer to 1st segment at destination*/
int dst_stride_arr[], /* array of strides at destination */
int count[], /* number of segments at each stride
levels: count[0]=bytes*/
int stride_levels, /* number of stride levels */
int *flag, /* pointer to remote flag */
int val, /* value to set flag upon completion of
data transfer */
int proc /* remote process(or) ID */
);
extern int ARMCI_Acc(int optype, void *scale, void *src, void* dst, int bytes, int proc);
extern int ARMCI_AccS( /* strided accumulate */
int optype, /* operation */
void *scale, /* scale factor x += scale*y */
void *src_ptr, /* pointer to 1st segment at source*/
int src_stride_arr[], /* array of strides at source */
void* dst_ptr, /* pointer to 1st segment at destination*/
int dst_stride_arr[], /* array of strides at destination */
int count[], /* number of units at each stride level count[0]=bytes */
int stride_levels, /* number of stride levels */
int proc /* remote process(or) ID */
);
extern int ARMCI_Get(void *src, void* dst, int bytes, int proc);
extern int ARMCI_GetS( /* strided get */
void *src_ptr, /* pointer to 1st segment at source*/
int src_stride_arr[], /* array of strides at source */
void* dst_ptr, /* pointer to 1st segment at destination*/
int dst_stride_arr[], /* array of strides at destination */
int count[], /* number of units at each stride level count[0]=bytes */
int stride_levels, /* number of stride levels */
int proc /* remote process(or) ID */
);
extern int ARMCI_GetV( armci_giov_t darr[], /* descriptor array */
int len, /* length of descriptor array */
int proc /* remote process(or) ID */
);
extern int ARMCI_PutV( armci_giov_t darr[], /* descriptor array */
int len, /* length of descriptor array */
int proc /* remote process(or) ID */
);
extern int ARMCI_AccV( int op, /* operation code */
void *scale, /* scaling factor for accumulate */
armci_giov_t darr[], /* descriptor array */
int len, /* length of descriptor array */
int proc /* remote process(or) ID */
);
extern int ARMCI_PutValueInt(int src, /* value in a register to put */
void *dst, /* dest starting addr to put data */
int proc /* remote process (or) ID */
);
extern int ARMCI_PutValueLong(long src, /* value in a register to put */
void *dst, /* dest starting addr to put data */
int proc /* remote process (or) ID */
);
extern int ARMCI_PutValueFloat(float src, /* value in a register to put */
void *dst, /* dest starting addr to put data */
int proc /* remote process (or) ID */
);
extern int ARMCI_PutValueDouble(double src,/* value in a register to put */
void *dst, /* dest starting addr to put data */
int proc /* remote process (or) ID */
);
extern int ARMCI_GetValueInt(void *src, int proc);
extern long ARMCI_GetValueLong(void *src, int proc);
extern float ARMCI_GetValueFloat(void *src, int proc);
extern double ARMCI_GetValueDouble(void *src, int proc);
extern int ARMCI_Malloc(void* ptr_arr[], armci_size_t bytes);
extern int ARMCI_Free(void *ptr);
extern void* ARMCI_Malloc_local(armci_size_t bytes);
extern int ARMCI_Free_local(void *ptr);
extern int ARMCI_Same_node(int proc);
extern void ARMCI_Finalize(); /* terminate ARMCI */
extern void ARMCI_Error(char *msg, int code);
extern void ARMCI_Fence(int proc);
extern void ARMCI_AllFence(void);
extern int ARMCI_Rmw(int op, void *ploc, void *prem, int extra, int proc);
extern void ARMCI_Cleanup(void);
extern int ARMCI_Create_mutexes(int num);
extern int ARMCI_Destroy_mutexes(void);
extern void ARMCI_Lock(int mutex, int proc);
extern void ARMCI_Unlock(int mutex, int proc);
extern void ARMCI_Set_shm_limit(unsigned long shmemlimit);
extern int ARMCI_Uses_shm();
extern void ARMCI_Copy(void *src, void *dst, int n);
#define FAIL -1
#define FAIL2 -2
#define FAIL3 -3
#define FAIL4 -4
#define FAIL5 -5
#define FAIL6 -6
#define FAIL7 -7
#define FAIL8 -8
#define ARMCI_SWAP 10
#define ARMCI_SWAP_LONG 11
#define ARMCI_FETCH_AND_ADD 12
#define ARMCI_FETCH_AND_ADD_LONG 13
#define ARMCI_ACC_OFF 36
#define ARMCI_ACC_INT (ARMCI_ACC_OFF + 1)
#define ARMCI_ACC_DBL (ARMCI_ACC_OFF + 2)
#define ARMCI_ACC_FLT (ARMCI_ACC_OFF + 3)
#define ARMCI_ACC_CPL (ARMCI_ACC_OFF + 4)
#define ARMCI_ACC_DCP (ARMCI_ACC_OFF + 5)
#define ARMCI_ACC_LNG (ARMCI_ACC_OFF + 6)
#define ARMCI_MAX_STRIDE_LEVEL 8
/****************Error/termination macros************************/
/**Debug assert macro. To be used instead of assert for more user
* informative and cleaner death. Also allows individualized
* enabling/disabling of assert statements.
* @param _enable Ignore this assertion if _enable==0
* @param _cond Condition to be evaluated (assert that it is true)
* @param _plist Information to be printed using printf, should be
* within parenthesis (eg., dassert(1,0,("%d:test n=%d\n",me,0));
* ). This is fed directly to printf.
*/
int dassertp_fail(const char *cond_string, const char *file,
const char *func, unsigned int line, int code);
void derr_printf(const char *format, ...);
#undef dassertp
#define dassertp(_enable,_cond,_plist) do { \
if((_enable) && !(_cond)) { \
derr_printf _plist; \
dassertp_fail(#_cond,__FILE__,FUNCTION_NAME,__LINE__,1); \
}} while(0)
#undef dassertc
#define dassertc(_enable,_cond,_plist,_code) do { \
if((_enable) && !(_cond)) { \
derr_printf _plist; \
dassertp_fail(#_cond,__FILE__,FUNCTION_NAME,__LINE__,_code); \
}} while(0)
#undef dassert
#define dassert(_enable,_cond) dassertp((_enable),(_cond),(""))
#undef dassert1
#define dassert1(_enable,_cond,_ival) \
dassertp((_enable),(_cond),("%d: error ival=%d\n", \
armci_msg_me(),(int)(_ival)))
#define armci_die(_msg,_code) dassertc(1,0, \
("%d:%s: %d\n", armci_msg_me(),(_msg),(_code)),_code)
#define armci_die2(_msg,_code1,_code2) dassertc(1,0, \
("%d:%s: (%d,%d)\n",armci_msg_me(),(_msg),(_code1),(_code2)),_code1)
/************ locality information **********************************************/
typedef int armci_domain_t;
#define ARMCI_DOMAIN_SMP 0 /* SMP node domain for armci_domain_XXX calls */
extern int armci_domain_nprocs(armci_domain_t domain, int id);
extern int armci_domain_id(armci_domain_t domain, int glob_proc_id);
extern int armci_domain_glob_proc_id(armci_domain_t domain, int id, int loc_proc_id);
extern int armci_domain_my_id(armci_domain_t domain);
extern int armci_domain_count(armci_domain_t domain);
extern int armci_domain_same_id(armci_domain_t domain, int proc);
/* PVM group
* On CrayT3E: the default group is the global group which is (char *)NULL
* It is the only working group.
* On Workstations: the default group is "mp_working_group". User can set
* the group name by calling the ARMCI_PVM_init (defined
* in message.c) and passing the group name to the library.
*/
extern char *mp_group_name;
/*********************stuff for non-blocking API******************************/
/*\ the request structure for non-blocking api.
\*/
/*max of sizes for all platforms. Increase if any platform needs more*/
typedef struct{
int data[4]; /* tag, bufid, agg_flag, op, proc */
double dummy[72];
} armci_hdl_t;
#define armci_req_t armci_hdl_t
typedef int ARMCI_Group;
extern void ARMCI_Group_create(int n, int *pid_list, ARMCI_Group *group_out);
extern void ARMCI_Group_create_child(int n, int *pid_list,
ARMCI_Group *group_out, ARMCI_Group *group_parent);
extern void ARMCI_Group_free(ARMCI_Group *group);
extern int ARMCI_Group_rank(ARMCI_Group *group, int *rank);
extern void ARMCI_Group_size(ARMCI_Group *group, int *size);
extern void ARMCI_Group_set_default(ARMCI_Group *group);
extern void ARMCI_Group_get_default(ARMCI_Group *group_out);
extern void ARMCI_Group_get_world(ARMCI_Group *group_out);
extern int ARMCI_Absolute_id(ARMCI_Group *group, int group_rank);
extern int ARMCI_Uses_shm_grp(ARMCI_Group *group);
extern int ARMCI_Malloc_group(void *ptr_arr[], armci_size_t bytes,ARMCI_Group *group);
extern int ARMCI_Free_group(void *ptr, ARMCI_Group *group);
extern int ARMCI_NbPut(void *src, void* dst, int bytes, int proc,armci_hdl_t* nb_handle);
extern int ARMCI_NbPutS( /* strided put */
void *src_ptr, /* pointer to 1st segment at source*/
int src_stride_arr[], /* array of strides at source */
void* dst_ptr, /* pointer to 1st segment at destination*/
int dst_stride_arr[], /* array of strides at destination */
int count[], /* number of units at each stride level count[0]=bytes */
int stride_levels, /* number of stride levels */
int proc, /* remote process(or) ID */
armci_hdl_t* nb_handle /*armci_non-blocking request handle*/
);
extern int ARMCI_NbAccS( /* strided accumulate */
int optype, /* operation */
void *scale, /* scale factor x += scale*y */
void *src_ptr, /* pointer to 1st segment at source*/
int src_stride_arr[], /* array of strides at source */
void* dst_ptr, /* pointer to 1st segment at destination*/
int dst_stride_arr[], /* array of strides at destination */
int count[], /* number of units at each stride level count[0]=bytes */
int stride_levels, /* number of stride levels */
int proc, /* remote process(or) ID */
armci_hdl_t* nb_handle /*armci_non-blocking request handle*/
);
extern int ARMCI_NbGet(void *src, void* dst, int bytes, int proc,armci_hdl_t* nb_handle);
extern int ARMCI_NbGetS( /* strided get */
void *src_ptr, /* pointer to 1st segment at source*/
int src_stride_arr[], /* array of strides at source */
void* dst_ptr, /* pointer to 1st segment at destination*/
int dst_stride_arr[], /* array of strides at destination */
int count[], /* number of units at each stride level count[0]=bytes */
int stride_levels, /* number of stride levels */
int proc, /* remote process(or) ID */
armci_hdl_t* nb_handler/*armci_non-blocking request handle*/
);
extern int ARMCI_NbGetV( armci_giov_t darr[], /* descriptor array */
int len, /* length of descriptor array */
int proc, /* remote process(or) ID */
armci_hdl_t* nb_handle /*armci_non-blocking request handle*/
);
extern int ARMCI_NbPutV( armci_giov_t darr[], /* descriptor array */
int len, /* length of descriptor array */
int proc, /* remote process(or) ID */
armci_hdl_t* nb_handle /*armci_non-blocking request handle*/
);
extern int ARMCI_NbAccV( int op, /* operation code */
void *scale, /* scaling factor for accumulate */
armci_giov_t darr[], /* descriptor array */
int len, /* length of descriptor array */
int proc, /* remote process(or) ID */
armci_hdl_t* nb_handle /*armci_non-blocking request handle*/
);
extern int ARMCI_NbPutValueInt(int src, /* value in a register to put */
void *dst, /* dest starting addr to put data */
int proc, /* remote process (or) ID */
armci_hdl_t* nb_handle /*armci_non-blocking
request handle */
);
extern int ARMCI_NbPutValueLong(long src, /* value in a register to put */
void *dst, /* dest starting addr to put data */
int proc, /* remote process (or) ID */
armci_hdl_t* nb_handle /*armci_non-blocking
request handle */
);
extern int ARMCI_NbPutValueFloat(float src,/* value in a register to put */
void *dst,/* dest starting addr to put data */
int proc, /* remote process (or) ID */
armci_hdl_t* nb_handle /*armci_non-blocking
request handle */
);
extern int ARMCI_NbPutValueDouble(double src,/* value in a register to put */
void *dst,/* dest starting addr to put data*/
int proc, /* remote process (or) ID */
armci_hdl_t* nb_handle /*armci_non-blocking
request handle */
);
extern int ARMCI_Wait(armci_hdl_t* nb_handle); /*non-blocking request handle*/
extern int ARMCI_Test(armci_hdl_t* nb_handle); /*non-blocking request handle*/
extern int ARMCI_WaitAll (void);
extern int ARMCI_WaitProc (int proc);
extern void ARMCI_SET_AGGREGATE_HANDLE(armci_hdl_t* nb_handle);
extern void ARMCI_UNSET_AGGREGATE_HANDLE(armci_hdl_t* nb_handle);
#define ARMCI_INIT_HANDLE(hdl) do {((double *)((hdl)->data))[0]=0; \
((double *)((hdl)->data))[1]=0; }while(0)
/* -------------- ARMCI Non-collective memory allocator ------------- */
typedef struct armci_meminfo_ds {
char * armci_addr; /* remote address of the creator which can be
used in ARMCI communication */
char *addr; /* local address of creator which can be used in
to set SMP memoffset, armci_set_mem_offset() */
size_t size; /* size of remote pid's segment (bytes) */
int cpid; /* armci pid of creator */
long idlist[128];
} armci_meminfo_t;
extern void ARMCI_Memget(size_t bytes, armci_meminfo_t *meminfo, int memflg);
extern void* ARMCI_Memat(armci_meminfo_t *meminfo, long offset);
extern void ARMCI_Memdt(armci_meminfo_t *meminfo, long offset);
extern void ARMCI_Memctl(armci_meminfo_t *meminfo);
/* ------------------------------------------------------------------ */
#if defined(__cplusplus) || defined(c_plusplus)
}
#endif
#endif /* _ARMCI_H */
|