Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for target_var_handle_ops (0.27 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_restore_op.cc

        return;
      }
    
      std::vector<TF::VarHandleOp> target_var_handle_ops =
          CollectVariableOps(session_init_func);
      if (target_var_handle_ops.empty()) {
        LOG(INFO) << "There are no VarHandleOps to restore. RestoreV2 op will not "
                     "be created.";
        return;
      }
    
      CreateRestoreV2Op(target_var_handle_ops, session_init_func);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 12 06:02:20 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_save_op.cc

        return;
      }
    
      SmallVector<TF::VarHandleOp> target_var_handle_ops =
          CollectVariableOps(session_init_func);
      if (target_var_handle_ops.empty()) {
        LOG(INFO) << "There are no VarHandleOps to save. SaveV2 op will not "
                     "be created.";
        return;
      }
    
      CreateSaveFunc(module_op, target_var_handle_ops);
    }
    
    static PassRegistration<InsertSaveOpPass> pass{};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top