Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Svergun Group
galumph
Commits
b6872331
Verified
Commit
b6872331
authored
Mar 18, 2018
by
Chris Kerr
Browse files
Use a constant size for the copy
parent
83dd63b1
Pipeline
#3895
failed with stage
in 3 minutes and 31 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
galumph/cl-src/rotate-alm.cl.c
View file @
b6872331
...
...
@@ -223,7 +223,7 @@ __kernel void rotate_alm(__global const cfloat_t *restrict alm,
event_t
ev
=
0
;
const
size_t
i_L00_dlmm
=
(
L
+
1
)
*
(
4
*
L
*
L
-
L
)
/
6
;
const
size_t
dlmm_local_size
=
(
L
+
1
)
*
(
2
*
L
+
1
);
const
size_t
dlmm_local_size
=
(
L
MAX
+
1
)
*
(
2
*
L
MAX
+
1
);
ev
=
async_work_group_copy
(
dlmm_local
,
dlmm_global
+
i_L00_dlmm
,
dlmm_local_size
,
ev
);
wait_group_events
(
1
,
&
ev
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment