Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SplitsComp (0.08 sec)

  1. tensorflow/compiler/aot/tests/BUILD

            ),
            tf_library(
                name = "test_graph_tfsplits" + suffix,
                testonly = 1,
                config = "test_graph_tfsplits.config.pbtxt",
                cpp_class = "SplitsComp",
                graph = "test_graph_tfsplits.pb",
                mlir_components = mlir_component,
                tags = [
                    "manual",
                    "no_mac",  # TODO(b/228273415)
                ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tests/tfcompile_test.cc

      EXPECT_EQ(add_fn.result0_data(), add_fn.results()[0]);
    }
    
    TEST(TFCompileTest, Splits) {
      Eigen::ThreadPool tp(1);
      Eigen::ThreadPoolDevice device(&tp, tp.NumThreads());
    
      SplitsComp fn;
    
      fn.set_thread_pool(&device);
      // x = [[1, 2], [3, 4]]
      fn.arg0(0, 0) = 1;
      fn.arg0(0, 1) = 2;
      fn.arg0(1, 0) = 3;
      fn.arg0(1, 1) = 4;
    
      // y = [[10, 20], [30, 40]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
Back to top