Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for addDump (0.98 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/benchmark_test.cc

    namespace benchmark {
    namespace {
    
    // There isn't much we can verify in a stable fashion, so we just run the
    // benchmark with max_iters, and ensure we end up with that many iter stats.
    TEST(Benchmark, Benchmark) {
      AddComp add;
    
      Options options;
      options.max_iters = 1;
      Stats stats1;
      Benchmark(options, [&] { add.Run(); }, &stats1);
      EXPECT_EQ(stats1.per_iter_us.size(), 1);
    
      options.max_iters = 5;
      Stats stats5;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 09 20:26:35 UTC 2017
    - 1.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tests/tfcompile_test.cc

    #endif
    
    namespace tensorflow {
    namespace tfcompile {
    namespace {
    
    using ::testing::HasSubstr;
    using ::testing::IsSupersetOf;
    
    TEST(TFCompileTest, Add) {
      AddComp add;
      EXPECT_EQ(add.arg0_data(), add.arg_data(0));
      EXPECT_EQ(add.arg1_data(), add.arg_data(1));
    
      add.arg0() = 1;
      add.arg1() = 2;
      EXPECT_TRUE(add.Run());
      EXPECT_EQ(add.error_msg(), "");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  5. 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