Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for scalars_test (0.27 sec)

  1. tensorflow/cc/experimental/libtf/impl/scalars_test.cc

    #include "tensorflow/cc/experimental/libtf/impl/scalars.h"
    
    #include "tensorflow/core/platform/test.h"
    
    namespace tf {
    namespace libtf {
    namespace impl {
    
    TEST(ScalarsTest, TestHeterogeneousAddition) {
      ASSERT_EQ((Int64(1) + Float32(0.375)).get(), 1.375);
    }
    
    }  // namespace impl
    }  // namespace libtf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 22:58:49 UTC 2021
    - 991 bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/impl/BUILD

            "//tensorflow/core:test_main",
        ],
    )
    
    cc_library(
        name = "scalars",
        hdrs = [
            "scalars.h",
        ],
    )
    
    tf_cc_test(
        name = "scalars_test",
        size = "small",
        srcs = ["scalars_test.cc"],
        deps = [
            ":scalars",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    )
    
    cc_library(
        name = "string",
        srcs = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 09:47:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/scalar_test.go

    Bryan C. Mills <******@****.***> 1692902414 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top