Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit d42f242f authored by vinciguerra_a's avatar vinciguerra_a
Browse files

Use 2^n points per axis

parent 6f6c1214
No related branches found
No related tags found
1 merge request!74Implement inner product
......@@ -12,7 +12,7 @@ int main(int argc, char *argv[]) {
int pt = 4;
if (argc == 2) {
pt = (int)strtol(argv[1], NULL, 10);
pt = 1 << (int)strtol(argv[1], NULL, 10);
}
constexpr unsigned int dim = 3;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment