11use burn_tensor:: DType ;
22use cubecl:: {
33 matmul:: {
4- MatmulInputHandleRef , Strategy , SyncPartialReadingStrategy , SyncReadingStrategy ,
4+ MatmulInputHandleRef , Strategy , SyncLoadingStrategy , SyncPartialLoadingStrategy ,
55 components:: { AccG , MatmulKind } ,
66 kernels:: layered:: {
77 Selection , TileSizeSelection , double_buffering:: DoubleBufferingArgs ,
@@ -161,7 +161,7 @@ fn matmul_simple<R: CubeRuntime, E: MatmulElement>(
161161) -> Result < ( ) , String > {
162162 cubecl:: matmul:: launch_ref :: < R , E > (
163163 & Strategy :: Simple (
164- SyncReadingStrategy :: Cyclic ,
164+ SyncLoadingStrategy :: Cyclic ,
165165 Selection :: Inferred ( SimpleArgs { multi_rows : false } ) ,
166166 ) ,
167167 & lhs. client ,
@@ -179,7 +179,7 @@ fn matmul_simple_multi_rows<R: CubeRuntime, E: MatmulElement>(
179179) -> Result < ( ) , String > {
180180 cubecl:: matmul:: launch_ref :: < R , E > (
181181 & Strategy :: Simple (
182- SyncReadingStrategy :: Cyclic ,
182+ SyncLoadingStrategy :: Cyclic ,
183183 Selection :: Inferred ( SimpleArgs { multi_rows : true } ) ,
184184 ) ,
185185 & lhs. client ,
@@ -197,7 +197,7 @@ fn matmul_double_buffering<R: CubeRuntime, E: MatmulElement>(
197197) -> Result < ( ) , String > {
198198 cubecl:: matmul:: launch_ref :: < R , E > (
199199 & Strategy :: DoubleBuffering (
200- SyncPartialReadingStrategy :: Tilewise ,
200+ SyncPartialLoadingStrategy :: Tilewise ,
201201 Selection :: Inferred ( DoubleBufferingArgs { specialized : false } ) ,
202202 ) ,
203203 & lhs. client ,
@@ -215,7 +215,7 @@ fn matmul_double_buffering_specialized<R: CubeRuntime, E: MatmulElement>(
215215) -> Result < ( ) , String > {
216216 cubecl:: matmul:: launch_ref :: < R , E > (
217217 & Strategy :: DoubleBuffering (
218- SyncPartialReadingStrategy :: Tilewise ,
218+ SyncPartialLoadingStrategy :: Tilewise ,
219219 Selection :: Inferred ( DoubleBufferingArgs { specialized : true } ) ,
220220 ) ,
221221 & lhs. client ,
0 commit comments