Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for puts (0.13 sec)

  1. tensorflow/c/c_api_test.cc

          EXPECT_EQ(list[i][j], values[i][j]) << "(" << i << ", " << j << ")";
        }
      }
    }
    
    TEST_F(CApiAttributesTest, TensorShapeProto) {
      const int64_t pts[] = {2, 4, -1, 8};
      tensorflow::TensorShapeProto proto;
      tensorflow::PartialTensorShape(pts).AsProto(&proto);
      string bytes;
      proto.SerializeToString(&bytes);
    
      auto desc = init("shape");
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  2. tensorflow/BUILD

        srcs = select({
            "api_version_2": [":virtual_root_template_v2.__init__.py"],
            "//conditions:default": [":virtual_root_template_v1.__init__.py"],
        }),
        outs = ["virtual_root.__init__.py"],
        cmd = "cp $(SRCS) $(OUTS)",
    )
    
    generate_apis(
        name = "tf_python_api_gen_v1",
        api_version = 1,
        compat_api_versions = [
            1,
            2,
        ],
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
  3. .bazelrc

    # the pip package on Windows without an intermediate data-file archive, as the
    # build_pip_package script in its current form (as of Aug 2023) uses the
    # runfiles symlink tree to decide what to put into the Python wheel.
    startup --windows_enable_symlinks
    build:windows --enable_runfiles
    
    # Default paths for TF_SYSTEM_LIBS
    build:linux --define=PREFIX=/usr
    build:linux --define=LIBDIR=$(PREFIX)/lib
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Thu May 02 19:34:20 GMT 2024
    - 52.8K bytes
    - Viewed (2)
Back to top