Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 115 for pcount (0.14 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    bool Translator::EstimateArithmeticCount(int64_t* count) {
      int64_t result = 0;
      bool encounter_undetermined_mac = false;
      module_->walk([&](mlir::TFL::TflArithmeticCountOpInterface op) {
        int64_t mac_count = op.GetArithmeticCount(op);
        if (mac_count < 0) {
          encounter_undetermined_mac = true;
          return;
        }
        result += mac_count;
      });
    
      *count = result;
      return !encounter_undetermined_mac;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
            },
            "azureFile": {
              "$ref": "#/definitions/io.k8s.api.core.v1.AzureFileVolumeSource",
              "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
            },
            "cephfs": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          contracting_dimensions_.sizes.push_back(type.getDimSize(dim));
        }
    
        for (int64_t dim = 0; dim < rank; ++dim) {
          if (llvm::count(contracting_dimensions_.axes, dim) > 0 ||
              llvm::count(batch_dimensions_.axes, dim) > 0) {
            continue;
          }
          out_dimensions_.axes.push_back(dim);
          out_dimensions_.sizes.push_back(type.getDimSize(dim));
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    /* checkShiftAmount checks whether the index shift amount is valid */
    /* for load with register offset instructions */
    func (c *ctxt7) checkShiftAmount(p *obj.Prog, a *obj.Addr) {
    	var amount int16
    	amount = (a.Index >> 5) & 7
    	switch p.As {
    	case AMOVB, AMOVBU:
    		if amount != 0 {
    			c.ctxt.Diag("invalid index shift amount: %v", p)
    		}
    	case AMOVH, AMOVHU:
    		if amount != 1 && amount != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    	op_BCT     uint32 = 0x4600 // FORMAT_RX1        BRANCH ON COUNT (32)
    	op_BCTG    uint32 = 0xE346 // FORMAT_RXY1       BRANCH ON COUNT (64)
    	op_BCTGR   uint32 = 0xB946 // FORMAT_RRE        BRANCH ON COUNT (64)
    	op_BCTR    uint32 = 0x0600 // FORMAT_RR         BRANCH ON COUNT (32)
    	op_BPP     uint32 = 0xC700 // FORMAT_SMI        BRANCH PREDICTION PRELOAD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_node_status_test.go

    	// Generate > MaxNamesPerImageInNodeStatus tags so that the test can verify
    	// that kubelet report up to MaxNamesPerImageInNodeStatus tags.
    	count := rand.IntnRange(nodestatus.MaxNamesPerImageInNodeStatus+1, maxImageTagsForTest+1)
    	for ; count > 0; count-- {
    		tagList = append(tagList, "registry.k8s.io:v"+strconv.Itoa(count))
    	}
    	return tagList
    }
    
    func applyNodeStatusPatch(originalNode *v1.Node, patch []byte) (*v1.Node, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    func (st *relocSymState) relocsym(s loader.Sym, P []byte) {
    	ldr := st.ldr
    	relocs := ldr.Relocs(s)
    	if relocs.Count() == 0 {
    		return
    	}
    	target := st.target
    	syms := st.syms
    	nExtReloc := 0 // number of external relocations
    	for ri := 0; ri < relocs.Count(); ri++ {
    		r := relocs.At(ri)
    		off := r.Off()
    		siz := int32(r.Siz())
    		rs := r.Sym()
    		rt := r.Type()
    		weak := r.Weak()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal_test.go

    	tc.runTest(t)
    }
    
    func TestMultipleHPAs(t *testing.T) {
    	const hpaCount = 1000
    	const testNamespace = "dummy-namespace"
    
    	processed := make(chan string, hpaCount)
    
    	testClient := &fake.Clientset{}
    	testScaleClient := &scalefake.FakeScaleClient{}
    	testMetricsClient := &metricsfake.Clientset{}
    
    	hpaList := [hpaCount]autoscalingv2.HorizontalPodAutoscaler{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    				res, err := c.Do(req)
    				if err != nil {
    					t.Fatal(err)
    				}
    				defer res.Body.Close()
    				if want := tc.disableKeepAlives || tc.close; count > 1 || (count == 1) != want {
    					t.Errorf("expecting want:%v, got 'Connection: close':%d", want, count)
    				}
    			})
    	}
    
    }
    
    func TestTransportIdleCacheKeys(t *testing.T) {
    	run(t, testTransportIdleCacheKeys, []testMode{http1Mode})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    	}
    }
    
    // repeatReader reads content count times, then EOFs.
    type repeatReader struct {
    	content []byte
    	count   int
    	off     int
    }
    
    func (r *repeatReader) Read(p []byte) (n int, err error) {
    	if r.count <= 0 {
    		return 0, io.EOF
    	}
    	n = copy(p, r.content[r.off:])
    	r.off += n
    	if r.off == len(r.content) {
    		r.count--
    		r.off = 0
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top