This source file includes following definitions.
- shmem_udcflush_line
1
2
3
4
5
6
7
8
9
10
11
12
13 #include "oshmem_config.h"
14
15 #include "oshmem/constants.h"
16 #include "oshmem/include/shmem.h"
17
18 #include "oshmem/shmem/shmem_api_logger.h"
19 #include "opal/sys/architecture.h"
20
21 #if OSHMEM_PROFILING
22 #include "oshmem/include/pshmem.h"
23 #pragma weak shmem_udcflush_line = pshmem_udcflush_line
24 #include "oshmem/shmem/c/profile/defines.h"
25 #endif
26
27 void shmem_udcflush_line(void *target)
28 {
29 #if (OPAL_ASSEMBLY_ARCH == OPAL_IA64) || (OPAL_ASSEMBLY_ARCH == OPAL_IA32) || (OPAL_ASSEMBLY_ARCH == OPAL_X86_64)
30 do {SHMEM_API_VERBOSE(10,"shmem_udcflush_line is not supported by the current CPU architecture");}while (0);
31 #else
32
33 #endif
34 }