We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
for example needs something that,
` struct Box { float3 v0; float3 v1;
Box() { v0 = float3(M_INF, M_INF, M_INF); v1 = float3(-M_INF, -M_INF, -M_INF); }
}; __declspec(align(16)) struct Node { int index; int offset; Box box;
Node() { index = -1; }
};
boost::compute::vector<Node> nodes(10, context);
Node node_default;
boost::compute::fill(nodes.begin(), nodes.end(), node_default, // compile error with that queue); `
how to fill array "nodes" with value "node_default" ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
for example needs something that,
`
struct Box {
float3 v0;
float3 v1;
};
__declspec(align(16))
struct Node {
int index;
int offset;
Box box;
};
boost::compute::vector<Node> nodes(10, context);
Node node_default;
boost::compute::fill(nodes.begin(), nodes.end(),
node_default, // compile error with that
queue);
`
how to fill array "nodes" with value "node_default" ?
The text was updated successfully, but these errors were encountered: