Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 93 for perblock (0.29 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/source.html

                {{/* instructions for this source line */ -}}
                <span class=asm>{{"" -}}
                {{range .Instructions -}}
                  {{/* separate when we hit a new basic block */ -}}
                  {{if .NewBlock -}}{{printf " %8s %28s\n" "" "⋮"}}{{end -}}
    
                  {{/* inlined calls leading to this instruction */ -}}
                  {{range .InlinedCalls -}}
                    {{printf " %8s %10s %10s %8s  " "" "" "" "" -}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tpu_parallel_execute_sink_resource_write.cc

      auto* resource_handle_op = assign_var.getResource().getDefiningOp();
      if (resource_handle_op == parallel_execute) return nullptr;
    
      if (resource_handle_op &&
          resource_handle_op->getBlock() ==
              parallel_execute.getOperation()->getBlock() &&
          parallel_execute.getOperation()->isBeforeInBlock(resource_handle_op))
        return nullptr;
    
      return assign_var;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 06 04:46:18 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  3. src/image/jpeg/writer.go

    func toYCbCr(m image.Image, p image.Point, yBlock, cbBlock, crBlock *block) {
    	b := m.Bounds()
    	xmax := b.Max.X - 1
    	ymax := b.Max.Y - 1
    	for j := 0; j < 8; j++ {
    		for i := 0; i < 8; i++ {
    			r, g, b, _ := m.At(min(p.X+i, xmax), min(p.Y+j, ymax)).RGBA()
    			yy, cb, cr := color.RGBToYCbCr(uint8(r>>8), uint8(g>>8), uint8(b>>8))
    			yBlock[8*j+i] = int32(yy)
    			cbBlock[8*j+i] = int32(cb)
    			crBlock[8*j+i] = int32(cr)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

    LogicalResult SortTopologically(Block::iterator begin, Block::iterator end) {
      Block* block = begin->getBlock();
      // Either sort from `begin` to end of block or both `begin` and
      // `end` should belong to the same block.
      assert(end == block->end() ||
             end->getBlock() == block && "ops must be in the same block");
    
      // Track the ops that still need to be scheduled in a set.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

            firParent.accept(pathSearcher)
    
            return firStatements.map { unwrapLeaf(pathSearcher[it] ?: it) }
        }
    
        private fun unwrapLeaf(firLeaf: FirElement): FirElement {
            if (firLeaf is FirBlock && firLeaf.statements.size == 1) {
                val firStatement = firLeaf.statements[0]
                if (firStatement is FirExpression && firStatement.resolvedType == firLeaf.resolvedType) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. pkg/api/pod/warnings.go

    					}
    				} else {
    					items.Insert(item.Name)
    				}
    			}
    		}
    		return true
    	})
    
    	type portBlock struct {
    		field *field.Path
    		port  api.ContainerPort
    	}
    
    	// Accumulate ports across all containers
    	allPorts := map[string][]portBlock{}
    	pods.VisitContainersWithPath(podSpec, fieldPath.Child("spec"), func(c *api.Container, fldPath *field.Path) bool {
    		for i, port := range c.Ports {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. src/crypto/x509/x509_test.go

    	{ECDSAWithSHA256, ecdsaSHA256p384CertPem},
    	{ECDSAWithSHA384, ecdsaSHA384p521CertPem},
    }
    
    func TestECDSA(t *testing.T) {
    	for i, test := range ecdsaTests {
    		pemBlock, _ := pem.Decode([]byte(test.pemCert))
    		cert, err := ParseCertificate(pemBlock.Bytes)
    		if err != nil {
    			t.Errorf("%d: failed to parse certificate: %s", i, err)
    			continue
    		}
    		if sa := cert.SignatureAlgorithm; sa != test.sigAlgo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_executor_to_functional.cc

    // order of ops in tf_executor.graph.
    LogicalResult LiftIslandOpInnerOpsFromGraph(tf_executor::GraphOp graph) {
      auto graph_position = graph.getOperation()->getIterator();
      Block* parent_block = graph.getOperation()->getBlock();
      for (Operation& op : graph.GetBody().without_terminator()) {
        auto island_op = llvm::dyn_cast<tf_executor::IslandOp>(op);
        if (!island_op)
          return op.emitOpError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/xla_rewrite_util.cc

      int cluster_idx = -1;
      for (size_t child_idx = 0;
           child_idx < old_parallel_execute.getRegions().size(); ++child_idx) {
        auto& block = old_parallel_execute.GetRegionBlockWithIndex(child_idx);
        if (cluster_func->getBlock() == &block) {
          assert(cluster_idx == -1);
          cluster_idx = child_idx;
        }
      }
      assert(cluster_idx != -1);
    
      // Move children that are preserved.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 13 03:57:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. pkg/spiffe/spiffe_test.go

    	}
    	serverCert := [][]byte{workloadCertBlock.Bytes, intCertBlock.Bytes}
    
    	keyBlock, _ := pem.Decode([]byte(validWorkloadKey))
    	if keyBlock == nil {
    		t.Fatalf("failed to parse PEM block containing the workload private key")
    	}
    
    	privateKey, err := x509.ParsePKCS1PrivateKey(keyBlock.Bytes)
    	if err != nil {
    		t.Fatalf("failed to parse workload private key: %v", privateKey)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top