Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for X__val (0.2 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      if (shape_x.size() == shape_y.size()) {
        llvm::SmallVector<int64_t, 4> out_shape(shape_x.size());
        for (int i = 0; i < shape_x.size(); i++) {
          auto x_val = shape_x[i];
          auto y_val = shape_y[i];
          out_shape[i] = std::max(x_val, y_val);
        }
        return tensorflow::GetTypeFromTFTensorShape(out_shape, element_type);
      }
    
      auto shape_large = shape_x.size() > shape_y.size() ? shape_x : shape_y;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top