Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 113 for Updatef (0.31 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize.cc

            // This filter goes through quantize and dequantize ops. Then we just
            // need to update the weight to the quantize op.
            filter.replaceAllUsesWith(new_filter_op);
          } else {
            // This filter doesn't go through quantize and dequantize ops, Then
            // we update the weight of the affine op directly.
            fc_op.setOperand(1, new_filter_op);
          }
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //
    // The -u flag instructs get to update modules providing dependencies
    // of packages named on the command line to use newer minor or patch
    // releases when available.
    //
    // The -u=patch flag (not -u patch) also instructs get to update dependencies,
    // but changes the default to select patch releases.
    //
    // When the -t and -u flags are used together, get will update
    // test dependencies as well.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                                                << initial_element_shape);
      // Verifies if the new element type has static shape and matches the potential
      // type passed from caller. Updates the potential_element_type, if not defined
      // yet.
      auto verify_and_update_potential_element_type =
          [&](RankedTensorType new_element_type) -> bool {
        DCOMMENT("\t\tConsidering " << new_element_type << " with old "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Display Order */
        public static final String LABELS_SORT_ORDER = "{labels.sortOrder}";
    
        /** The key of the message: Updated by */
        public static final String LABELS_UPDATED_BY = "{labels.updatedBy}";
    
        /** The key of the message: Updated Time */
        public static final String LABELS_UPDATED_TIME = "{labels.updatedTime}";
    
        /** The key of the message: URLs */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.cc

        status->status = tensorflow::errors::OutOfRange(
            "Cannot update edge. Input index [", dst.index,
            "] is greater than the number of total inputs [", ic_dst->num_inputs(),
            "].");
        return;
      }
      if (!ic_dst->MergeInput(dst.index, shape)) {
        status->status = tensorflow::errors::InvalidArgument(
            "Cannot update edge, incompatible shapes: ", ic_dst->DebugString(shape),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    // should be performed by other components (like the volume manager). The duration
    // of this call is the minimum latency for static pods to be restarted if they
    // are updated with a fixed UID (most should use a dynamic UID), and no config
    // updates are delivered to the pod workers while this method is running.
    func (kl *Kubelet) HandlePodCleanups(ctx context.Context) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    	}{
    
    		{
    			name:    "Immutable after update node addresses single-stack",
    			nodeIPs: []string{"10.0.0.1"},
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "1.1.1.1"},
    			},
    			expectedPodIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    			},
    		},
    		{
    			name:    "Immutable after update node addresses dual-stack - primary address",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    mlir::LogicalResult ScatterNdOp::verify() {
      ScatterNdOp op = *this;
      auto indices = op.getIndices();
      auto updates = op.getUpdates();
      auto shape = op.getShape();
      auto output = op.getOutput();
    
      auto updates_type = updates.getType().cast<ShapedType>();
      auto indices_type = indices.getType().cast<ShapedType>();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def TPUUpdateEmbeddingEnqueueOpInputsPass : Pass<"tf-tpu-update-embedding-enqueue-op-inputs", "mlir::func::FuncOp"> {
      let summary = "Updates inputs to TPU embedding enqueue ops depending on whether graph is in training mode or in evaluation mode.";
    
      let description = [{
        Updates inputs to TPU embedding enqueue ops depending on whether graph
        is in training mode or in evaluation mode.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    	tc.Lock()
    	defer tc.Unlock()
    
    	assert.Equal(t, tc.specReplicas != tc.expectedDesiredReplicas, tc.scaleUpdated, "the scale should only be updated if we expected a change in replicas")
    	assert.True(t, tc.statusUpdated, "the status should have been updated")
    	if tc.verifyEvents {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top