Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for addDump (0.11 sec)

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

    	test     int             // pass-specific ad-hoc option, perhaps useful in development
    	dump     map[string]bool // dump if function name matches
    }
    
    func (p *pass) addDump(s string) {
    	if p.dump == nil {
    		p.dump = make(map[string]bool)
    	}
    	p.dump[s] = true
    }
    
    func (p *pass) String() string {
    	if p == nil {
    		return "nil pass"
    	}
    	return p.name
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/BUILD

        config = "test_graph_tfadd.config.pbtxt",
        cpp_class = "AddComp",
        graph = "test_graph_tfadd.pbtxt",
        mlir_components = "None",
        tags = [
            "manual",
        ],
    )
    
    tf_library(
        name = "test_graph_tfadd_mlir_bridge",
        testonly = 1,
        config = "test_graph_tfadd.config.pbtxt",
        cpp_class = "AddComp",
        graph = "test_graph_tfadd.pbtxt",
        mlir_components = "Bridge",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tests/BUILD

    ]
    
    [
        [
            tf_library(
                name = "test_graph_tfadd" + suffix,
                testonly = 1,
                config = "test_graph_tfadd.config.pbtxt",
                cpp_class = "AddComp",
                graph = "test_graph_tfadd.pb",
                # This serves as a test for the list of minimal deps included even when
                # include_standard_runtime_deps is False.  If this target fails to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top