We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ac0ef5 commit 6afe388Copy full SHA for 6afe388
extension/llm/runner/text_decoder_runner.cpp
@@ -66,11 +66,6 @@ ::executorch::runtime::Result<executorch::aten::Tensor> TextDecoderRunner::step(
66
start_pos_tensor = from_blob(
67
&start_pos, sizes_vec, ::executorch::aten::ScalarType::Long);
68
}
69
- ET_LOG(
70
- Info,
71
- "Start pos tensor numel: %zu, tokens numel: %zu",
72
- start_pos_tensor->numel(),
73
- tokens->numel());
74
auto outputs_res = module_->forward({tokens, start_pos_tensor});
75
ET_CHECK_OK_OR_RETURN_ERROR(outputs_res.error());
76
ET_CHECK_MSG(
0 commit comments