Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
vadere
vadere
Commits
dbb6b563
Commit
dbb6b563
authored
Jul 09, 2018
by
Benedikt Zoennchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reduce the local work group size for bitonic sort such that the test does not fail.
parent
08d978f0
Pipeline
#61192
failed with stage
in 20 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
VadereUtils/resources/BitonicSort.cl
VadereUtils/resources/BitonicSort.cl
+1
-1
VadereUtils/src/org/vadere/util/opencl/CLBitonicSort.java
VadereUtils/src/org/vadere/util/opencl/CLBitonicSort.java
+1
-1
No files found.
VadereUtils/resources/BitonicSort.cl
View file @
dbb6b563
...
...
@@ -9,7 +9,7 @@
*
*/
#
define
LOCAL_SIZE_LIMIT
25
6U
#
define
LOCAL_SIZE_LIMIT
1
6U
inline
void
ComparatorPrivate
(
uint
*keyA,
...
...
VadereUtils/src/org/vadere/util/opencl/CLBitonicSort.java
View file @
dbb6b563
...
...
@@ -93,7 +93,7 @@ public class CLBitonicSort {
private
int
[]
resultKeys
;
//Note: logically shared with BitonicSort.cl!
private
static
final
int
LOCAL_SIZE_LIMIT
=
25
6
;
private
static
final
int
LOCAL_SIZE_LIMIT
=
1
6
;
private
boolean
debug
=
false
;
...
...
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