Detect values greater than threshold in an array and store result in a binary(1/0) array using thrust
Given an input array and a threshold, I need to create an output binary array with 1's for values greater than threshold and 0's for values less than threshold. I need to use thrust.
My attempt as below solves the problem but looks very clumsy. How to do it in a single step. My target is to do it in minimum computation time.
#include <thrust/replace.h>
#include <thrust/execution_policy.h>
#include <thrust/fill.h>
#include <thrust/device_vector.h>
int main(int argc, char * argv)
{
int threshold=1;
thrust::device_vector<int> S(6);
S[0] = 1;
S[1] = 2;
S[2] = 3;
S[3] = 4;
S[4] = 5;
S[5] = 6;
// fill vector with zeros
thrust::device_vector<int> A(6);
thrust::fill(thrust::device, A.begin(), A.end(), 0);
// detect indices with values greater than zero
thrust::device_vector<int> indices(6);
thrust::device_vector<int>::iterator end = thrust::copy_if(thrust::make_counting_iterator(0),thrust::make_counting_iterator(6),S.begin(),indices.begin(), thrust::placeholders::_1 > threshold);
int size = end-indices.begin();
indices.resize(size);
// use permutation iterator along with indices above to change to ones
thrust::replace(thrust::device,thrust::make_permutation_iterator(A.begin(), indices.begin()), thrust::make_permutation_iterator(A.begin(), indices.end()), 0, 1);
for (int i=0;i<6;i++)
{
std::cout << "A["<<i<<"]=" << A[i] << std::endl;
}
return 0;
}
The indices detection part is taken from this Stackoverflow question
arrays cuda thrust threshold
add a comment |
Given an input array and a threshold, I need to create an output binary array with 1's for values greater than threshold and 0's for values less than threshold. I need to use thrust.
My attempt as below solves the problem but looks very clumsy. How to do it in a single step. My target is to do it in minimum computation time.
#include <thrust/replace.h>
#include <thrust/execution_policy.h>
#include <thrust/fill.h>
#include <thrust/device_vector.h>
int main(int argc, char * argv)
{
int threshold=1;
thrust::device_vector<int> S(6);
S[0] = 1;
S[1] = 2;
S[2] = 3;
S[3] = 4;
S[4] = 5;
S[5] = 6;
// fill vector with zeros
thrust::device_vector<int> A(6);
thrust::fill(thrust::device, A.begin(), A.end(), 0);
// detect indices with values greater than zero
thrust::device_vector<int> indices(6);
thrust::device_vector<int>::iterator end = thrust::copy_if(thrust::make_counting_iterator(0),thrust::make_counting_iterator(6),S.begin(),indices.begin(), thrust::placeholders::_1 > threshold);
int size = end-indices.begin();
indices.resize(size);
// use permutation iterator along with indices above to change to ones
thrust::replace(thrust::device,thrust::make_permutation_iterator(A.begin(), indices.begin()), thrust::make_permutation_iterator(A.begin(), indices.end()), 0, 1);
for (int i=0;i<6;i++)
{
std::cout << "A["<<i<<"]=" << A[i] << std::endl;
}
return 0;
}
The indices detection part is taken from this Stackoverflow question
arrays cuda thrust threshold
add a comment |
Given an input array and a threshold, I need to create an output binary array with 1's for values greater than threshold and 0's for values less than threshold. I need to use thrust.
My attempt as below solves the problem but looks very clumsy. How to do it in a single step. My target is to do it in minimum computation time.
#include <thrust/replace.h>
#include <thrust/execution_policy.h>
#include <thrust/fill.h>
#include <thrust/device_vector.h>
int main(int argc, char * argv)
{
int threshold=1;
thrust::device_vector<int> S(6);
S[0] = 1;
S[1] = 2;
S[2] = 3;
S[3] = 4;
S[4] = 5;
S[5] = 6;
// fill vector with zeros
thrust::device_vector<int> A(6);
thrust::fill(thrust::device, A.begin(), A.end(), 0);
// detect indices with values greater than zero
thrust::device_vector<int> indices(6);
thrust::device_vector<int>::iterator end = thrust::copy_if(thrust::make_counting_iterator(0),thrust::make_counting_iterator(6),S.begin(),indices.begin(), thrust::placeholders::_1 > threshold);
int size = end-indices.begin();
indices.resize(size);
// use permutation iterator along with indices above to change to ones
thrust::replace(thrust::device,thrust::make_permutation_iterator(A.begin(), indices.begin()), thrust::make_permutation_iterator(A.begin(), indices.end()), 0, 1);
for (int i=0;i<6;i++)
{
std::cout << "A["<<i<<"]=" << A[i] << std::endl;
}
return 0;
}
The indices detection part is taken from this Stackoverflow question
arrays cuda thrust threshold
Given an input array and a threshold, I need to create an output binary array with 1's for values greater than threshold and 0's for values less than threshold. I need to use thrust.
My attempt as below solves the problem but looks very clumsy. How to do it in a single step. My target is to do it in minimum computation time.
#include <thrust/replace.h>
#include <thrust/execution_policy.h>
#include <thrust/fill.h>
#include <thrust/device_vector.h>
int main(int argc, char * argv)
{
int threshold=1;
thrust::device_vector<int> S(6);
S[0] = 1;
S[1] = 2;
S[2] = 3;
S[3] = 4;
S[4] = 5;
S[5] = 6;
// fill vector with zeros
thrust::device_vector<int> A(6);
thrust::fill(thrust::device, A.begin(), A.end(), 0);
// detect indices with values greater than zero
thrust::device_vector<int> indices(6);
thrust::device_vector<int>::iterator end = thrust::copy_if(thrust::make_counting_iterator(0),thrust::make_counting_iterator(6),S.begin(),indices.begin(), thrust::placeholders::_1 > threshold);
int size = end-indices.begin();
indices.resize(size);
// use permutation iterator along with indices above to change to ones
thrust::replace(thrust::device,thrust::make_permutation_iterator(A.begin(), indices.begin()), thrust::make_permutation_iterator(A.begin(), indices.end()), 0, 1);
for (int i=0;i<6;i++)
{
std::cout << "A["<<i<<"]=" << A[i] << std::endl;
}
return 0;
}
The indices detection part is taken from this Stackoverflow question
arrays cuda thrust threshold
arrays cuda thrust threshold
asked Nov 20 '18 at 5:49
user27665user27665
331415
331415
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The required functionality can be achieved with a single call to thrust::transform
with a custom comparison functor. Here is an example of the said approach.
#include <thrust/execution_policy.h>
#include <thrust/device_vector.h>
#include <thrust/transform.h>
template<class T>
struct thresher
{
T _thresh;
thresher(T thresh) : _thresh(thresh) { }
__host__ __device__ int operator()(T &x) const
{
return int(x > _thresh);
}
};
int main(int argc, char * argv)
{
int threshold = 1;
thrust::device_vector<int> S(6);
S[0] = 1;
S[1] = 2;
S[2] = 3;
S[3] = 4;
S[4] = 5;
S[5] = 6;
thrust::device_vector<int> A(6);
thrust::transform(S.begin(), S.end(), A.begin(), thresher<int>(threshold));
for (int i=0;i<6;i++)
{
std::cout << "A["<<i<<"]=" << A[i] << std::endl;
}
return 0;
}
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53386959%2fdetect-values-greater-than-threshold-in-an-array-and-store-result-in-a-binary1%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The required functionality can be achieved with a single call to thrust::transform
with a custom comparison functor. Here is an example of the said approach.
#include <thrust/execution_policy.h>
#include <thrust/device_vector.h>
#include <thrust/transform.h>
template<class T>
struct thresher
{
T _thresh;
thresher(T thresh) : _thresh(thresh) { }
__host__ __device__ int operator()(T &x) const
{
return int(x > _thresh);
}
};
int main(int argc, char * argv)
{
int threshold = 1;
thrust::device_vector<int> S(6);
S[0] = 1;
S[1] = 2;
S[2] = 3;
S[3] = 4;
S[4] = 5;
S[5] = 6;
thrust::device_vector<int> A(6);
thrust::transform(S.begin(), S.end(), A.begin(), thresher<int>(threshold));
for (int i=0;i<6;i++)
{
std::cout << "A["<<i<<"]=" << A[i] << std::endl;
}
return 0;
}
add a comment |
The required functionality can be achieved with a single call to thrust::transform
with a custom comparison functor. Here is an example of the said approach.
#include <thrust/execution_policy.h>
#include <thrust/device_vector.h>
#include <thrust/transform.h>
template<class T>
struct thresher
{
T _thresh;
thresher(T thresh) : _thresh(thresh) { }
__host__ __device__ int operator()(T &x) const
{
return int(x > _thresh);
}
};
int main(int argc, char * argv)
{
int threshold = 1;
thrust::device_vector<int> S(6);
S[0] = 1;
S[1] = 2;
S[2] = 3;
S[3] = 4;
S[4] = 5;
S[5] = 6;
thrust::device_vector<int> A(6);
thrust::transform(S.begin(), S.end(), A.begin(), thresher<int>(threshold));
for (int i=0;i<6;i++)
{
std::cout << "A["<<i<<"]=" << A[i] << std::endl;
}
return 0;
}
add a comment |
The required functionality can be achieved with a single call to thrust::transform
with a custom comparison functor. Here is an example of the said approach.
#include <thrust/execution_policy.h>
#include <thrust/device_vector.h>
#include <thrust/transform.h>
template<class T>
struct thresher
{
T _thresh;
thresher(T thresh) : _thresh(thresh) { }
__host__ __device__ int operator()(T &x) const
{
return int(x > _thresh);
}
};
int main(int argc, char * argv)
{
int threshold = 1;
thrust::device_vector<int> S(6);
S[0] = 1;
S[1] = 2;
S[2] = 3;
S[3] = 4;
S[4] = 5;
S[5] = 6;
thrust::device_vector<int> A(6);
thrust::transform(S.begin(), S.end(), A.begin(), thresher<int>(threshold));
for (int i=0;i<6;i++)
{
std::cout << "A["<<i<<"]=" << A[i] << std::endl;
}
return 0;
}
The required functionality can be achieved with a single call to thrust::transform
with a custom comparison functor. Here is an example of the said approach.
#include <thrust/execution_policy.h>
#include <thrust/device_vector.h>
#include <thrust/transform.h>
template<class T>
struct thresher
{
T _thresh;
thresher(T thresh) : _thresh(thresh) { }
__host__ __device__ int operator()(T &x) const
{
return int(x > _thresh);
}
};
int main(int argc, char * argv)
{
int threshold = 1;
thrust::device_vector<int> S(6);
S[0] = 1;
S[1] = 2;
S[2] = 3;
S[3] = 4;
S[4] = 5;
S[5] = 6;
thrust::device_vector<int> A(6);
thrust::transform(S.begin(), S.end(), A.begin(), thresher<int>(threshold));
for (int i=0;i<6;i++)
{
std::cout << "A["<<i<<"]=" << A[i] << std::endl;
}
return 0;
}
answered Nov 21 '18 at 6:26


sgarizvisgarizvi
12.3k84278
12.3k84278
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53386959%2fdetect-values-greater-than-threshold-in-an-array-and-store-result-in-a-binary1%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown