Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AddWithCkptComp (0.1 sec)

  1. tensorflow/compiler/aot/tests/BUILD

            ),
            tf_library(
                name = "test_graph_tfadd_with_ckpt" + suffix,
                testonly = 1,
                config = "test_graph_tfadd_with_ckpt.config.pbtxt",
                cpp_class = "AddWithCkptComp",
                freeze_checkpoint = "test_graph_tfadd_with_ckpt.ckpt",
                graph = "test_graph_tfadd_with_ckpt.pb",
                mlir_components = mlir_component,
                tags = [
                    "manual",
    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.error_msg(), "");
      EXPECT_EQ(add.result0(), 42);
      EXPECT_EQ(add.result0_data()[0], 42);
      EXPECT_EQ(add.result0_data(), add.results()[0]);
    }
    
    TEST(TFCompileTest, AddWithCkpt) {
      AddWithCkptComp add;
      EXPECT_EQ(add.arg0_data(), add.arg_data(0));
    
      add.arg0() = 1;
      EXPECT_TRUE(add.Run());
      EXPECT_EQ(add.error_msg(), "");
      EXPECT_EQ(add.result0(), 43);
      EXPECT_EQ(add.result0_data()[0], 43);
    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