Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
V
vadere
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
110
Issues
110
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
3
Merge Requests
3
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
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
Hide 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