Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for input1 (0.32 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // CHECK-SAME: [[INPUT:%.*]]: tensor<1x?xf32>
    func.func @random_shuffle_first_dim_1(%input: tensor<1x?xf32>) -> tensor<1x?xf32> {
      %0 = "tf.RandomShuffle"(%input) : (tensor<1x?xf32>) -> (tensor<1x?xf32>)
      // CHECK-NEXT: return [[INPUT]]
      func.return %0: tensor<1x?xf32>
    }
    
    // -----
    
    // CHECK-LABEL: @random_shuffle_1D_16
    // CHECK-SAME: [[INPUT:%.*]]: tensor<16xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    	tests := []struct {
    		name           string
    		input          apiextensions.CustomResourceValidation
    		statusEnabled  bool
    		opts           validationOptions
    		expectedErrors []validationMatch
    	}{
    		{
    			name:  "empty",
    			input: apiextensions.CustomResourceValidation{},
    		},
    		{
    			name:          "empty with status",
    			input:         apiextensions.CustomResourceValidation{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier_test.go

    	rules := dedent.Dedent(`
    		*filter
    		:INPUT - [0:0]
    		:FORWARD - [0:0]
    		:OUTPUT - [0:0]
    		:KUBE-EXTERNAL-SERVICES - [0:0]
    		:KUBE-FIREWALL - [0:0]
    		:KUBE-FORWARD - [0:0]
    		:KUBE-NODEPORTS - [0:0]
    		:KUBE-SERVICES - [0:0]
    		:KUBE-PROXY-FIREWALL - [0:0]
    		-A INPUT -m comment --comment kubernetes health check service ports -j KUBE-NODEPORTS
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    }
    
    // Broadcasts `input` to the shape of `broadcast_to` value following
    // TF::BroadcastTo semantics.
    //
    // Requires that input is a ranked tensor.
    //
    // TODO(hinsu): Utilize TF::ShapeOp followed by TF::BroadcastTo once ShapeOp
    // supports unranked inputs in the lowering.
    static Value BroadcastToShapeOf(Location loc, Value input, Value broadcast_to,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/optimize.mlir

    }
    
    // CHECK-LABEL: @FuseReshapeAroundBMMRHS
    func.func @FuseReshapeAroundBMMRHS(%arg0: tensor<1x3x6x5x1024xf32>) -> tensor<1x3x6x5x8192xf32> attributes {tf.entry_function = {control_outputs = "", inputs = "inputs", outputs = "Identity_1"}} {
      %cst = arith.constant dense_resource<__elided__> : tensor<1x1024x8192xf32>
      %cst_0 = arith.constant dense_resource<__elided__> : tensor<5xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    ue;return s}a=r}return!1}unclosedBracket(e){throw this.input.error("Unclosed bracket",{offset:e[2]},{offset:e[2]+1})}unknownWord(e){throw this.input.error("Unknown word",{offset:e[0][2]},{offset:e[0][2]+e[0][1].length})}unexpectedClose(e){throw this.input.error("Unexpected }",{offset:e[2]},{offset:e[2]+1})}unclosedBlock(){let e=this.current.source.start;throw this.input.error("Unclosed block",e.line,e.column)}doubleColon(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].le...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. src/cmd/compile/internal/ssagen/ssa.go

    	byteptr := typs.BytePtr
    	if dst.IsInterface() {
    		if dst.IsEmptyInterface() {
    			// Converting to an empty interface.
    			// Input could be an empty or nonempty interface.
    			if base.Debug.TypeAssert > 0 {
    				base.WarnfAt(pos, "type assertion inlined")
    			}
    
    			// Get itab/type field from input.
    			itab := s.newValue1(ssa.OpITab, byteptr, iface)
    			// Conversion succeeds iff that field is not nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %0 = "tf.Const"() {value = dense<"Inputs must have identical ragged splits"> : tensor<!tf_type.string>} : () -> tensor<!tf_type.string>
      %1 = "tf.Const"() {value = dense<"Condition x == y did not hold element-wise:"> : tensor<!tf_type.string>} : () -> tensor<!tf_type.string>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// Variable references $(VAR_NAME) are expanded
    	// using the previously defined environment variables in the container and
    	// any service environment variables. If a variable cannot be resolved,
    	// the reference in the input string will be unchanged. Double $$ are reduced
    	// to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.
    	// "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.25.md

        - [CVE-2023-3955: Insufficient input sanitization on Windows nodes leads to privilege escalation](#cve-2023-3955-insufficient-input-sanitization-on-windows-nodes-leads-to-privilege-escalation)
        - [CVE-2023-3676: Insufficient input sanitization on Windows nodes leads to privilege escalation](#cve-2023-3676-insufficient-input-sanitization-on-windows-nodes-leads-to-privilege-escalation)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top