Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,449 for pass2 (0.07 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    		case *ast.ReturnStmt:
    			checkCopyLocksReturnStmt(pass, node)
    		}
    	})
    	return nil, nil
    }
    
    // checkCopyLocksAssign checks whether an assignment
    // copies a lock.
    func checkCopyLocksAssign(pass *analysis.Pass, as *ast.AssignStmt) {
    	for i, x := range as.Rhs {
    		if path := lockPathRhs(pass, x); path != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    	Run:  runDirective,
    }
    
    func runDirective(pass *analysis.Pass) (interface{}, error) {
    	for _, f := range pass.Files {
    		checkGoFile(pass, f)
    	}
    	for _, name := range pass.OtherFiles {
    		if err := checkOtherFile(pass, name); err != nil {
    			return nil, err
    		}
    	}
    	for _, name := range pass.IgnoredFiles {
    		if strings.HasSuffix(name, ".go") {
    			f, err := parser.ParseFile(pass.Fset, name, nil, parser.ParseComments)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/cmd/internal/test2json/testdata/framefuzz.json

    {"Action":"pass","Test":"TestAddrStringAllocs/ipv6"}
    {"Action":"output","Test":"TestAddrStringAllocs/ipv6+zone","Output":"    --- PASS: TestAddrStringAllocs/ipv6+zone (0.00s)\n"}
    {"Action":"pass","Test":"TestAddrStringAllocs/ipv6+zone"}
    {"Action":"output","Test":"TestAddrStringAllocs/ipv4-in-ipv6","Output":"    --- PASS: TestAddrStringAllocs/ipv4-in-ipv6 (0.00s)\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report.cc

    }
    
    // Whether the pass is `QuantizeCompositeFunctionPass`.
    bool IsQuantizeCompositeFunctionPass(absl::Nullable<Pass*> pass,
                                         absl::Nullable<Operation*> op) {
      // It is known that `op` is `ModuleOp` when `pass` is
      // `QuantizeCompositeFunctionPass`, but the check is still performed to be
      // defensive.
      return pass != nullptr &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.cc

      int64_t GetPassNumber(mlir::Pass* pass) {
        if (!pass_to_number_map_.contains(pass)) {
          pass_to_number_map_[pass] = mlir_pass_count_++;
        }
        return pass_to_number_map_[pass];
      }
    
      void Dump(mlir::Pass* pass, PrintCallbackFn print_callback, bool is_before) {
        auto& pass_to_dump_file_map = is_before ? pass_to_dump_file_before_map_
                                                : pass_to_dump_file_after_map_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:38:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/passes.td

    include "mlir/Pass/PassBase.td"
    
    
    def AnalyzeVariablesPass : Pass<"tfl-analyze-variables-pass", "mlir::ModuleOp"> {
      let summary = "Analyze variables in the graph";
      let description = [{
          Pass which analyzes the variables in the graph and add an attribute whether
          variables should be legalized to TFLite native ones.
          This pass needs to run post TF->TFL legalization and before variable
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag.go

    	Run:  runBuildTag,
    }
    
    func runBuildTag(pass *analysis.Pass) (interface{}, error) {
    	for _, f := range pass.Files {
    		checkGoFile(pass, f)
    	}
    	for _, name := range pass.OtherFiles {
    		if err := checkOtherFile(pass, name); err != nil {
    			return nil, err
    		}
    	}
    	for _, name := range pass.IgnoredFiles {
    		if strings.HasSuffix(name, ".go") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // output model of this pass is expected to be ready for the TF quantizer.
    std::unique_ptr<OperationPass<ModuleOp>> CreateConvertTpuModelToCpuPass();
    
    // Creates a pass that casts BFloat16 operations to Float32 operations. This
    // pass is a part of the ConvertTpuModelToCpu pass to support BF16 optimized TPU
    // model quantization.
    std::unique_ptr<OperationPass<ModuleOp>> CreateCastBf16OpsToF32Pass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.h

    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "tensorflow/core/common_runtime/optimization_registry.h"
    
    namespace tensorflow {
    
    // Create a module pass that will execute the given TF GraphOptimization passes
    // in sequence.
    // Pass requires that the module ran on is convertible to TF Graph.
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 12 15:01:38 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Pass/PassOptions.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    
    namespace mlir {
    
    // Creates a pass that breaks up an island with multiple ops into multiple
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top