Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for corners (0.29 sec)

  1. CODEOWNERS

    # Where component owners are known, add them here.
    
    /tensorflow/c/eager @qqfish
    /tensorflow/core/common_runtime/eager @qqfish
    /tenosrflow/core/debug @caisq
    /tensorflow/core/kernels/mkl/ @penpornk
    /tensorflow/core/kernels/sparse/ @penpornk
    /tensorflow/core/nccl/ @azaks2 @chsigg
    /tensorflow/python/autograph/ @mdanatg
    /tensorflow/python/debug @caisq
    /tensorflow/python/eager @rohan100jain
    /tensorflow/tools/docs/ @markdaoust
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 21:02:49 GMT 2022
    - 563 bytes
    - Viewed (0)
  2. ci/official/README.md

        -   Uses `pycpp.sh`
    -   Presubmit jobs (Run on every GitHub PR)
        -   Uses `pycpp.sh`, `code_check_changed_files.sh`
    
    These "env" files match up with an environment matrix that roughly covers:
    
    -   Different Python versions
    -   Linux, MacOS, and Windows machines (these pool definitions are internal)
    -   x86 and arm64
    -   CPU-only, or with NVIDIA CUDA support (Linux only), or with TPUs
    
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Feb 01 03:21:19 GMT 2024
    - 8K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_experimental.h

    // Dynamic cluster API.
    
    // Update an existing context with a new set of servers defined in a ServerDef
    // proto. Servers can be added to and removed from the list of remote workers
    // in the context. A New set of servers identified by the ServerDef must be up
    // when the context is updated.
    //
    // This API is for experimental usage and may be subject to change.
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Feb 21 22:37:46 GMT 2024
    - 39.5K bytes
    - Viewed (0)
  4. RELEASE.md

    *   `tf.data`:
    
        *   Added `target_workers` param to `data_service_ops.from_dataset_id` and
            `data_service_ops.distribute`. Users can specify `"AUTO"`, `"ANY"`, or
            `"LOCAL"` (case insensitive). If `"AUTO"`, tf.data service runtime
            decides which workers to read from. If `"ANY"`, TF workers read from any
            tf.data service workers. If `"LOCAL"`, TF workers will only read from
    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)
  5. SECURITY.md

    vulnerabilities to the vendor of the affected hardware accelerator.
    
    ## Reporting vulnerabilities
    
    ### Vulnerabilities in TensorFlow
    
    This document covers different use cases for TensorFlow together with comments
    whether these uses were recommended or considered safe, or where we recommend
    some form of isolation when dealing with untrusted data. As a result, this
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sun Oct 01 06:06:35 GMT 2023
    - 9.6K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/filesystem_interface.h

    ///     break ABI compatibility and cause all plugins to be recompiled, these
    ///     type of changes should be extremely rare.
    ///
    /// Next section will detail this as well as some corner cases that are out of
    /// scope for now.
    
    // LINT.IfChange
    typedef struct TF_RandomAccessFileOps {
      /// Releases resources associated with `*file`.
      ///
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  7. tensorflow/c/eager/immediate_execution_distributed_manager.h

                                          bool clear_existing_contexts = false) = 0;
    
      // Initializes context for the local worker and no contexts will be created
      // for remote workers. Currently this only works for resetting context.
      // TODO(b/289445025): Consider removing this when we find a proper fix.
      virtual Status InitializeLocalOnlyContext(const ServerDef& server_def,
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Feb 21 22:37:46 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_test.cc

      }
    
      return single_host_server_def;
    }
    
    tensorflow::ServerDef GetClusterServerDef(const string& worker_job_name,
                                              int num_workers) {
      tensorflow::ServerDef server_def = GetServerDef(worker_job_name, num_workers);
      tensorflow::ClusterDef* cluster_def = server_def.mutable_cluster();
    
      // Add a client.
      tensorflow::JobDef* job_def2 = cluster_def->add_job();
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Aug 03 20:50:20 GMT 2023
    - 94.6K bytes
    - Viewed (1)
  9. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      FileSystem* fs = nullptr;
      Status s = env_->GetFileSystemForFile(generic_path, &fs);
      if (fs == nullptr || !s.ok())
        GTEST_SKIP() << "No filesystem registered: " << s;
    
      // First, test some interesting corner cases concerning empty URIs
      if (GetParam().empty()) {
        EXPECT_EQ(fs->TranslateName(""), "");
        EXPECT_EQ(fs->TranslateName("/"), "/");
        EXPECT_EQ(fs->TranslateName("//"), "/");
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 20:25:58 GMT 2022
    - 71K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api.h

    TF_CAPI_EXPORT extern TFE_ContextDevicePlacementPolicy
    TFE_ContextGetDevicePlacementPolicy(TFE_Context* ctx);
    
    // A tensorflow.ServerDef specifies remote workers (in addition to the current
    // workers name). Operations created in this context can then be executed on
    // any of these remote workers by setting an appropriate device.
    //
    // If the following is set, all servers identified by the
    // ServerDef must be up when the context is created.
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Apr 27 21:07:00 GMT 2023
    - 22.8K bytes
    - Viewed (1)
Back to top