Skip to content

Commit

Permalink
remove debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
zpcore committed Oct 31, 2023
1 parent 2e0804e commit c93ef1e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions torch_xla/csrc/data_ops.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,6 @@ std::vector<int64_t> BuildSqueezedDimensions(
std::sort(squeeze_dims.begin(), squeeze_dims.end());
std::vector<int64_t> output_dimensions;
size_t i = 0;
std::vector<int64_t> tmp(dimensions.begin(), dimensions.end());
std::cout << "in: " << tmp << " seq: " << squeeze_dims << std::endl;
for (size_t j = 0; j < dimensions.size(); j++) {
auto dim = dimensions[j];
if (i == squeeze_dims.size() || j < squeeze_dims[i]) {
Expand Down

0 comments on commit c93ef1e

Please sign in to comment.