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
elpa
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
15
Issues
15
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Environments
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
elpa
elpa
Commits
edbfec87
Commit
edbfec87
authored
Aug 05, 2017
by
Andreas Marek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some prints only if WITH_DEBUG is defined
parent
307618f2
Changes
13
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
28 additions
and
3 deletions
+28
-3
src/elpa2/kernels/complex_avx-avx2_1hv_template.c
src/elpa2/kernels/complex_avx-avx2_1hv_template.c
+2
-0
src/elpa2/kernels/complex_avx-avx2_2hv_template.c
src/elpa2/kernels/complex_avx-avx2_2hv_template.c
+2
-0
src/elpa2/kernels/complex_avx512_1hv_template.c
src/elpa2/kernels/complex_avx512_1hv_template.c
+2
-0
src/elpa2/kernels/complex_avx512_2hv_template.c
src/elpa2/kernels/complex_avx512_2hv_template.c
+2
-2
src/elpa2/kernels/real_avx-avx2_2hv_template.c
src/elpa2/kernels/real_avx-avx2_2hv_template.c
+2
-0
src/elpa2/kernels/real_avx-avx2_4hv_template.c
src/elpa2/kernels/real_avx-avx2_4hv_template.c
+2
-0
src/elpa2/kernels/real_avx-avx2_6hv_template.c
src/elpa2/kernels/real_avx-avx2_6hv_template.c
+2
-0
src/elpa2/kernels/real_avx512_2hv_template.c
src/elpa2/kernels/real_avx512_2hv_template.c
+3
-0
src/elpa2/kernels/real_avx512_4hv_template.c
src/elpa2/kernels/real_avx512_4hv_template.c
+2
-0
src/elpa2/kernels/real_avx512_6hv_template.c
src/elpa2/kernels/real_avx512_6hv_template.c
+3
-0
src/elpa2/kernels/real_sse_2hv_template.c
src/elpa2/kernels/real_sse_2hv_template.c
+2
-1
src/elpa2/kernels/real_sse_4hv_template.c
src/elpa2/kernels/real_sse_4hv_template.c
+2
-0
src/elpa2/kernels/real_sse_6hv_template.c
src/elpa2/kernels/real_sse_6hv_template.c
+2
-0
No files found.
src/elpa2/kernels/complex_avx-avx2_1hv_template.c
View file @
edbfec87
...
...
@@ -294,10 +294,12 @@ void single_hh_trafo_complex_avx_avx2_1hv_single(float complex* q, float complex
worked_on
+=
4
;
}
#endif
#ifdef WITH_DEBUG
if
(
worked_on
!=
nq
)
{
printf
(
"Error in complex avx-avx2 BLOCK 1 kernel
\n
"
);
abort
();
}
#endif
}
...
...
src/elpa2/kernels/complex_avx-avx2_2hv_template.c
View file @
edbfec87
...
...
@@ -265,10 +265,12 @@ void double_hh_trafo_complex_avx_avx2_2hv_single(float complex* q, float complex
worked_on
+=
4
;
}
#endif
#ifdef WITH_DEBUG
if
(
worked_on
!=
nq
)
{
printf
(
"Error in complex avx-avx2 BLOCK 2 kernel
\n
"
);
abort
();
}
#endif
}
#ifdef DOUBLE_PRECISION_COMPLEX
...
...
src/elpa2/kernels/complex_avx512_1hv_template.c
View file @
edbfec87
...
...
@@ -268,11 +268,13 @@ void single_hh_trafo_complex_avx512_1hv_single(float complex* q, float complex*
worked_on
+=
8
;
}
#endif
#ifdef WITH_DEBUG
if
(
worked_on
!=
nq
)
{
printf
(
"Error in complex AVX512 BLOCK 1 kernel
\n
"
);
abort
();
}
#endif
}
#ifdef DOUBLE_PRECISION_COMPLEX
...
...
src/elpa2/kernels/complex_avx512_2hv_template.c
View file @
edbfec87
...
...
@@ -237,13 +237,13 @@ void double_hh_trafo_complex_avx512_2hv_single(float complex* q, float complex*
worked_on
+=
8
;
}
#endif
#ifdef WITH_DEBUG
if
(
worked_on
!=
nq
)
{
printf
(
"Error in complex AVX512 BLOCK 2 kernel
\n
"
);
abort
();
}
#endif
}
#ifdef DOUBLE_PRECISION_COMPLEX
...
...
src/elpa2/kernels/real_avx-avx2_2hv_template.c
View file @
edbfec87
...
...
@@ -310,11 +310,13 @@ void double_hh_trafo_real_avx_avx2_2hv_single(float* q, float* hh, int* pnb, int
worked_on
+=
8
;
}
#endif
#ifdef WITH_DEBUG
if
(
worked_on
!=
nq
)
{
printf
(
"Error in real avx/avx2 BLOCK 2 kernel
\n
"
);
abort
();
}
#endif
}
/**
...
...
src/elpa2/kernels/real_avx-avx2_4hv_template.c
View file @
edbfec87
...
...
@@ -297,11 +297,13 @@ void quad_hh_trafo_real_avx_avx2_4hv_single(float* q, float* hh, int* pnb, int*
}
#endif
#ifdef WITH_DEBUG
if
(
worked_on
!=
nq
)
{
printf
(
"Error in real AVX/AVX2 BLOCK4 kernel
\n
"
);
abort
();
}
#endif
}
/**
* Unrolled kernel that computes
...
...
src/elpa2/kernels/real_avx-avx2_6hv_template.c
View file @
edbfec87
...
...
@@ -335,11 +335,13 @@ void hexa_hh_trafo_real_avx_avx2_6hv_single(float* q, float* hh, int* pnb, int*
worked_on
+=
8
;
}
#endif
#ifdef WITH_DEBUG
if
(
worked_on
!=
nq
)
{
printf
(
"Error in real AVX/AVX2 BLOCK6 kernel
\n
"
);
abort
();
}
#endif
}
/**
...
...
src/elpa2/kernels/real_avx512_2hv_template.c
View file @
edbfec87
...
...
@@ -232,11 +232,14 @@ void double_hh_trafo_real_avx512_2hv_single(float* q, float* hh, int* pnb, int*
worked_on
+=
16
;
}
#endif
#ifdef WITH_DEBUG
if
(
worked_on
!=
nq
)
{
printf
(
"Error in AVX512 real BLOCK 2 kernel
\n
"
);
abort
();
}
#endif
}
/**
...
...
src/elpa2/kernels/real_avx512_4hv_template.c
View file @
edbfec87
...
...
@@ -276,11 +276,13 @@ void quad_hh_trafo_real_avx512_4hv_single(float* q, float* hh, int* pnb, int* pn
}
#endif
#ifdef WITH_DEBUG
if
(
worked_on
!=
nq
)
{
printf
(
"Error in AVX512 real BLOCK 2 kernel
\n
"
);
abort
();
}
#endif
}
/**
...
...
src/elpa2/kernels/real_avx512_6hv_template.c
View file @
edbfec87
...
...
@@ -340,11 +340,14 @@ void hexa_hh_trafo_real_avx512_6hv_single(float* q, float* hh, int* pnb, int* pn
worked_on
+=
16
;
}
#endif
#ifdef WITH_DEBUG
if
(
worked_on
!=
nq
)
{
printf
(
"ERROR in avx512 kernel
\n
"
);
abort
();
}
#endif
}
/**
...
...
src/elpa2/kernels/real_sse_2hv_template.c
View file @
edbfec87
...
...
@@ -260,12 +260,13 @@ void double_hh_trafo_real_sse_2hv_single(float* q, float* hh, int* pnb, int* pnq
worked_on
+=
4
;
}
#endif
#ifdef WITH_DEBUG
if
(
worked_on
!=
nq
)
{
printf
(
"Error in real SSE BLOCK2 kernel %d %d
\n
"
,
worked_on
,
nq
);
abort
();
}
#endif
}
/**
...
...
src/elpa2/kernels/real_sse_4hv_template.c
View file @
edbfec87
...
...
@@ -254,11 +254,13 @@ void quad_hh_trafo_real_sse_4hv_single(float* q, float* hh, int* pnb, int* pnq,
worked_on
+=
4
;
}
#endif
#ifdef WITH_DEBUG
if
(
worked_on
!=
nq
)
{
printf
(
"Error in real SSE BLOCK4 kernel
\n
"
);
abort
();
}
#endif
}
...
...
src/elpa2/kernels/real_sse_6hv_template.c
View file @
edbfec87
...
...
@@ -288,11 +288,13 @@ void hexa_hh_trafo_real_sse_6hv_single(float* q, float* hh, int* pnb, int* pnq,
worked_on
+=
4
;
}
#endif
#ifdef WITH_DEBUG
if
(
worked_on
!=
nq
)
{
printf
(
"Error in real SSE BLOCK6 kernel
\n
"
);
abort
();
}
#endif
}
/**
...
...
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