OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MPI_IN_PLACE
(Results
1 - 4
of
4
) sorted by null
/external/clang/test/Analysis/
mpichecker.cpp
54
MPI_Ireduce(
MPI_IN_PLACE
, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD, &sendReq1);
91
MPI_Ireduce(
MPI_IN_PLACE
, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD, &req);
92
MPI_Ireduce(
MPI_IN_PLACE
, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD, &req); // expected-warning{{Double nonblocking on request 'req'.}}
104
MPI_Ireduce(
MPI_IN_PLACE
, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD, &rs.req);
105
MPI_Ireduce(
MPI_IN_PLACE
, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD, &rs.req); // expected-warning{{Double nonblocking on request 'rs.req'.}}
116
MPI_Ireduce(
MPI_IN_PLACE
, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD, &req); // expected-warning{{Double nonblocking on request 'req'.}}
168
MPI_Ireduce(
MPI_IN_PLACE
, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD,
170
MPI_Ireduce(
MPI_IN_PLACE
, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD,
172
MPI_Ireduce(
MPI_IN_PLACE
, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD,
184
MPI_Ireduce(
MPI_IN_PLACE
, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD
[
all
...]
mpicheckernotes.cpp
18
MPI_Ireduce(
MPI_IN_PLACE
, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD, &sendReq); // expected-note{{Request is previously used by nonblocking call here.}}
MPIMock.h
36
#define
MPI_IN_PLACE
0
/external/clang/test/Sema/
warn-type-safety-mpi-hdf5.c
53
#define
MPI_IN_PLACE
((void *) 1)
84
#define
MPI_IN_PLACE
(void *) -1
182
// We expect that
MPI_IN_PLACE
is `void*', shouldn't warn.
183
MPI_Gather(
MPI_IN_PLACE
, 0, MPI_INT,
Completed in 391 milliseconds