Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for sccp (0.07 sec)

  1. src/cmd/compile/internal/ssa/sccp.go

    	defBlock     map[*Value][]*Block // use blocks of def
    	visitedBlock []bool              // visited block
    }
    
    // sccp stands for sparse conditional constant propagation, it propagates constants
    // through CFG conditionally and applies constant folding, constant replacement and
    // dead code elimination all together.
    func sccp(f *Func) {
    	var t worklist
    	t.f = f
    	t.edges = make([]Edge, 0)
    	t.visited = make(map[Edge]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/compile.go

    	{name: "softfloat", fn: softfloat, required: true},
    	{name: "late opt", fn: opt, required: true}, // TODO: split required rules and optimizing rules
    	{name: "dead auto elim", fn: elimDeadAutosGeneric},
    	{name: "sccp", fn: sccp},
    	{name: "generic deadcode", fn: deadcode, required: true}, // remove dead stores, which otherwise mess up store chain
    	{name: "check bce", fn: checkbce},
    	{name: "branchelim", fn: branchelim},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      }
      pm.addNestedPass<mlir::func::FuncOp>(mlir::createCanonicalizerPass());
      // The SCCP pass performs constant propagation across the IR, which, for
      // example, propagates constant arguments into callee functions.
      // TODO(hinsu): Investigate if we really need SCCP pass before shape inference
      // and can do with just one pass after the shape inference.
      pm.addPass(mlir::createSCCPPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      // Visit functions bottom up when doing the analysis. Note that SCC iterator
      // has the property that if there is an edge from SCC1->SCC2, SCC1 is visited
      // after SCC2, i.e., the graph is traversed bottom up just the way we want.
      auto scc_begin = llvm::scc_begin(&call_graph);
      auto scc_end = llvm::scc_end(&call_graph);
      for (auto& scc : make_range(scc_begin, scc_end)) {
        // Each SCC node is a collection of callgraph nodes that form a cycle. We
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/integTest/groovy/org/gradle/internal/vfs/DefaultExcludesIntegrationTest.groovy

            "**/#*#",
            "**/*~",
            "**/.DS_Store",
    
            "**/CVS",
            "**/CVS/**",
            "**/.cvsignore",
    
            "**/SCCS",
            "**/SCCS/**",
    
            "**/.bzr",
            "**/.bzr/**",
            "**/.bzrignore",
    
            "**/vssver.scc",
    
            "**/.hg",
            "**/.hg/**",
            "**/.hgtags",
            "**/.hgignore",
            "**/.hgsubstate",
            "**/.hgsub",
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 12:37:12 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      int64_t graph_version_;
    
      // Op types for which shape inference should be skipped.
      llvm::SmallDenseSet<TypeID> ops_to_skip_;
    
      // TODO(b/154065712): Remove propagate_caller_callee_constants once using
      // SCCP pass instead.
      bool propagate_caller_callee_constants_;
    
      // XlaCallModule loader, which is used to deserialize the StableHLO module in
      // each `XlaCallModule` op. Uses its own MLIRContext since the loader needs to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/helpers.go

    		}, nil
    	}
    	if scmp.Type == v1.SeccompProfileTypeRuntimeDefault {
    		return &runtimeapi.SecurityProfile{
    			ProfileType: runtimeapi.SecurityProfile_RuntimeDefault,
    		}, nil
    	}
    	if scmp.Type == v1.SeccompProfileTypeLocalhost {
    		if scmp.LocalhostProfile != nil && len(*scmp.LocalhostProfile) > 0 {
    			fname := filepath.Join(profileRootPath, *scmp.LocalhostProfile)
    			return &runtimeapi.SecurityProfile{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    1.0-alpha-5 org.apache.maven.wagon wagon-file 1.0-alpha-5 org.apache.maven.wagon wagon-http-lightweight 1.0-alpha-5 repo1 Maven Central Repository scp://repo1.maven.org/home/projects/maven/repository-staging/to-ibiblio/maven2 snapshots Maven Central Development Repository scp://repo1.maven.org/home/projects/maven/repository-staging/snapshots/maven2 website scp://minotaur.apache.org/www/maven.apache.org/maven2/maven-plugin-api META-INF/maven/org.apache.maven/maven-plugin-api/pom.properties #Generated by...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/remote-repo/org/apache/apache/1/apache-1.pom

        <repository>
          <id>apache.releases</id>
          <name>Apache Release Distribution Repository</name>
          <url>scp://minotaur.apache.org/www/www.apache.org/dist/maven-repository</url>
        </repository>
        <snapshotRepository>
          <id>apache.snapshots</id>
          <name>Apache Development Snapshot Repository</name>
          <url>scp://minotaur.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
        </snapshotRepository>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier_test.go

    						Port:      uint16(3001),
    						Scheduler: "rr",
    					},
    					{
    						IP:       "100.101.102.104",
    						Port:     3001,
    						Protocol: "SCTP",
    					}: {
    						Address:   netutils.ParseIPSloppy("100.101.102.104"),
    						Protocol:  "SCTP",
    						Port:      uint16(3001),
    						Scheduler: "rr",
    					},
    					{
    						IP:       "100.101.102.105",
    						Port:     3001,
    						Protocol: "SCTP",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
Back to top