Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions runtime/executor/method.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -963,8 +963,8 @@ Method::set_output_data_ptr(void* buffer, size_t size, size_t output_idx) {
if (tensor_meta->is_memory_planned()) {
ET_LOG(
Error,
"Output %zu is memory planned, or is a constant. Cannot override \
the existing data pointer.",
"Output %zu is memory planned, or is a constant. Cannot override "
"the existing data pointer.",
output_idx);
return Error::InvalidState;
}
Expand Down
Loading