mirror of
https://github.com/amd/blis.git
synced 2026-05-11 09:39:59 +00:00
ZGEMV var 2 bug fix
- Fixed segmentation fault that was seen on non zen and non avx2 machines. - cntx object was not passed to the invoked kernel causing a seg fault. AMD-Internal: [CPUPL-3167] Change-Id: I2640d3f905e78398935cf6ed667b04a6418baa5d
This commit is contained in:
committed by
HariharaSudhan S
parent
9b9142644f
commit
2e6724262e
@@ -718,7 +718,7 @@ void bli_zgemv_unf_var2
|
||||
beta,
|
||||
y, incy,
|
||||
y_buf, buf_incy,
|
||||
NULL
|
||||
cntx
|
||||
);
|
||||
|
||||
/*
|
||||
@@ -737,7 +737,7 @@ void bli_zgemv_unf_var2
|
||||
n_elem,
|
||||
beta,
|
||||
y_buf, buf_incy,
|
||||
NULL
|
||||
cntx
|
||||
);
|
||||
}
|
||||
|
||||
@@ -783,7 +783,7 @@ void bli_zgemv_unf_var2
|
||||
n_elem,
|
||||
y_buf, buf_incy,
|
||||
y, incy,
|
||||
NULL
|
||||
cntx
|
||||
);
|
||||
|
||||
#ifdef BLIS_ENABLE_MEM_TRACING
|
||||
|
||||
Reference in New Issue
Block a user