summaryrefslogtreecommitdiff
path: root/sci-libs/clblast/files/level2_xtrsv.patch
blob: c1e5890c986b9bb978c4d1f4022fc397065d9832 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
This fixes a bug in the upstream code.  There is an extra argument in
the call to the x_buffer.CopyToAsync function that must be removed. Otherwise
the build fails when CUDA is enabled.
--- CLBlast/src/routines/level2/xtrsv.cpp	2022-05-21 08:44:13.811816246 -0600
+++ CLBlast_fixed/src/routines/level2/xtrsv.cpp	2022-05-21 08:28:34.601124921 -0600
@@ -154,7 +154,7 @@
   }
 
   // Retrieves the results
-  x_buffer.CopyToAsync(queue_, x_size, b_buffer, event_);
+  x_buffer.CopyToAsync(queue_, x_size, b_buffer);
 }
 
 // =================================================================================================