File: shmem_finc.c

package info (click to toggle)
openmpi 5.0.8-3
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 201,692 kB
  • sloc: ansic: 613,078; makefile: 42,353; sh: 11,194; javascript: 9,244; f90: 7,052; java: 6,404; perl: 5,179; python: 1,859; lex: 740; fortran: 61; cpp: 20; tcl: 12
file content (144 lines) | stat: -rw-r--r-- 7,477 bytes parent folder | download | duplicates (5)
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
/*
 * Copyright (c) 2013      Mellanox Technologies, Inc.
 *                         All rights reserved.
 * $COPYRIGHT$
 *
 * Additional copyrights may follow
 *
 * $HEADER$
 */
#include "oshmem_config.h"

#include "oshmem/constants.h"
#include "oshmem/include/shmem.h"
#include "oshmem/include/shmemx.h"

#include "oshmem/runtime/runtime.h"

#include "oshmem/op/op.h"
#include "oshmem/mca/atomic/atomic.h"

/*
 * These routines perform a fetch-and-increment operation.
 * The fetch and increment routines retrieve the value at address target on PE pe, and update
 * target with the result of incrementing the retrieved value by one. The operation must be
 * completed without the possibility of another process updating target between the time of
 * the fetch and the update.
 */
#define DO_SHMEM_TYPE_ATOMIC_FETCH_INC(ctx, type_name, type, target, pe, out_value) do { \
        int rc = OSHMEM_SUCCESS;                                    \
        size_t size;                                                \
        type value = 1;                                             \
                                                                    \
        RUNTIME_CHECK_INIT();                                       \
        RUNTIME_CHECK_PE(pe);                                       \
        RUNTIME_CHECK_ADDR(target);                                 \
                                                                    \
        size = sizeof(out_value);                                   \
        rc = MCA_ATOMIC_CALL(fadd(                                  \
            ctx,                                                    \
            (void*)target,                                          \
            (void*)&out_value,                                      \
            value,                                                  \
            size,                                                   \
            pe));                                                   \
        RUNTIME_CHECK_RC(rc);                                       \
    } while (0)

#define SHMEM_CTX_TYPE_ATOMIC_FETCH_INC(type_name, type, prefix)    \
    type prefix##_ctx##type_name##_atomic_fetch_inc(shmem_ctx_t ctx, type *target, int pe) \
    {                                                               \
        type out_value;                                             \
        DO_SHMEM_TYPE_ATOMIC_FETCH_INC(ctx, type_name, type, target,\
                                  pe, out_value);                   \
        return out_value;                                           \
    }

#define SHMEM_TYPE_ATOMIC_FETCH_INC(type_name, type, prefix)        \
    type prefix##type_name##_atomic_fetch_inc(type *target, int pe) \
    {                                                               \
        type out_value;                                             \
        DO_SHMEM_TYPE_ATOMIC_FETCH_INC(oshmem_ctx_default, type_name,\
                                  type, target, pe, out_value);     \
        return out_value;                                           \
    }

#if OSHMEM_PROFILING
#include "oshmem/include/pshmem.h"
#pragma weak shmem_ctx_int_atomic_fetch_inc = pshmem_ctx_int_atomic_fetch_inc
#pragma weak shmem_ctx_long_atomic_fetch_inc = pshmem_ctx_long_atomic_fetch_inc
#pragma weak shmem_ctx_longlong_atomic_fetch_inc = pshmem_ctx_longlong_atomic_fetch_inc
#pragma weak shmem_ctx_uint_atomic_fetch_inc = pshmem_ctx_uint_atomic_fetch_inc
#pragma weak shmem_ctx_ulong_atomic_fetch_inc = pshmem_ctx_ulong_atomic_fetch_inc
#pragma weak shmem_ctx_ulonglong_atomic_fetch_inc = pshmem_ctx_ulonglong_atomic_fetch_inc
#pragma weak shmem_ctx_int32_atomic_fetch_inc    	= pshmem_ctx_int32_atomic_fetch_inc
#pragma weak shmem_ctx_int64_atomic_fetch_inc    	= pshmem_ctx_int64_atomic_fetch_inc
#pragma weak shmem_ctx_uint32_atomic_fetch_inc    	= pshmem_ctx_uint32_atomic_fetch_inc
#pragma weak shmem_ctx_uint64_atomic_fetch_inc    	= pshmem_ctx_uint64_atomic_fetch_inc
#pragma weak shmem_ctx_size_atomic_fetch_inc    	= pshmem_ctx_size_atomic_fetch_inc
#pragma weak shmem_ctx_ptrdiff_atomic_fetch_inc    	= pshmem_ctx_ptrdiff_atomic_fetch_inc

#pragma weak shmem_int_atomic_fetch_inc = pshmem_int_atomic_fetch_inc
#pragma weak shmem_long_atomic_fetch_inc = pshmem_long_atomic_fetch_inc
#pragma weak shmem_longlong_atomic_fetch_inc = pshmem_longlong_atomic_fetch_inc
#pragma weak shmem_uint_atomic_fetch_inc = pshmem_uint_atomic_fetch_inc
#pragma weak shmem_ulong_atomic_fetch_inc = pshmem_ulong_atomic_fetch_inc
#pragma weak shmem_ulonglong_atomic_fetch_inc = pshmem_ulonglong_atomic_fetch_inc
#pragma weak shmem_int32_atomic_fetch_inc    	= pshmem_int32_atomic_fetch_inc
#pragma weak shmem_int64_atomic_fetch_inc    	= pshmem_int64_atomic_fetch_inc
#pragma weak shmem_uint32_atomic_fetch_inc    	= pshmem_uint32_atomic_fetch_inc
#pragma weak shmem_uint64_atomic_fetch_inc    	= pshmem_uint64_atomic_fetch_inc
#pragma weak shmem_size_atomic_fetch_inc    	= pshmem_size_atomic_fetch_inc
#pragma weak shmem_ptrdiff_atomic_fetch_inc   	= pshmem_ptrdiff_atomic_fetch_inc

#pragma weak shmem_int_finc = pshmem_int_finc
#pragma weak shmem_long_finc = pshmem_long_finc
#pragma weak shmem_longlong_finc = pshmem_longlong_finc

#pragma weak shmemx_int32_finc = pshmemx_int32_finc
#pragma weak shmemx_int64_finc = pshmemx_int64_finc

#include "oshmem/shmem/c/profile-defines.h"
#endif

SHMEM_CTX_TYPE_ATOMIC_FETCH_INC(_int, int, shmem)
SHMEM_CTX_TYPE_ATOMIC_FETCH_INC(_long, long, shmem)
SHMEM_CTX_TYPE_ATOMIC_FETCH_INC(_longlong, long long, shmem)
SHMEM_CTX_TYPE_ATOMIC_FETCH_INC(_uint, unsigned int, shmem)
SHMEM_CTX_TYPE_ATOMIC_FETCH_INC(_ulong, unsigned long, shmem)
SHMEM_CTX_TYPE_ATOMIC_FETCH_INC(_ulonglong, unsigned long long, shmem)
SHMEM_CTX_TYPE_ATOMIC_FETCH_INC(_int32, int32_t, shmem)
SHMEM_CTX_TYPE_ATOMIC_FETCH_INC(_int64, int64_t, shmem)
SHMEM_CTX_TYPE_ATOMIC_FETCH_INC(_uint32, uint32_t, shmem)
SHMEM_CTX_TYPE_ATOMIC_FETCH_INC(_uint64, uint64_t, shmem)
SHMEM_CTX_TYPE_ATOMIC_FETCH_INC(_size, size_t, shmem)
SHMEM_CTX_TYPE_ATOMIC_FETCH_INC(_ptrdiff, ptrdiff_t, shmem)

SHMEM_TYPE_ATOMIC_FETCH_INC(_int, int, shmem)
SHMEM_TYPE_ATOMIC_FETCH_INC(_long, long, shmem)
SHMEM_TYPE_ATOMIC_FETCH_INC(_longlong, long long, shmem)
SHMEM_TYPE_ATOMIC_FETCH_INC(_uint, unsigned int, shmem)
SHMEM_TYPE_ATOMIC_FETCH_INC(_ulong, unsigned long, shmem)
SHMEM_TYPE_ATOMIC_FETCH_INC(_ulonglong, unsigned long long, shmem)
SHMEM_TYPE_ATOMIC_FETCH_INC(_int32, int32_t, shmem)
SHMEM_TYPE_ATOMIC_FETCH_INC(_int64, int64_t, shmem)
SHMEM_TYPE_ATOMIC_FETCH_INC(_uint32, uint32_t, shmem)
SHMEM_TYPE_ATOMIC_FETCH_INC(_uint64, uint64_t, shmem)
SHMEM_TYPE_ATOMIC_FETCH_INC(_size, size_t, shmem)
SHMEM_TYPE_ATOMIC_FETCH_INC(_ptrdiff, ptrdiff_t, shmem)

/* deprecated APIs */
#define SHMEM_TYPE_FINC(type_name, type, prefix)                    \
    type prefix##type_name##_finc(type *target, int pe)             \
    {                                                               \
        type out_value;                                             \
        DO_SHMEM_TYPE_ATOMIC_FETCH_INC(oshmem_ctx_default, type_name,   \
                                  type, target, pe, out_value);     \
        return out_value;                                           \
    }

SHMEM_TYPE_FINC(_int, int, shmem)
SHMEM_TYPE_FINC(_long, long, shmem)
SHMEM_TYPE_FINC(_longlong, long long, shmem)
SHMEM_TYPE_FINC(_int32, int32_t, shmemx)
SHMEM_TYPE_FINC(_int64, int64_t, shmemx)