Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for while_loop_test (0.23 sec)

  1. tensorflow/cc/ops/while_loop_test.cc

    #include "tensorflow/core/lib/core/status_test_util.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace tensorflow {
    
    namespace {
    
    class WhileLoopTest : public ::testing::Test {
     protected:
      WhileLoopTest() : scope_(Scope::NewRootScope()) {}
    
      void Init(int num_inputs, DataType dtype = DT_INT32) {
        for (int i = 0; i < num_inputs; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 22:30:58 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. tensorflow/c/while_loop_test.cc

    A. Unique TensorFlower <******@****.***> 1712813548 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/device_copy.mlir

        func.return %outputs_0, %outputs_1 : tensor<2x2xf32>, tensor<2x2xf32>
    }
    
    // CHECK: func @while_loop_test(%[[ARG_0:.*]]: tensor<i32>, %[[ARG_1:.*]]: tensor<i32>, %arg2: tensor<*xf32>)
    func.func @while_loop_test(%arg0: tensor<i32>, %arg1: tensor<i32>, %arg2: tensor<*xf32>) {
      // CHECK-NEXT: tf.WhileRegion
      %0:2 = "tf.WhileRegion"(%arg0, %arg2) ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  4. tensorflow/c/BUILD

            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    )
    
    tf_cc_test(
        name = "while_loop_test",
        size = "medium",
        srcs = ["while_loop_test.cc"],
        deps = [
            ":c_api",
            ":c_test_util",
            "//tensorflow/core:lib",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. tensorflow/cc/BUILD

        ],
        deps = [
            "//tensorflow/core:core_cpu",
            "//tensorflow/core:framework",
        ],
    )
    
    tf_cc_test(
        name = "ops_while_loop_test",
        size = "small",
        srcs = ["ops/while_loop_test.cc"],
        deps = [
            ":cc_ops",
            ":client_session",
            ":testutil",
            ":while_loop",
            "//tensorflow/core:core_cpu",
            "//tensorflow/core:test",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top