Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
solverstack
mini-examples
starpu_example_dgemm
Commits
b887214c
Commit
b887214c
authored
Dec 17, 2021
by
Antoine Jego
Browse files
using col major blas
parent
490acc03
Changes
1
Hide whitespace changes
Inline
Side-by-side
starpu_example_dgemm.c
View file @
b887214c
...
...
@@ -296,7 +296,7 @@ static void cpu_gemm(void *handles[], void *args)
alpha
=
clargs
->
alpha
;
beta
=
clargs
->
beta
;
}
double
start
=
starpu_timing_now
();
cblas_dgemm
(
Cblas
Row
Major
,
CblasNoTrans
,
CblasNoTrans
,
// 2
cblas_dgemm
(
Cblas
Col
Major
,
CblasNoTrans
,
CblasNoTrans
,
// 2
n_row_C
,
n_col_C
,
n_col_A
,
alpha
,
block_A
,
ld_A
,
block_B
,
// 9
ld_B
,
beta
,
block_C
,
ld_C
);
// 13
double
stop
=
starpu_timing_now
();
...
...
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