Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 131 for checkPrint (0.13 sec)

  1. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

        if (maybe_serialized_tensor.name() == name) {
          return &maybe_serialized_tensor;
        }
      }
      return nullptr;
    }
    
    // This function reads the Checkpoint embedded in the SavedModel, and calls the
    // appropriate Restore ops on each of the variables.
    // Note(bmzhao): Conceptually, objects that contain checkpointable state
    // implement the "_gather_saveables_for_checkpoint" method
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/manager_test.go

    	as.Equal(len(expectedDevs), len(devInstances))
    	for _, deviceID := range expectedDevs {
    		_, ok := devInstances[deviceID]
    		as.True(ok)
    	}
    }
    
    func constructDevices(devices []string) checkpoint.DevicesPerNUMA {
    	ret := checkpoint.DevicesPerNUMA{}
    	for _, dev := range devices {
    		ret[0] = append(ret[0], dev)
    	}
    	return ret
    }
    
    // containerAllocateResponseBuilder is a helper to build a ContainerAllocateResponse
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/exported_model.proto

      string init_node_name = 2;
    
      // Path to the directory where checkpoint files are saved. This directoy is
      // not expected to be persistent (usually a temporary directory). When
      // fetching the restore op (see `restore_node_name`), this value is provided
      // to the "file_prefix" tensor to identify the checkpoint directory.
      string checkpoint_dir = 5;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 06:12:59 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

      bool duplicate_shape_determining_constants = true;
    
      // If set to `true`, unfreezes constants into variables and saves them to a
      // checkpoint file. Setting this to `true` is an experimental feature that has
      // no stability guarantees.
      bool unfreeze_constants = false;
    
      // Path to the directory where checkpoint files are saved.
      std::string checkpoint_dir = "";
    
      // Name used to identify the ModuleOp this is exporting. Only used for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. pkg/kubelet/server/auth_test.go

    	testPaths := map[string]string{
    		"/attach/{podNamespace}/{podID}/{containerName}":       "proxy",
    		"/attach/{podNamespace}/{podID}/{uid}/{containerName}": "proxy",
    		"/checkpoint/{podNamespace}/{podID}/{containerName}":   "checkpoint",
    		"/configz": "proxy",
    		"/containerLogs/{podNamespace}/{podID}/{containerName}": "proxy",
    		"/debug/flags/v":                                     "proxy",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 18:09:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/dra/manager.go

    			claimInfo.addPodReference(pod.UID)
    
    			// Checkpoint to ensure all claims we plan to prepare are tracked.
    			// If something goes wrong and the newly referenced pod gets
    			// deleted without a successful prepare call, we will catch
    			// that in the reconcile loop and take the appropriate action.
    			if err := m.cache.syncToCheckpoint(); err != nil {
    				return fmt.Errorf("failed to checkpoint claimInfo state: %w", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/manager.go

    	}
    	data := checkpoint.New(m.podDevices.toCheckpointData(),
    		registeredDevs)
    	m.mutex.Unlock()
    	err := m.checkpointManager.CreateCheckpoint(kubeletDeviceManagerCheckpoint, data)
    	if err != nil {
    		err2 := fmt.Errorf("failed to write checkpoint file %q: %v", kubeletDeviceManagerCheckpoint, err)
    		klog.InfoS("Failed to write checkpoint file", "err", err)
    		return err2
    	}
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables_test.cc

          SaveVariablesToCheckpoint(*checkpoint_prefix, *module_op_ref);
      EXPECT_TRUE(variable_shared_names.ok());
      EXPECT_THAT(*variable_shared_names, IsEmpty());
    
      // Verify that the checkpoint doesn't exist.
      BundleReader bundle_reader(env_, *checkpoint_prefix);
      EXPECT_THAT(bundle_reader.status(), Not(IsOk()));
    }
    
    TEST_F(SaveVariablesToCheckpointTest,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/ops/restore_ops.cc

      AbstractTensorPtr tensor(ctx->CreateStringScalar(s));
      if (tensor.get() == nullptr) {
        return errors::Internal(
            "Failed to create scalar string tensor for checkpoint restore");
      }
    
      out->reset(ctx->CreateLocalHandle(tensor.get()));
      return Status();
    }
    
    // Creates a Rank 1 string tensorhandle containing a single string `s`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/testing/DaemonsStateCheckpoint.groovy

     * limitations under the License.
     */
    package org.gradle.launcher.daemon.testing
    
    /**
     * Represents a particular expected registry state, and optionally a series of
     * actions to perform when the checkpoint is reached.
     */
    class DaemonsStateCheckpoint {
    
        final DaemonsState expectedState
        private final Runnable[] actions
    
        DaemonsStateCheckpoint(DaemonsState expectedState, Runnable... actions) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top