Skip to content

Commit ce0902f

Browse files
authored
Merge branch 'main' into kirk-use-trimmean
2 parents a622dc1 + 2ee3ffa commit ce0902f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

devtools/etdump/etdump_flatcc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ void ETDumpGen::set_debug_buffer(Span<uint8_t> buffer) {
503503
Result<BufferDataSink> bds_ret = BufferDataSink::create(buffer);
504504
ET_CHECK_MSG(
505505
bds_ret.ok(),
506-
"Failed to write tensor with error 0x%" PRIx32,
506+
"Failed to create data sink from debug buffer with error 0x%" PRIx32,
507507
static_cast<uint32_t>(bds_ret.error()));
508508

509509
buffer_data_sink_ = std::move(bds_ret.get());

examples/qualcomm/oss_scripts/llama/model/static_llama.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ def get_metadata(self):
461461
"get_bos_id": 1,
462462
"get_eos_id": 2,
463463
"get_dim": self.dim,
464-
"get_head_dim": self.dim // self.n_heads,
464+
"get_head_dim": self.head_dim,
465465
"get_max_batch_size": self.max_batch_size,
466466
"get_max_seq_len": self.max_seq_len,
467467
"get_n_bos": 1,

0 commit comments

Comments
 (0)