Skip to content

Commit 203b87b

Browse files
committed
fixed linting
1 parent 277d695 commit 203b87b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/qualcomm/oss_scripts/llama/runner/io_manager.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,8 @@ void SmartMaskIoMgr::update_kv_io(
10631063
for (int i = 0; i < k_cache_in.size(); ++i) {
10641064
uint8_t* ptr_in = k_cache_in[i]->mutable_data<uint8_t>() + pos;
10651065
const uint8_t* ptr_out = k_cache_out[i]->data<uint8_t>();
1066-
for (size_t j = 0, offset = 0; j < head_dim_; ++j, offset += kv_cache_len_) {
1066+
for (size_t j = 0, offset = 0; j < head_dim_;
1067+
++j, offset += kv_cache_len_) {
10671068
ptr_in[offset] = ptr_out[j];
10681069
}
10691070
}

0 commit comments

Comments
 (0)