forked from chapel-lang/chapel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add separate good file for cpu-as-device
--- Signed-off-by: Andy Stone <[email protected]>
- Loading branch information
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
warning: The prototype GPU support implies --no-checks. This may impact debuggability. To suppress this warning, compile with --no-checks explicitly | ||
Start | ||
0 (cpu): diags.chpl:nn: allocate xxB of domain(1,int(64),one) at 0xPREDIFFED | ||
0 (cpu): diags.chpl:nn: allocate xxB of [domain(1,int(64),one)] int(64) at 0xPREDIFFED | ||
0 (cpu): diags.chpl:nn: allocate xxB of array elements at 0xPREDIFFED | ||
0 (cpu): diags.chpl:nn: allocate xxB of _EndCount(atomic int(64),int(64)) at 0xPREDIFFED | ||
0 (cpu): diags.chpl:nn: free xxB of _EndCount(atomic int(64),int(64)) at 0xPREDIFFED | ||
0 (gpu 0): diags.chpl:nn: allocate xxB of [domain(1,int(64),one)] int(64) at 0xPREDIFFED | ||
0 (gpu 0): diags.chpl:nn: allocate xxB of array elements at 0xPREDIFFED | ||
0 (gpu 0): diags.chpl:nn: free xxB of array elements at 0xPREDIFFED | ||
0 (gpu 0): diags.chpl:nn: free xxB of [domain(1,int(64),one)] int(64) at 0xPREDIFFED | ||
2 2 2 2 2 2 2 2 2 2 | ||
End |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
--memTrack | ||
#!/usr/bin/env bash | ||
|
||
if [[ "$CHPL_GPU" == "cpu" ]]; then | ||
echo "--memTrack # diags.cpu.good" | ||
else | ||
echo "--memTrack" | ||
fi |