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:
Harihara Sudhan S
2023-04-04 09:56:51 +05:30
committed by HariharaSudhan S
parent 9b9142644f
commit 2e6724262e

View File

@@ -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