Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 131 for checkPrint (0.2 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables.cc

            "saved to checkpoint.");
        return "";
      }
    
      auto assigned_value_operand = assign_var_op.getOperand(1);
      auto const_op =
          llvm::dyn_cast<mlir::TF::ConstOp>(assigned_value_operand.getDefiningOp());
      if (!const_op) {
        assign_var_op->emitRemark(
            "Operand idx 1 is not a tf.ConstOp. The initializing tensor is not "
            "saved to checkpoint.");
        return "";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:36:55 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. pkg/kubelet/checkpointmanager/README.md

    |kubelet/dockershim | Feb 3, 2017 | [[CRI] Implement Dockershim Checkpoint](https://github.com/kubernetes/kubernetes/pull/39903)
    |devicemanager| Sep 6, 2017 | [Deviceplugin checkpoint](https://github.com/kubernetes/kubernetes/pull/51744)
    | kubelet/pod | Nov 22, 2017 | [Initial basic bootstrap-checkpoint support](https://github.com/kubernetes/kubernetes/pull/50984)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 16 05:30:20 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  3. pkg/kubelet/checkpointmanager/errors/errors.go

    package errors
    
    import "fmt"
    
    // ErrCorruptCheckpoint error is reported when checksum does not match
    var ErrCorruptCheckpoint = fmt.Errorf("checkpoint is corrupted")
    
    // ErrCheckpointNotFound is reported when checkpoint is not found for a given key
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 16 05:30:20 UTC 2018
    - 886 bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/bundle_v2.cc

          bundle_reader->Lookup(kObjectGraphProtoKey, &object_graph_tensor),
          "SavedModel checkpoint does not contain object graph.");
      if (object_graph_tensor.dtype() != DT_STRING ||
          object_graph_tensor.dims() != 0 ||
          object_graph_tensor.NumElements() != 1) {
        return absl::Status(
            absl::StatusCode::kFailedPrecondition,
            "SavedModel checkpoint object graph was not the correct type.");
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/constants.h

    // Name of the TensorFlow Operation to be fetched to save the variables to
    // checkpoint. This save op follows the SavedModel's load semantics, so it
    // should return the file prefix of the checkpoint as a string tensor.
    inline constexpr StringRef kTfQuantSaveOpName = "tf_quant__save_op";
    
    // Name the file prefix string tensor. The tensor is used to identify the prefix
    // to the checkpoint where the variables are saved / loaded. This may be present
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 13 02:55:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/state/testing/util.go

    limitations under the License.
    */
    
    package testing
    
    import "k8s.io/kubernetes/pkg/kubelet/checkpointmanager"
    
    var _ checkpointmanager.Checkpoint = &MockCheckpoint{}
    
    // MockCheckpoint struct is used for mocking checkpoint values in testing
    type MockCheckpoint struct {
    	Content string
    }
    
    // MarshalCheckpoint returns fake content
    func (mc *MockCheckpoint) MarshalCheckpoint() ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 15 16:34:53 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/testing/DaemonsEventSequence.groovy

     * <p>
     * This works by watching a daemon registry in a background thread, recording each state change.
     * As the state changes, it is tested against the next checkpoint. If the state of the checkpoint matches,
     * then the process repeats with the next checkpoint (until all checkpoints are passed).
     *
     * If there is no state change detected in a specified interval, an assertion error will be thrown.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/io_ops.h

    #include "tensorflow/c/eager/abstract_context.h"
    #include "tensorflow/c/eager/abstract_tensor_handle.h"
    
    namespace tensorflow {
    namespace ops {
    
    // Restores tensors from a V2 checkpoint.
    Status RestoreV2(AbstractContext* ctx, AbstractTensorHandle* const prefix,
                     AbstractTensorHandle* const tensor_names,
                     AbstractTensorHandle* const shape_and_slices,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 17:54:34 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libexport/load.h

      // Reads and returns a checkpoint key associated with a variable.
      //
      // The variable is identified by the index in the object graph node list.
      //
      // RestoreV2 is the operation that will ultimately be responsible for reading
      // and restoring the variable(s)' values.  Variable values are indexed in the
      // checkpoint files by "checkpoint keys".  These keys along with dtype and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 06:33:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/cases/map.go

    // returns whether a checkpoint is possible: whether the pDst bytes written to
    // dst so far won't need changing as we see more source bytes.
    type mapFunc func(*context) bool
    
    // A spanFunc takes a context set to the current rune and returns whether this
    // rune would be altered when written to the output. It may advance the context
    // to the next rune. It returns whether a checkpoint is possible.
    type spanFunc func(*context) bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top