Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 974 for pass2 (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger_test.cc

                                         &mlir_module_with_add));
    
      std::unique_ptr<mlir::Pass> partitioning_pass =
          mlir::TFTPU::CreateTPUResourceReadsWritesPartitioningPass();
      std::unique_ptr<mlir::Pass> shape_inference_pass =
          mlir::TF::CreateTFShapeInferencePass();
      std::unique_ptr<mlir::Pass> inliner_pass = mlir::createInlinerPass();
    
      // partitioning_pass and shape_inference_pass should match the filter,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/composite.go

    // unkeyed fields.
    func run(pass *analysis.Pass) (interface{}, error) {
    	inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
    
    	nodeFilter := []ast.Node{
    		(*ast.CompositeLit)(nil),
    	}
    	inspect.Preorder(nodeFilter, func(n ast.Node) {
    		cl := n.(*ast.CompositeLit)
    
    		typ := pass.TypesInfo.Types[cl].Type
    		if typ == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/cmd/internal/test2json/testdata/frame.json

    {"Action":"output","Test":"TestAscii","Output":"--- PASS: TestAscii\n"}
    {"Action":"output","Test":"TestAscii","Output":"    i can eat glass, and it doesn't hurt me. i can eat glass, and it doesn't hurt me.\n"}
    {"Action":"output","Test":"TestAscii","Output":"FAIL\n"}
    {"Action":"pass","Test":"TestAscii"}
    {"Action":"output","Output":"PASS\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 563 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unsafeptr/unsafeptr.go

    		case *ast.CallExpr:
    			if len(x.Args) == 1 &&
    				hasBasicType(pass.TypesInfo, x.Fun, types.UnsafePointer) &&
    				hasBasicType(pass.TypesInfo, x.Args[0], types.Uintptr) &&
    				!isSafeUintptr(pass.TypesInfo, x.Args[0]) {
    				pass.ReportRangef(x, "possible misuse of unsafe.Pointer")
    			}
    		case *ast.StarExpr:
    			if t := pass.TypesInfo.Types[x].Type; isReflectHeader(t) {
    				pass.ReportRangef(x, "possible misuse of %s", t)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/structtag/structtag.go

    	RunDespiteErrors: true,
    	Run:              run,
    }
    
    func run(pass *analysis.Pass) (interface{}, error) {
    	inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
    
    	nodeFilter := []ast.Node{
    		(*ast.StructType)(nil),
    	}
    	inspect.Preorder(nodeFilter, func(n ast.Node) {
    		styp, ok := pass.TypesInfo.Types[n.(*ast.StructType)].Type.(*types.Struct)
    		// Type information may be incomplete.
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/data_dumper_logger_config.cc

        mlir::Pass *pass, mlir::Operation *op, PrintCallbackFn print_callback) {
      std::string pass_name = pass->getName().str();
      std::string filename =
          get_filename_(pass_prefix_ + "before_" + pass_name, op);
    
      if (ShouldPrint(pass, op)) DumpMlir(filename, print_callback);
    }
    
    void DataDumperLoggerConfig::printAfterIfEnabled(
        mlir::Pass *pass, mlir::Operation *op, PrintCallbackFn print_callback) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 00:41:24 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGFilteringIntegrationTest.groovy

                ${testFrameworkImports}
                public class FooTest {
                    @Test public void pass() {}
                }
            """
            file("src/test/java/BarTest.java") << """
                ${testFrameworkImports}
                public class BarTest {
                    @Test public void pass() {}
                }
            """
            file("src/test/java/BazTest.java") << """
                ${testFrameworkImports}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h

    // Creates a pass that inserts CalibrationStatisticsSaverOp.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateInsertCalibrationStatisticsSaverPass(
        StringRef calibration_data_dir,
        const std::vector<std::string>& aggregator_ops_to_ignore);
    
    // Adds generated pass default constructors or options definitions.
    #define GEN_PASS_DECL
    // Adds generated pass registration functions.
    #define GEN_PASS_REGISTRATION
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unmarshal/unmarshal.go

    	URL:      "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/unmarshal",
    	Requires: []*analysis.Analyzer{inspect.Analyzer},
    	Run:      run,
    }
    
    func run(pass *analysis.Pass) (interface{}, error) {
    	switch pass.Pkg.Path() {
    	case "encoding/gob", "encoding/json", "encoding/xml", "encoding/asn1":
    		// These packages know how to use their own APIs.
    		// Sometimes they are testing what happens to incorrect programs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/internal/test2json/testdata/issue29755.json

    {"Action":"output","Test":"TestOutputWithSubtest","Output":"    foo_test.go:27: output from root test\n"}
    {"Action":"pass","Test":"TestOutputWithSubtest/sub_test/sub2"}
    {"Action":"pass","Test":"TestOutputWithSubtest/sub_test"}
    {"Action":"output","Test":"TestOutputWithSubtest/sub_test2","Output":"    --- PASS: TestOutputWithSubtest/sub_test2 (0.00s)\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top