Skip to content

Commit 3db2682

Browse files
ZephyrUserBujSet
authored andcommitted
Testing minimal change undo to see if hang resolves
1 parent 8dd6af7 commit 3db2682

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/executor/tensor_parser_exec_aten.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ ET_NODISCARD Result<void*> getMemPlannedPtr(
6363
"size_t cannot hold memory offset 0x%08" PRIx32 ".%08" PRIx32,
6464
memory_offset_high,
6565
memory_offset_low);
66-
// memory_offset |= static_cast<size_t>(memory_offset_high) << 32;
66+
memory_offset |= static_cast<size_t>(memory_offset_high) << 32;
6767
}
6868
return allocator->get_offset_address(memory_id, memory_offset, nbytes);
6969
}

0 commit comments

Comments
 (0)