Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for unconditionally_use_set_output_shapes (0.65 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.h

      // not always set correctly (which is undesirable and should be addressed)
      // so make it opt-in to consider it unconditionally also when importing the
      // graph.
      bool unconditionally_use_set_output_shapes = false;
      // If set, use the value as the device type and mark the function graph for
      // XLA compilation.
      string xla_compile_device_type;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:56:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        // added correctly.
        GraphImportConfig specs;
        specs.enable_shape_inference = specs_.enable_shape_inference;
        specs.unconditionally_use_set_output_shapes =
            specs_.unconditionally_use_set_output_shapes;
        for (const auto& name_and_value : func_def->attr()) {
          if (name_and_value.first == "_input_shapes") {
            auto& list = name_and_value.second.list();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      // Some graphs may require _output_shapes (an unregistered attribute)
      // to override shapes. It is unfortunately not always set correctly so only
      // do it optionally.
      config.unconditionally_use_set_output_shapes =
          unconditionally_use_set_output_shapes;
      return ConvertGraphToMlir(graph, debug_info, flib_def, config, context);
    }
    
    Status BuildHloFromGraph(
        const Graph& graph, xla::XlaBuilder& builder,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
Back to top