Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
avx-512-sort
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Berenger Bramas
avx-512-sort
Commits
d7589e77
Commit
d7589e77
authored
Jul 25, 2017
by
Berenger Bramas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update for skylake and add function to sort pair of integers
parent
42f6a711
Pipeline
#15521
passed with stage
in 22 seconds
Changes
3
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6865 additions
and
1 deletion
+6865
-1
sort512.hpp
sort512.hpp
+5
-1
sort512kv.hpp
sort512kv.hpp
+6182
-0
sort512test.cpp
sort512test.cpp
+678
-0
No files found.
sort512.hpp
View file @
d7589e77
//////////////////////////////////////////////////////////
/// Code to sort an array of integer or double
/// using avx 512 (targeting intel KNL).
/// using avx 512 (targeting intel KNL
/SKL
).
/// By berenger.bramas@mpcdf.mpg.de 2017.
/// Licence is MIT.
/// Comes without any warranty.
...
...
@@ -14,8 +14,12 @@
/// (should be less than 16 AVX512 vectors)
///
/// To compile such flags can be used to enable avx 512 and openmp:
/// - KNL
/// Gcc : -mavx512f -mavx512pf -mavx512er -mavx512cd -fopenmp
/// Intel : -xCOMMON-AVX512 -xMIC-AVX512 -qopenmp
/// - SKL
/// Gcc : -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -fopenmp
/// Intel : -xCOMMON-AVX512 -xCORE-AVX512 -qopenmp
//////////////////////////////////////////////////////////
#ifndef SORT512_HPP
#define SORT512_HPP
...
...
sort512kv.hpp
0 → 100644
View file @
d7589e77
This diff is collapsed.
Click to expand it.
sort512test.cpp
View file @
d7589e77
This diff is collapsed.
Click to expand it.
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