Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Walks (0.23 sec)

  1. src/cmd/link/internal/ld/data.go

    	if outer != 0 {
    		off += ldr.SymValue(s) - ldr.SymValue(outer)
    		s = outer
    	}
    	return s, off
    }
    
    // relocsym resolve relocations in "s", updating the symbol's content
    // in "P".
    // The main loop walks through the list of relocations attached to "s"
    // and resolves them where applicable. Relocations are often
    // architecture-specific, requiring calls into the 'archreloc' and/or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        ```
      }];
    
      let constructor = "CreateExecutorDialectToFunctionalConversionPass()";
    }
    
    def ExecutorIslandCoarseningPass : Pass<"tf-executor-island-coarsening", "mlir::func::FuncOp"> {
      let summary = "Walks tf_executor::GraphOp and merges individual tf_executor::IslandOps.";
      let description = [{
        This pass performs whole graph analysis for a graph encapsulated into tf_executor::GraphOp.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

              rewriter.getI64ArrayAttr(kstrides), rewriter.getStringAttr(padding),
              rewriter.getStringAttr(data_format));
          return success();
        }
        return failure();
      }
    
      // Walks up the op and ignore all precedding ops of type Tys.
      // Returns the first producer op whose type is not in Tys.
      template <typename... Tys>
      Value recursivelyWalkUp(Value op) const {
    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/go/internal/load/pkg.go

    	p.Internal.Imports = append(p.Internal.Imports, p1)
    }
    
    // PrepareForCoverageBuild is a helper invoked for "go install
    // -cover", "go run -cover", and "go build -cover" (but not used by
    // "go test -cover"). It walks through the packages being built (and
    // dependencies) and marks them for coverage instrumentation when
    // appropriate, and possibly adding additional deps where needed.
    func PrepareForCoverageBuild(pkgs []*Package) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // Go version reports the Go version used to build each of the named files.
    //
    // If no files are named on the command line, go version prints its own
    // version information.
    //
    // If a directory is named, go version walks that directory, recursively,
    // looking for recognized Go binaries and reporting their versions.
    // By default, go version does not report unrecognized files found
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top