Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 95 for Replacer (0.25 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        }
    
        // Replace the pack's output to the unpack's input.
        rewriter.replaceOp(pack_op, input_unpack_op.getOperand());
        // At this point, we don't manually remove the redundant pack op & unpack op
        // (we cannot actually), but trust the PatterRewriter to garbage collect
        // these two ops.
        return success();
      }
    };
    
    // Replace PackOp with a reshape when there is only one operand.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

            if (splatAttrIsZero) {
              // When `y` is a zero splat constant (i.e., all the elements in `y`
              // are zero, replace the op (tf.divNoNan or tf.MulNoNan) with `y`.
              rewriter.replaceOp(op, y);
            } else {
              // When `y` is a non-zero splat constant, replace tf.DivNoNan with
              // tf.Div and tf.MulNoNan with tf.Mul.
              ReplaceTfOpWithNewOp<RetT>(rewriter, op, op->getResult(0).getType(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    	// Storage class is special, it can be replaced regardless of the
    	// metadata directive, if set should be preserved and replaced
    	// to the destination metadata.
    	sc := r.Header.Get(xhttp.AmzStorageClass)
    	if sc == "" {
    		sc = r.Form.Get(xhttp.AmzStorageClass)
    	}
    
    	// if x-amz-metadata-directive says REPLACE then
    	// we extract metadata from the input headers.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      //   %height = tf.StridedSlice(%shape, 1, 2, 1)
      //
      // In this case %height can be replaced with a constant 2.
      //
      // Or,
      //
      //   %shape  = tf.Shape(%arg)                   // %arg: tensor<?x2x3x1xf32>
      //   %spatial_shape = tf.StridedSlice(%shape, 1, 3, 1)
      //
      // In this case %spatial_shape can be replaced with a constant [2, 3].
    
      // Input to strided slice op is defined by shape operation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    		version := mi.Version
    		if version == "" {
    			version = "(devel)"
    		}
    		dm := &debug.Module{
    			Path:    mi.Path,
    			Version: version,
    		}
    		if mi.Replace != nil {
    			dm.Replace = debugModFromModinfo(mi.Replace)
    		} else if mi.Version != "" && cfg.BuildMod != "vendor" {
    			dm.Sum = modfetch.Sum(ctx, module.Version{Path: mi.Path, Version: mi.Version})
    		}
    		return dm
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal_test.go

    				{7, time.Now().Add(-time.Second * time.Duration(61)), false}, // outdated event, should be replaced
    			},
    			newScaleEvents: []timestampedScaleEvent{
    				{7, time.Now(), false}, // no behavior -> we don't touch stored events
    			},
    			expectedReplicasChange: 0,
    		},
    		{
    			name:          "one outdated entry to be replaced with behavior",
    			replicaChange: 5,
    			prevScaleEvents: []timestampedScaleEvent{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        // "mhlo::ReduceOp" only has one operand, one init_value and one result.
    
        // If the init value matches with the init value expected for the target
        // TfReduceOp, then replace the BinaryOp with a TfReduceOp. Otherwise,
        // replace the BinaryOp with a TfBinaryOp and a TfReduceOp.
        if (succeeded(MatchInitValue(reduce_op.getInitValues()[0]))) {
          rewriter.replaceOpWithNewOp<TfReduceOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          "required": [
            "key",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    String); public static String join(java.util.Iterator, String); public static String replaceOnce(String, char, char); public static String replace(String, char, char); public static String replace(String, char, char, int); public static String replaceOnce(String, String, String); public static String replace(String, String, String); public static String replace(String, String, String, int); public static String overlayString(String, String, int, int); public static String center(String, int); public...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    		t.Errorf("unexpected error: %v", err)
    	}
    	if err := nodeController.monitorNodeHealth(ctx); err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	// Before taint manager work, the status has been replaced(maybe merge-patch replace).
    	node3.Status.Conditions = overrideNodeNewStatusConditions
    	_, err = fakeNodeHandler.UpdateStatus(ctx, node3, metav1.UpdateOptions{})
    	if err != nil {
    		t.Errorf(err.Error())
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
Back to top