Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 143 for tf_saved_model (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h

      static StringRef getDialectNamespace() { return "tf_saved_model"; }
    };
    
    }  // namespace tf_saved_model
    }  // namespace mlir
    
    // Declares the operations for this dialect using the generated header.
    #define GET_OP_CLASSES
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h.inc"
    
    namespace mlir {
    namespace tf_saved_model {
    
    // Returns the list of exported names for `op`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 03:21:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/remove_var_init_by_const.mlir

    // CHECK-LABEL: module
    module attributes {tf_saved_model.semantics} {
      "tf_saved_model.session_initializer"() {initializers = [@init_func_restore_op]} : () -> ()
      // CHECK: "tf_saved_model.session_initializer"()
      // CHECK-SAME: initializers = [@init_func_restore_op]
    
      func.func @init_func_restore_op() -> () attributes {
          tf_saved_model.initializer_type = "restore_op",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_test.cc

        module attributes {tf_saved_model.semantics} {
          "tf_saved_model.session_initializer"() {initializers = [@init_func1, @init_func2]} : () -> ()
    
          func.func @init_func1() attributes {tf_saved_model.exported_names = ["init_func1"], tf_saved_model.initializer_type = "init_op"} {
            func.return
          }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 01 05:03:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/signature_with_multiple_entry_points.mlir

    // CHECK: func @add(
    // CHECK-SAME: {tf_saved_model.index_path = ["input1"]}
    // CHECK-SAME: {tf_saved_model.index_path = ["input2"]}
    // CHECK-SAME: {tf_saved_model.index_path = ["result"]}
    // CHECK-SAME: tf.entry_function = {inputs = "input1:0,input2:0", outputs = "result:0"}
    // CHECK-SAME: tf_saved_model.exported_names = ["add"]
    
    // CHECK: func @sub(
    // CHECK-SAME: {tf_saved_model.index_path = ["input2"]}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:35:24 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_save_op.mlir

    module attributes {tf_saved_model.semantics} {
      "tf_saved_model.session_initializer"() {initializers = [@init_func_restore_op]} : () -> ()
    // SessionInitializerOp is untouched.
    // CHECK: "tf_saved_model.session_initializer"()
    // CHECK-SAME: {{.*initializers = \[@init_func_restore_op\].*}}
    
      func.func @init_func_restore_op() -> () attributes {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/convert_session_initializer_to_function.mlir

    // -----
    
    // CHECK-LABEL: with_initializer_type
    // CHECK-NOT: tf_saved_model.session_initializer
    // CHECK: func @session_initializer
    // CHECK: call @init1
    module @with_initializer_type attributes {tf_saved_model.semantics} {
    "tf_saved_model.session_initializer"() {initializers = [@init1]} : () -> ()
    func.func @init1() attributes {tf_saved_model.exported_names = ["init1"], tf_saved_model.initializer_type = "init_op"} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 02 16:24:00 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/lower_variable_ops_to_ml_program.mlir

    // CHECK-LABEL: module
    module attributes {tf_saved_model.semantics} {
      // CHECK: ml_program.global {{.*}} @vars.v
      // CHECK: ml_program.global {{.*}} @vars.bar
      "tf_saved_model.global_tensor"() { is_mutable, sym_name = "v", type = tensor<10xf32>, value = dense<[0.,1.,2.,3.,4.,5.,6.,7.,8.,9.]> : tensor<10xf32> } : () -> ()
      func.func @read(%arg0: tensor<!tf_type.resource<tensor<10xf32>>> {tf_saved_model.bound_input = @v})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 19 19:00:41 UTC 2022
    - 6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/structured_output.py

      # but this test serves as documentation of this behavior for the purposes
      # of tf_saved_model users.
      #
      # CHECK:      func {{@[a-zA-Z_0-9]+}}() -> (
      # CHECK-SAME:   tensor<1xf32> {tf_saved_model.index_path = [0]},
      # CHECK-SAME:   tensor<2xf32> {tf_saved_model.index_path = [1]})
      # CHECK-SAME: attributes {{.*}} tf_saved_model.exported_names = ["f0002_multiple_results_parentheses"]
      @tf.function(input_signature=[])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_savedmodel_passes.td

      let summary = "Freeze tf_saved_model.asset's in func bodies.";
      let constructor = "mlir::tf_saved_model::CreateFreezeAssetsPass()";
    }
    
    def DedupBoundInputBindingPass : Pass<"tf-saved-model-dedup-bound-input-binding-pass", "mlir::func::FuncOp"> {
      let summary = "Remove duplicate 'tf_saved_model.bound_input' bindings.";
      let constructor = "mlir::tf_saved_model::CreateDedupBoundInputBindingPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_ops.mlir

      "tf_saved_model.global_tensor"() {
        tf_saved_model.exported_names = ["some_const"],
        sym_name = "some_constant",
        type = tensor<1x64xf32>,
        value = dense<42.0> : tensor<1x64xf32>
      } : () -> ()
    
      // Representation for variables: mutable global tensor.
      // CHECK: tf_saved_model.global_tensor
      "tf_saved_model.global_tensor"() {
        is_mutable,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top