Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
tvorogme committed Jan 29, 2024
1 parent 9e673c0 commit 79002a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tvm-python/PyCell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ std::string PyCell::dump_as_tlb(std::string tlb_type) const {
throw std::invalid_argument("Parse tlb error: not valid tlb type");
}

std::stringstream ss;
std::ostringstream ss;
_template->print_ref(9 << 20, ss, my_cell);

auto output = ss.str();
Expand Down
2 changes: 1 addition & 1 deletion tvm-python/PyCellBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ std::string PyCellBuilder::dump_as_tlb(std::string tlb_type) const {
throw std::invalid_argument("Parse tlb error: not valid tlb type");
}

std::stringstream ss;
std::ostringstream ss;
_template->print_ref(9 << 20, ss, my_builder.finalize_copy());

auto output = ss.str();
Expand Down
2 changes: 1 addition & 1 deletion tvm-python/PyCellSlice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ std::string PyCellSlice::dump_as_tlb(std::string tlb_type) const {
vm::CellBuilder cb;
cb.append_cellslice(my_cell_slice.clone());

std::stringstream ss;
std::ostringstream ss;
_template->print_ref(9 << 20, ss, cb.finalize_copy());

auto output = ss.str();
Expand Down

0 comments on commit 79002a1

Please sign in to comment.