Skip to content

Commit 08da10e

Browse files
authored
[BLAS] Fix the parameter order of iamin in arm backend (#659)
Signed-off-by: Jiang, Zhiwei <zhiwei.jiang@intel.com>
1 parent 20ba6fd commit 08da10e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/blas/backends/armpl/armpl_level1.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ DOTU_USM_LAUNCHER(std::complex<double>, ::cblas_zdotu_sub)
565565

566566
template <typename T, typename CBLAS_FUNC>
567567
sycl::event iamin(sycl::queue& queue, int64_t n, const T* x, int64_t incx, int64_t* result,
568-
const std::vector<sycl::event>& dependencies, oneapi::math::index_base base,
568+
oneapi::math::index_base base, const std::vector<sycl::event>& dependencies,
569569
CBLAS_FUNC cblas_func) {
570570
auto done = queue.submit([&](sycl::handler& cgh) {
571571
int64_t num_events = dependencies.size();

0 commit comments

Comments
 (0)