Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for all_ones (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // be computed as a GEMM in NHWC data format, and can be up to ~2x times
      // faster than convolution in NCHW.
      const bool one_by_one = d0 == 1 && d1 == 1;
      const bool trivial_strides = all_ones(getStrides());
      const bool trivial_dilations = all_ones(getDilations());
    
      // TODO(ezhulenev): This might lead to excessive transposes in the final IR,
      // if the ratio of 1x1 convolutions to regular convolutions is close to 1:1.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    fe00::0	ip6-localnet
    fe00::0	ip6-mcastprefix
    fe00::1	ip6-allnodes
    fe00::2	ip6-allrouters
    123.45.67.89	some.domain
    `,
    			expectedHostsFileContent: `# Kubernetes-managed hosts file (host network).
    # hosts file for testing.
    127.0.0.1	localhost
    ::1	localhost ip6-localhost ip6-loopback
    fe00::0	ip6-localnet
    fe00::0	ip6-mcastprefix
    fe00::1	ip6-allnodes
    fe00::2	ip6-allrouters
    123.45.67.89	some.domain
    `,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    	}
    	podInfoOnMount := false
    	if obj.Spec.PodInfoOnMount != nil {
    		podInfoOnMount = *obj.Spec.PodInfoOnMount
    	}
    	allModes := []string{}
    	for _, mode := range obj.Spec.VolumeLifecycleModes {
    		allModes = append(allModes, string(mode))
    	}
    	modes := strings.Join(allModes, ",")
    	if len(modes) == 0 {
    		modes = "<none>"
    	}
    
    	row.Cells = append(row.Cells, obj.Name, attachRequired, podInfoOnMount)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    		b.Run(tt.name, func(b *testing.B) {
    			existingPods, allNodes, _ := st.MakeNodesAndPodsForEvenPodsSpread(tt.pod.Labels, tt.existingPodsNum, tt.allNodesNum, tt.filteredNodesNum)
    			_, ctx := ktesting.NewTestContext(b)
    			pl := plugintesting.SetupPlugin(ctx, b, topologySpreadFunc, &config.PodTopologySpreadArgs{DefaultingType: config.ListDefaulting}, cache.NewSnapshot(existingPods, allNodes))
    			p := pl.(*PodTopologySpread)
    			b.ResetTimer()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    	buffer.WriteString("::1\tlocalhost ip6-localhost ip6-loopback\n") // ipv6 localhost
    	buffer.WriteString("fe00::0\tip6-localnet\n")
    	buffer.WriteString("fe00::0\tip6-mcastprefix\n")
    	buffer.WriteString("fe00::1\tip6-allnodes\n")
    	buffer.WriteString("fe00::2\tip6-allrouters\n")
    	if len(hostDomainName) > 0 {
    		// host entry generated for all IPs in podIPs
    		// podIPs field is populated for clusters even
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top