Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
ScalFMM
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
5
Issues
5
List
Boards
Labels
Milestones
Packages
Packages
Container Registry
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
solverstack
ScalFMM
79afdbe206130df27549d26abad1239477843813
79afdbe206130df27549d26abad1239477843813
Switch branch/tag
ScalFMM
CMakeModules
checkAVX2pe.cpp
Find file
Normal view
History
Permalink
checkAVX2pe.cpp
105 Bytes
Edit
Web IDE
Newer
Older
add avx2 support for phi coprocessor
a332bdd8
rue
committed
Mar 31, 2015
1
2
3
4
5
6
7
8
9
10
11
12
#include "immintrin.h"
int
main
()
{
#ifdef __MIC__
__m512
tx
,
ty
;
tx
+=
ty
;
#endif
return
0
;
}