Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _handle_dtypes (0.12 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

            SetTensorShapeProto(subtype,
                                handle_shapes_attr.mutable_list()->add_shape());
          }
    
          (*node_def->mutable_attr())["_handle_dtypes"] = handle_dtypes_attr;
          (*node_def->mutable_attr())["_handle_shapes"] = handle_shapes_attr;
        }
      }
    
      TF_RETURN_IF_ERROR(
          SetShapeAttribute("_output_shapes", arg_type, node_def->mutable_attr()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    }
    
    Type GetTensorTypeForTensorList(Type element_type, TF::VariantType handle_dtype,
                                    PatternRewriter *rewriter) {
      // If the variant type in the output handle has item shape available, use it
      // to derive the output shape by setting unknown leading dimension.
      // Otherwise, result type will be of unranked type.
      if (handle_dtype.getSubtypes().empty()) {
        return UnrankedTensorType::get(element_type);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top