-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[OpenMP][OMPT] Add OMPT callback for device data exchange 'Device-to-Device' #81991
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,85 @@ | ||
// RUN: %libomptarget-compile-run-and-check-generic | ||
// REQUIRES: ompt | ||
// UNSUPPORTED: aarch64-unknown-linux-gnu | ||
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO | ||
// UNSUPPORTED: x86_64-pc-linux-gnu | ||
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO | ||
|
||
/* | ||
* Verify all three data transfer directions: H2D, D2D and D2H | ||
*/ | ||
|
||
#include <omp.h> | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
|
||
#include "callbacks.h" | ||
#include "register_emi.h" | ||
|
||
int main(void) { | ||
int NumDevices = omp_get_num_devices(); | ||
assert(NumDevices > 0 && "No device(s) present."); | ||
int Device = omp_get_default_device(); | ||
int Host = omp_get_initial_device(); | ||
// Note: Zero value depicts an OFFLOAD_SUCCESS | ||
int Status; | ||
|
||
printf("Allocating Memory on Device\n"); | ||
int *DevPtr = (int *)omp_target_alloc(sizeof(int), Device); | ||
assert(DevPtr && "Could not allocate memory on device."); | ||
int *HstPtr = (int *)malloc(sizeof(int)); | ||
*HstPtr = 42; | ||
|
||
printf("Testing: Host to Device\n"); | ||
Status = omp_target_memcpy(DevPtr, HstPtr, sizeof(int), 0, 0, Device, Host); | ||
assert(Status == 0 && "H2D memory copy operation failed.\n"); | ||
|
||
printf("Testing: Device to Device\n"); | ||
Status = omp_target_memcpy(DevPtr, DevPtr, sizeof(int), 0, 0, Device, Device); | ||
assert(Status == 0 && "D2D memory copy operation failed.\n"); | ||
|
||
printf("Testing: Device to Host\n"); | ||
Status = omp_target_memcpy(HstPtr, DevPtr, sizeof(int), 0, 0, Host, Device); | ||
assert(Status == 0 && "D2H memory copy operation failed.\n"); | ||
|
||
printf("Checking Correctness\n"); | ||
assert(*HstPtr == 42); | ||
|
||
printf("Freeing Memory on Device\n"); | ||
free(HstPtr); | ||
omp_target_free(DevPtr, Device); | ||
|
||
return 0; | ||
} | ||
|
||
// clang-format off | ||
|
||
/// CHECK: Callback Init: | ||
|
||
/// CHECK: Allocating Memory on Device | ||
/// CHECK: Callback DataOp EMI: endpoint=1 optype=1 | ||
/// CHECK-SAME: src_device_num=[[HOST:[0-9]+]] | ||
/// CHECK-SAME: dest_device_num=[[DEVICE:[0-9]+]] | ||
/// CHECK: Callback DataOp EMI: endpoint=2 optype=1 {{.+}} src_device_num=[[HOST]] {{.+}} dest_device_num=[[DEVICE]] | ||
|
||
/// CHECK: Testing: Host to Device | ||
/// CHECK: Callback DataOp EMI: endpoint=1 optype=2 {{.+}} src_device_num=[[HOST]] {{.+}} dest_device_num=[[DEVICE]] | ||
/// CHECK: Callback DataOp EMI: endpoint=2 optype=2 {{.+}} src_device_num=[[HOST]] {{.+}} dest_device_num=[[DEVICE]] | ||
|
||
/// CHECK: Testing: Device to Device | ||
/// CHECK: Callback DataOp EMI: endpoint=1 optype=3 {{.+}} src_device_num=[[DEVICE]] {{.+}} dest_device_num=[[DEVICE]] | ||
/// CHECK: Callback DataOp EMI: endpoint=2 optype=3 {{.+}} src_device_num=[[DEVICE]] {{.+}} dest_device_num=[[DEVICE]] | ||
|
||
/// CHECK: Testing: Device to Host | ||
/// CHECK: Callback DataOp EMI: endpoint=1 optype=3 {{.+}} src_device_num=[[DEVICE]] {{.+}} dest_device_num=[[HOST]] | ||
/// CHECK: Callback DataOp EMI: endpoint=2 optype=3 {{.+}} src_device_num=[[DEVICE]] {{.+}} dest_device_num=[[HOST]] | ||
|
||
/// CHECK: Checking Correctness | ||
|
||
/// CHECK: Freeing Memory on Device | ||
/// CHECK: Callback DataOp EMI: endpoint=1 optype=4 {{.+}} src_device_num=[[DEVICE]] | ||
/// CHECK: Callback DataOp EMI: endpoint=2 optype=4 {{.+}} src_device_num=[[DEVICE]] | ||
|
||
/// CHECK: Callback Fini: | ||
|
||
// clang-format on |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check that DevPtr is not null.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. Will add an
assert()
.