File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
mlx/backend/metal/kernels/steel/conv/loaders Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11repos :
22- repo : https://github.com/pre-commit/mirrors-clang-format
3- rev : v18.1.4
3+ rev : v18.1.8
44 hooks :
55 - id : clang-format
66# Using this mirror lets us use mypyc-compiled black, which is about 2x faster
77- repo : https://github.com/psf/black-pre-commit-mirror
8- rev : 24.4.2
8+ rev : 24.8.0
99 hooks :
1010 - id : black
1111- repo : https://github.com/pycqa/isort
Original file line number Diff line number Diff line change @@ -394,7 +394,7 @@ struct Conv2DWeightBlockLoader {
394394 const constant ImplicitGemmConv2DParams* gemm_params_,
395395 uint simd_group_id [[simdgroup_index_in_threadgroup]],
396396 uint simd_lane_id [[thread_index_in_simdgroup]])
397- : src_ld(params_ -> wt_strides[0 ]),
397+ : src_ld(params_-> wt_strides[0 ]),
398398 thread_idx(simd_group_id * 32 + simd_lane_id),
399399 bi(thread_idx / TCOLS),
400400 bj(vec_size * (thread_idx % TCOLS)),
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ struct Conv2DWeightBlockLoaderSmallChannels {
244244 const constant ImplicitGemmConv2DParams* gemm_params_,
245245 uint simd_group_id [[simdgroup_index_in_threadgroup]],
246246 uint simd_lane_id [[thread_index_in_simdgroup]])
247- : src_ld(params_ -> wt_strides[0 ]),
247+ : src_ld(params_-> wt_strides[0 ]),
248248 thread_idx(simd_group_id * 32 + simd_lane_id),
249249 bi(thread_idx / TCOLS),
250250 bj(vec_size * (thread_idx % TCOLS)),
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ struct Conv2DWeightBlockLoaderGeneral {
218218 const short base_ww_,
219219 uint simd_group_id [[simdgroup_index_in_threadgroup]],
220220 uint simd_lane_id [[thread_index_in_simdgroup]])
221- : src_ld(params_ -> wt_strides[0 ]),
221+ : src_ld(params_-> wt_strides[0 ]),
222222 thread_idx(simd_group_id * 32 + simd_lane_id),
223223 bi(thread_idx / TCOLS),
224224 bj(vec_size * (thread_idx % TCOLS)),
You can’t perform that action at this time.
0 commit comments