Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for VAL1 (0.12 sec)

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

        "tf.Yield"(%1, %arg1) : (tensor<f32>, tensor<f32>) -> ()
      // CHECK: }) : (tensor<i32>) -> (tensor<f32>, tensor<f32>)
      }) {is_stateless = true} : (tensor<i32>) -> (tensor<f32>, tensor<f32>)
      // CHECK: return [[VAL1]]#0, [[VAL1]]#1 : tensor<f32>, tensor<f32>
      func.return %0#0, %0#1 : tensor<f32>, tensor<f32>
    }
    
    // -----
    
    // This test case also ensures the mhlo dialect is loaded as a dependency by the
    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. src/net/http/cookiejar/jar_test.go

    		}
    		setCookies[i] = cookies[0]
    	}
    	jar.setCookies(mustParseURL(test.fromURL), setCookies, now)
    	now = now.Add(1001 * time.Millisecond)
    
    	// Serialize non-expired entries in the form "name1=val1 name2=val2".
    	var cs []string
    	for _, submap := range jar.entries {
    		for _, cookie := range submap {
    			if !cookie.Expires.After(now) {
    				continue
    			}
    
    			v := cookie.Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          if (!c->Dim(s0, i).SameHandle(c->Dim(s1, i))) {
            int64_t val0 = c->Value(c->Dim(s0, i));
            int64_t val1 = c->Value(c->Dim(s1, i));
            // Negative value is treated as unknown so all negative values indicate
            // the same dimension.
            if (val0 >= 0 && val1 >= 0 && val0 != val1) return false;
          }
        }
        return true;
      };
    
      bool changed = true;
      int i = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/manager_test.go

    				resp.Mounts = append(resp.Mounts, &pluginapi.Mount{
    					ContainerPath: "/container_dir1/file2",
    					HostPath:      "host_dir1/file2",
    					ReadOnly:      true,
    				})
    
    				resp.Envs["key1"] = "val1"
    			}
    		}
    		resps := new(pluginapi.AllocateResponse)
    		resps.ContainerResponses = append(resps.ContainerResponses, resp)
    		return resps, nil
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

          %false_value = "tf.Sub"(%arg0, %arg1) : (tensor<f32>, tensor<f32>) -> tensor<f32>
          "tf.Yield"(%false_value) : (tensor<f32>) -> ()
        }) { is_stateless = true}: (tensor<i1>) -> tensor<f32>
    
      // CHECK: [[Val1:%.*]] = "tf.Sub"(%arg0, %arg1)
      // CHECK-SAME: device = "/job:localhost/replica:0/task:0/device:GPU:0"
      %1 = "tf.IfRegion"(%false) ({
          %true_value = "tf.Mul"(%arg0, %arg1) : (tensor<f32>, tensor<f32>) -> tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  6. pkg/config/validation/validation_test.go

    			&extensions.WasmPlugin{
    				Url: "test.com/test",
    				VmConfig: &extensions.VmConfig{
    					Env: []*extensions.EnvVar{
    						{
    							Name:  "ENV1",
    							Value: "VAL1",
    						},
    						{
    							Name:  "ENV1",
    							Value: "VAL1",
    						},
    					},
    				},
    			},
    			"duplicate env", "",
    		},
    		{
    			"target-ref-good",
    			&extensions.WasmPlugin{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

      # flag arguments.
      # Old format:
      #   command=["/bin/sh", "-c", "exec KUBE_EXEC_BINARY --param1=val1 --param2-val2"].
      # New format:
      #   command=["KUBE_EXEC_BINARY"]  # No shell dependencies.
      #   args=["--param1=val1", "--param2-val2"]
      IFS=' ' read -ra FLAGS <<< "$1"
      params=""
      for flag in "${FLAGS[@]}"; do
        params+="\n\"$flag\","
      done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteARM64.go

    	// cond: canMergeSym(sym1,sym2) && is32Bit(int64(off1)+int64(off2)) && (ptr.Op != OpSB || !config.ctxt.Flag_dynlink)
    	// result: (STP [off1+off2] {mergeSym(sym1,sym2)} ptr val1 val2 mem)
    	for {
    		off1 := auxIntToInt32(v.AuxInt)
    		sym1 := auxToSym(v.Aux)
    		if v_0.Op != OpARM64MOVDaddr {
    			break
    		}
    		off2 := auxIntToInt32(v_0.AuxInt)
    		sym2 := auxToSym(v_0.Aux)
    		ptr := v_0.Args[0]
    		val1 := v_1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			}
    			if len(st.str) == 0 || st.str[0] != '_' {
    				st.fail("expected _ after number")
    			}
    			st.advance(1)
    			base := st.demangleType(false)
    			return &Special2{Prefix: "construction vtable for ", Val1: base, Middle: "-in-", Val2: derived}
    		case 'F':
    			t := st.demangleType(false)
    			return &Special{Prefix: "typeinfo fn for ", Val: t}
    		case 'J':
    			t := st.demangleType(false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    }
    
    func TestUnschedulablePodsMap(t *testing.T) {
    	var pods = []*v1.Pod{
    		st.MakePod().Name("p0").Namespace("ns1").Annotation("annot1", "val1").NominatedNodeName("node1").Obj(),
    		st.MakePod().Name("p1").Namespace("ns1").Annotation("annot", "val").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top