This repository was archived by the owner on Aug 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 89
Add new vector add example #268
Merged
Merged
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
/*************************************************************************** | ||
* | ||
* Copyright (C) Codeplay Software Ltd. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* Codeplay's ComputeCpp SDK | ||
* | ||
* vector-addition-examples.cpp | ||
* | ||
* Description: | ||
* Shows different code generation for vector addition kernels | ||
**************************************************************************/ | ||
|
||
#include <iostream> | ||
|
||
#include <CL/sycl.hpp> | ||
|
||
using namespace cl; | ||
|
||
/* Base vector add function. */ | ||
void vecAdd(const float* a, const float* b, float* c, size_t id) { | ||
c[id] = a[id] + b[id]; | ||
} | ||
|
||
/* Masked variant where the store is hidden behind a runtime branch. */ | ||
void vecAddMasked(const float* a, const float* b, float* c, size_t id) { | ||
float v = a[id] + b[id]; | ||
if (v < 0.0f) { | ||
c[id] = v; | ||
} | ||
} | ||
|
||
/* Variant where the variable value is predicated on a branch. */ | ||
void vecAddPredicated(const float* a, const float* b, float* c, size_t id) { | ||
float v = a[id] + b[id]; | ||
if (v < 0.0f) { | ||
v = 0.0f; | ||
} | ||
c[id] = v; | ||
} | ||
|
||
class VecAddKernel; | ||
class VecAddKernelMasked; | ||
class VecAddKernelPredicated; | ||
|
||
void zeroBuffer(sycl::buffer<float, 1> b) { | ||
constexpr auto dwrite = sycl::access::mode::discard_write; | ||
auto h = b.get_access<dwrite>(); | ||
for (auto i = 0u; i < b.get_range()[0]; i++) { | ||
h[i] = 0.f; | ||
} | ||
} | ||
|
||
void sumBuffer(sycl::buffer<float, 1> b) { | ||
constexpr auto read = sycl::access::mode::read; | ||
auto h = b.get_access<read>(); | ||
auto sum = 0.0f; | ||
for (auto i = 0u; i < b.get_range()[0]; i++) { | ||
sum += h[i]; | ||
} | ||
std::cout << "computation result: " << sum << std::endl; | ||
} | ||
|
||
/* This sample shows three different vector addition functions. It | ||
* is possible to inspect the assembly generated by these samples | ||
* using the ComputeSuite tooling to compare the different approaches. | ||
* The general flow is that the output buffer is zeroed, the calculation | ||
* scheduled, then the sum printed for each of the functions. */ | ||
int main(int argc, char* argv[]) { | ||
constexpr auto read = sycl::access::mode::read; | ||
constexpr auto write = sycl::access::mode::write; | ||
constexpr auto dwrite = sycl::access::mode::discard_write; | ||
constexpr const size_t N = 100000; | ||
const sycl::range<1> VecSize{N}; | ||
|
||
sycl::buffer<float> bufA{VecSize}; | ||
sycl::buffer<float> bufB{VecSize}; | ||
sycl::buffer<float> bufC{VecSize}; | ||
|
||
{ | ||
auto h_a = bufA.get_access<dwrite>(); | ||
auto h_b = bufB.get_access<dwrite>(); | ||
for (auto i = 0u; i < N; i++) { | ||
h_a[i] = sin(i); | ||
h_b[i] = cos(i); | ||
} | ||
} | ||
|
||
sycl::queue myQueue; | ||
|
||
{ | ||
zeroBuffer(bufC); | ||
auto cg = [&](sycl::handler& h) { | ||
auto a = bufA.get_access<read>(h); | ||
auto b = bufB.get_access<read>(h); | ||
auto c = bufC.get_access<write>(h); | ||
|
||
h.parallel_for<VecAddKernel>( | ||
VecSize, [=](sycl::id<1> i) { vecAdd(&a[0], &b[0], &c[0], i[0]); }); | ||
}; | ||
myQueue.submit(cg); | ||
sumBuffer(bufC); | ||
} | ||
{ | ||
zeroBuffer(bufC); | ||
auto cg = [&](sycl::handler& h) { | ||
auto a = bufA.get_access<read>(h); | ||
auto b = bufB.get_access<read>(h); | ||
auto c = bufC.get_access<write>(h); | ||
|
||
h.parallel_for<VecAddKernelMasked>(VecSize, [=](sycl::id<1> i) { | ||
vecAddMasked(&a[0], &b[0], &c[0], i[0]); | ||
}); | ||
}; | ||
myQueue.submit(cg); | ||
sumBuffer(bufC); | ||
} | ||
{ | ||
zeroBuffer(bufC); | ||
auto cg = [&](sycl::handler& h) { | ||
auto a = bufA.get_access<read>(h); | ||
auto b = bufB.get_access<read>(h); | ||
auto c = bufC.get_access<write>(h); | ||
|
||
h.parallel_for<VecAddKernelPredicated>(VecSize, [=](sycl::id<1> i) { | ||
vecAddPredicated(&a[0], &b[0], &c[0], i[0]); | ||
}); | ||
}; | ||
myQueue.submit(cg); | ||
sumBuffer(bufC); | ||
} | ||
|
||
return 0; | ||
} |
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.
Uh oh!
There was an error while loading. Please reload this page.