This repository was archived by the owner on Mar 28, 2023. It is now read-only.
forked from llvm/llvm-test-suite
-
Notifications
You must be signed in to change notification settings - Fork 130
[SYCl][L0] Buffer for multi-device context is using device allocation now #976
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
d6a44eb
[SYCl][L0] Buffer for multi-device context is using device allocation…
smaslov-intel c1d50c3
added new test
smaslov-intel 8a211d4
clang-format
smaslov-intel 932f70a
don't assume data is back in interop allocation
smaslov-intel 0fea29f
update comment
smaslov-intel 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// REQUIRES: gpu | ||
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out | ||
// RUN: %GPU_RUN_PLACEHOLDER %t.out | ||
// RUN: env NEOReadDebugKeys=1 CreateMultipleRootDevices=2 %GPU_RUN_PLACEHOLDER %t.out | ||
// RUN: env NEOReadDebugKeys=1 CreateMultipleRootDevices=3 %GPU_RUN_PLACEHOLDER %t.out | ||
// | ||
// Test for buffer use in a context with multiple devices (all found | ||
// root-devices) | ||
// | ||
|
||
#include <CL/sycl.hpp> | ||
using namespace cl::sycl; | ||
|
||
int main() { | ||
|
||
int Data = 0; | ||
int Result = 0; | ||
buffer<int, 1> Buffer(&Data, range<1>(1)); | ||
|
||
const auto &Devices = | ||
platform(gpu_selector{}).get_devices(info::device_type::gpu); | ||
std::cout << Devices.size() << " devices found" << std::endl; | ||
context C(Devices); | ||
|
||
int Index = 0; | ||
for (auto D : Devices) { | ||
std::cout << "Using on device " << Index << ": " | ||
<< D.get_info<info::device::name>() << std::endl; | ||
Result |= (1 << Index); | ||
|
||
queue Q(C, D); | ||
Q.submit([&](handler &cgh) { | ||
accessor Accessor{Buffer, cgh, read_write}; | ||
cgh.parallel_for<class MigrateBuffer>( | ||
range<1>(1), [=](id<1> ID) { Accessor[ID] |= (1 << Index); }); | ||
}); | ||
Q.wait(); | ||
++Index; | ||
} | ||
|
||
auto HostAcc = Buffer.get_host_access(); | ||
auto Passed = (HostAcc[0] == Result); | ||
std::cout << "Checking result on host: " << (Passed ? "passed" : "FAILED") | ||
<< std::endl; | ||
std::cout << HostAcc[0] << " ?= " << Result << std::endl; | ||
return !Passed; | ||
} |
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
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.
@againull : from the spec you crafted: