Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for tf_saved_model (0.23 sec)

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

    using ::mlir::TensorType;
    using ::mlir::tf_saved_model::AssetOp;
    using ::mlir::tf_saved_model::GlobalTensorOp;
    using ::mlir::tf_saved_model::kTfSavedModelExportedNamesAttr;
    using ::mlir::tf_saved_model::kTfSavedModelIndexPathAttr;
    using ::mlir::tf_saved_model::kTfSavedModelInitializerInitType;
    using ::mlir::tf_saved_model::kTfSavedModelInitializerRestoreType;
    using ::mlir::tf_saved_model::kTfSavedModelInitializerTypeAttr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          self-contained.
          For example, this would transform
    
          "tf_saved_model.global_tensor"() { sym_name = "v" ... }
          func @f(%arg0 {tf_saved_model.bound_input = @v}) {
            %1 = "tf.ReadVariableOp"(%arg0)
            ...
          }
    
          to
    
          func @f(%arg0 {tf_saved_model.bound_input = @v}) {
            %0 = "tf.VarHandleOp"(sym_name = "v")
            %1 = "tf.ReadVariableOp"(%0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        pool_params.computed.padding = TfLitePaddingValues{0, 0, 0, 0};
        return pool_params;
      }
    
      return std::nullopt;
    }
    
    namespace {
    
    using ::mlir::tf_saved_model::kTfSavedModelExportedNamesAttr;
    using ::mlir::tf_saved_model::kTfSavedModelIndexPathAttr;
    
    // Helper struct that wraps inputs/outputs of a single SignatureDef.
    struct SignatureDefData {
      // Note, we are using maps here to make order deterministic
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

    // -----
    
    // Tests about we create the dependency PwStreamResults `start` and `end`
    // within in XlaCallModule
    func.func @_pws_program(%arg0: tensor<i32> {tf_saved_model.index_path = ["arg0"]}) -> (tensor<i32> {tf_saved_model.index_path = ["result0"]}, tensor<i32> {tf_saved_model.index_path = ["result1"]}) attributes {pws.program_id = 4722582128360897113 : i64, tf.entry_function = {}} {
      // expected-remark@above {{ID: 7}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
Back to top