Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for enable_soft_placement (0.18 sec)

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

    // TODO(jpienaar): Temporary flag, flip default and remove.
    extern llvm::cl::opt<bool> enable_shape_inference;
    extern llvm::cl::opt<bool> unconditionally_use_set_output_shapes;
    extern llvm::cl::opt<bool> enable_soft_placement;
    extern llvm::cl::opt<bool> set_original_tf_func_name;
    
    // Export options.
    extern llvm::cl::opt<bool> export_entry_func_to_flib;
    extern llvm::cl::opt<bool> export_original_tf_func_name;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:59:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_registration.cc

          prune_unused_nodes,     convert_legacy_fed_inputs,
          graph_as_function,      upgrade_legacy,
          enable_shape_inference, unconditionally_use_set_output_shapes,
          enable_soft_placement,  set_original_tf_func_name};
    
      auto module_or = tensorflow::GraphdefToMlirTranslateFunction(
          input, input_arrays, input_dtypes, input_shapes, output_arrays,
          control_output_arrays, options, context);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.h

      bool prune_unused_nodes;
      bool convert_legacy_fed_inputs;
      bool graph_as_function;
      bool upgrade_legacy;
      bool enable_shape_inference;
      bool unconditionally_use_set_output_shapes;
      bool enable_soft_placement;
      bool set_original_tf_func_name = false;
    };
    
    // TODO(antiagainst): Directly manipulating files in library functions is not
    // a good idea. We should pass in a string/stream here.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_cl.cc

        llvm::cl::desc("Enable using the _output_shapes unconditionally on import "
                       "(temporary)"),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> enable_soft_placement(
        "tf-enable-soft-placement-on-import",
        llvm::cl::desc("Enable soft device placement on import."),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> set_original_tf_func_name(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:59:50 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.h

      // XLA compilation.
      string xla_compile_device_type;
      // If true, enables moving ops to different devices or moving unsupported ops
      // out of a compilation cluster.
      bool enable_soft_placement = false;
      // If true, a function attribute, `tf._original_func_name`, will be set in
      // functions which contains the corresponding original TF function name.
      bool set_original_tf_func_name = false;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:56:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top