Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for unconditionally_use_set_output_shapes (0.66 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

      specs.upgrade_legacy = import_options.upgrade_legacy;
      specs.enable_shape_inference = import_options.enable_shape_inference;
      specs.unconditionally_use_set_output_shapes =
          import_options.unconditionally_use_set_output_shapes;
      specs.xla_compile_device_type = import_options.xla_compile_device_type;
      specs.enable_soft_placement = import_options.enable_soft_placement;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

            input_filename, tags, exported_names, context,
            /*unconditionally_use_set_output_shapes=*/true);
        if (!module_or.status().ok()) return module_or.status();
        return std::move(module_or).value();
      } else if (saved_model_version == 1) {
        MLIRImportOptions options;
        options.upgrade_legacy = specs.upgrade_legacy;
        options.unconditionally_use_set_output_shapes = true;
        options.lift_variables = enable_variable_lifting;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.cc

      ss << "\nrestrict_functionalization_to_compiled_nodes: "
         << restrict_functionalization_to_compiled_nodes;
      ss << "\nenable_shape_inference: " << enable_shape_inference;
      ss << "\nunconditionally_use_set_output_shapes: "
         << unconditionally_use_set_output_shapes;
      ss << "\nxla_compile_device_type: " << xla_compile_device_type;
    
      return ss.str();
    }
    
    Status ParseOutputArrayInfo(absl::string_view array_names,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. 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