Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Henning Fehrmann
NVidia_AMD_Bench
Commits
01429d6a
Commit
01429d6a
authored
Jan 29, 2021
by
Henning Fehrmann
Committed by
Henning Fehrmann
Jan 29, 2021
Browse files
outsource parts which are also needed for FFTWs
parent
d3142d28
Changes
1
Hide whitespace changes
Inline
Side-by-side
blas.c
View file @
01429d6a
...
...
@@ -16,11 +16,11 @@
*/
#include "hardware_settings.h"
#include "profiler.h"
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#include <omp.h>
#define __MALLOC(P, size) P = malloc(size); \
...
...
@@ -34,73 +34,6 @@ size_t m = 10000;
size_t
n
=
10000
;
size_t
k
=
10000
;
static
unsigned
long
x
=
123456789
,
y
=
362436069
,
z
=
521288629
;
unsigned
long
xorshf96
(
void
)
{
// NOT thread save
unsigned
long
t
;
x
^=
x
<<
16
;
x
^=
x
>>
5
;
x
^=
x
<<
1
;
t
=
x
;
x
=
y
;
y
=
z
;
z
=
t
^
x
^
y
;
return
z
;
}
struct
runtime
{
struct
timespec
start
;
struct
timespec
stop
;
char
tag
[
128
];
};
void
timer_start
(
struct
runtime
*
timer
,
char
tag
[
128
]
)
{
struct
timespec
start
;
sprintf
(
timer
->
tag
,
"%s"
,
tag
);
clock_gettime
(
CLOCK_REALTIME
,
&
start
);
timer
->
start
=
start
;
// printf("--------> start timer: %s\n", timer->tag);
}
double
timer_stop
(
struct
runtime
*
timer
)
{
struct
timespec
stop
;
clock_gettime
(
CLOCK_REALTIME
,
&
stop
);
timer
->
stop
=
stop
;
double
res
=
(
double
)
(
(
timer
->
stop
).
tv_sec
-
(
timer
->
start
).
tv_sec
)
*
1000
.
+
(
double
)
(
(
timer
->
stop
).
tv_nsec
-
(
timer
->
start
).
tv_nsec
)
/
1000000
.
;
// printf("--------> stop timer %s: %g ms\n", timer->tag, res );
return
res
;
}
void
multiplication
(
...
...
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