Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for op_count_map (0.14 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/op_stat_pass.cc

                                  op_with_dialect_count_[op_with_dialect_name]);
        }
    
        auto op_count_map = op_dtype_count_[op_with_dialect_name];
        if (!op_count_map.empty()) {
          std::string delim;
          *os_ << "  (";
          for (const auto &[dtype, cnt] : op_count_map) {
            *os_ << delim << absl::StrFormat("%s: %d", dtype, cnt);
            delim = ", ";
          }
          *os_ << ")";
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top