OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MPI_DOUBLE
(Results
1 - 5
of
5
) sorted by null
/external/clang/test/Analysis/
mpicheckernotes.cpp
10
MPI_Isend(&buf, 1,
MPI_DOUBLE
, 0, 0, MPI_COMM_WORLD, &sendReq); // expected-note{{Request is previously used by nonblocking call here.}}
11
MPI_Irecv(&buf, 1,
MPI_DOUBLE
, 0, 0, MPI_COMM_WORLD, &sendReq); // expected-warning{{Double nonblocking on request 'sendReq'.}} expected-note{{Double nonblocking on request 'sendReq'.}}
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.}}
28
MPI_Isend(&buf, 1,
MPI_DOUBLE
, 0, 0, MPI_COMM_WORLD, &sendReq); // expected-note 2{{Request is previously used by nonblocking call here.}}
29
MPI_Irecv(&buf, 1,
MPI_DOUBLE
, 0, 0, MPI_COMM_WORLD, &sendReq); // expected-warning{{Double nonblocking on request 'sendReq'.}} expected-note{{Double nonblocking on request 'sendReq'.}}
31
MPI_Isend(&buf, 1,
MPI_DOUBLE
, 0, 0, MPI_COMM_WORLD, &sendReq); // expected-warning{{Double nonblocking on request 'sendReq'.}} expected-note{{Double nonblocking on request 'sendReq'.}}
mpichecker.cpp
11
MPI_Isend(&buf, 1,
MPI_DOUBLE
, rank + 1, 0, MPI_COMM_WORLD, &sendReq1);
12
MPI_Irecv(&buf, 1,
MPI_DOUBLE
, rank - 1, 0, MPI_COMM_WORLD, &recvReq1);
25
MPI_Isend(&buf, 1,
MPI_DOUBLE
, rank + 1, 0, MPI_COMM_WORLD, &sendReq1);
26
MPI_Irecv(&buf, 1,
MPI_DOUBLE
, rank - 1, 0, MPI_COMM_WORLD, &recvReq1);
38
MPI_Isend(&buf, 1,
MPI_DOUBLE
, rank + 1, 0, MPI_COMM_WORLD, &sendReq1);
39
MPI_Irecv(&buf, 1,
MPI_DOUBLE
, rank - 1, 0, MPI_COMM_WORLD, &recvReq1);
54
MPI_Ireduce(MPI_IN_PLACE, &buf, 1,
MPI_DOUBLE
, MPI_SUM, 0, MPI_COMM_WORLD, &sendReq1);
65
MPI_Isend(&buf, 1,
MPI_DOUBLE
, rank + 1, 0, MPI_COMM_WORLD, &sendReq1);
66
MPI_Irecv(&buf, 1,
MPI_DOUBLE
, rank - 1, 0, MPI_COMM_WORLD, &recvReq1); // expected-warning{{Request 'sendReq1' has no matching wait.}}
79
MPI_Isend(&buf, 1,
MPI_DOUBLE
, rank + 1, 0, MPI_COMM_WORLD, &sendReq1)
[
all
...]
MPIMock.h
31
#define
MPI_DOUBLE
0
/external/valgrind/mpi/
mpiwrap_type_test.c
257
TRY(True, tycon_Struct2(3,2,MPI_CHAR, 8,1,
MPI_DOUBLE
),
260
TRY(True, tycon_Struct2(0,1,MPI_CHAR, 8,1,tycon_Contiguous(4,
MPI_DOUBLE
)),
266
TRY(True, tycon_Vector(5, 2,3,
MPI_DOUBLE
),
335
TRY(False,
MPI_DOUBLE
, "DOUBLE");
libmpiwrap.c
269
else if (ty ==
MPI_DOUBLE
) fprintf(f,"DOUBLE");
523
if (ty ==
MPI_DOUBLE
) return sizeof(double);
[
all
...]
Completed in 80 milliseconds