Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for Ramesh (0.22 sec)

  1. RELEASE.md

    *   `tf.experimental.dtensor`
    
        *   Deprecated `dtensor.run_on` in favor of `dtensor.default_mesh` to correctly indicate that the context does not override the mesh that the ops and functions will run on, it only sets a fallback default mesh.
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
  2. CITATION.cff

        given-names: Lukasz
      - family-names: Kudlur
        given-names: Manjunath
      - family-names: Levenberg
        given-names: Josh
      - family-names: Mané
        given-names: Dan
      - family-names: Schuster
        given-names: Mike
      - family-names: Monga
        given-names: Rajat
      - family-names: Moore
        given-names: Sherry
      - family-names: Murray
        given-names: Derek
      - family-names: Olah
        given-names: Chris
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Sep 06 15:26:23 GMT 2021
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_experimental.cc

      std::set<std::string> attr_names;
    };
    
    TF_AttrBuilder* TF_NewAttrBuilder(const char* op_name) {
      return new TF_AttrBuilder(op_name);
    }
    
    void TF_DeleteAttrBuilder(TF_AttrBuilder* builder) { delete builder; }
    
    void TF_AttrBuilderSetType(TF_AttrBuilder* builder, const char* attr_name,
                               TF_DataType value) {
      auto iter = builder->attr_names.insert(attr_name).first;
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 29.4K bytes
    - Viewed (0)
  4. .github/workflows/update-rbe.yml

            }
            # See https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/toolchains/remote_config/configs.bzl
            # This is a mapping of name_container_map keys under sigbuild_tf_configs
            # to tag names on gcr.io/tensorflow-sigs/build.
            # TF 2.9
            map sigbuild-r2.9 2.9-python3.9
            map sigbuild-r2.9-python3.8 2.9-python3.8
            map sigbuild-r2.9-python3.9 2.9-python3.9
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Apr 10 15:40:34 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_cluster_test.cc

      ASSERT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    
      // TODO(b/136478427): Figure out how to correctly shut the server down.
      worker_server.release();
    
      // Update the server def with a new set of names (worker instead of
      // localhost).
      tensorflow::ServerDef updated_server_def = GetServerDef("worker", 2);
      serialized = updated_server_def.SerializeAsString();
    
      updated_server_def.set_task_index(1);
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Apr 14 10:03:59 GMT 2023
    - 19.3K bytes
    - Viewed (0)
  6. configure.py

            False,
            bazel_config_name='tensorrt')
    
        environ_save = dict(environ_cp)
        for _ in range(_DEFAULT_PROMPT_ASK_ATTEMPTS):
    
          if validate_cuda_config(environ_cp):
            cuda_env_names = [
                'TF_CUDA_VERSION',
                'TF_CUBLAS_VERSION',
                'TF_CUDNN_VERSION',
                'TF_TENSORRT_VERSION',
                'TF_NCCL_VERSION',
                'TF_CUDA_PATHS',
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/README.md

    ***tensorflow/c/experimental/ops/\*_ops.{cc,h}***.
    
    Run this `update_cpp_ops.sh` script when Op definitions change in the registry.
    
    To generate additional operators, extend the lists in this script. Note that
    category names correspond to generated source file names, and should be
    consistent with the original source files registering each operator. For example
    since `REGISTER_OP("MatMul")` appears in ***core/math_ops.cc***, the "MatMul"
    Plain Text
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Wed Jul 28 17:21:01 GMT 2021
    - 993 bytes
    - Viewed (0)
  8. tensorflow/c/experimental/grappler/grappler.h

    // Plugin should implement TF_InitGraph to register graph optimizers.
    void TF_InitGraph(TP_OptimizerRegistrationParams* params, TF_Status* status);
    
    // Get a set of node names that must be preserved. They can not be transformed
    // or removed during the graph transformation. This includes feed and fetch
    // nodes, keep_ops, init_ops. Fills in `num_values` and `storage_size`, they
    C
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Wed Aug 03 18:08:43 GMT 2022
    - 12.5K bytes
    - Viewed (0)
  9. tensorflow/c/c_test_util.cc

    std::vector<string> GetFuncNames(const tensorflow::GraphDef& graph_def) {
      std::vector<string> names;
      auto functions = graph_def.library().function();
      names.reserve(functions.size());
      for (const tensorflow::FunctionDef& func : functions) {
        names.push_back(func.signature().name());
      }
      std::sort(names.begin(), names.end());
      return names;
    }
    
    CSession::CSession(TF_Graph* graph, TF_Status* s, bool use_XLA) {
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Oct 15 03:16:52 GMT 2021
    - 17.8K bytes
    - Viewed (2)
  10. tensorflow/c/BUILD

        data = [
            ":test_op1.so",
            "//tensorflow/cc/saved_model:saved_model_half_plus_two",
        ],
        linkopts = select({
            "//tensorflow:macos": ["-headerpad_max_install_names"],
            "//conditions:default": [],
        }),
        tags = [
            "no_cuda_asan",  # TODO(b/181771536)
            "no_windows",  # TODO(b/155444728)
        ],
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 30.3K bytes
    - Viewed (0)
Back to top