Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for hasLink (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // taking the most specialized. This combines `10x?x?` and `?x?x8` into
      // `10x?x8`.
      if (!lhs_shape_type.hasRank()) {
        if (rhs_shape_type.hasRank()) {
          shape.append(rhs_shape_type.getShape().begin(),
                       rhs_shape_type.getShape().end());
          refined_shape = true;
        }
      } else if (rhs_shape_type.hasRank()) {
        for (auto shape_elts : llvm::enumerate(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::vector<int32_t> shape;
      if (tensor_type.hasRank()) {
        llvm::ArrayRef<int64_t> shape_ref = tensor_type.getShape();
        shape = std::vector<int32_t>(shape_ref.begin(), shape_ref.end());
      }
    
      variant_params.push_back(
          tflite::CreateVariantSubType(builder_, builder_.CreateVector(shape),
                                       tflite_element_type, tensor_type.hasRank()));
      return variant_params;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top