Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Monnet (0.18 sec)

  1. tensorflow/c/c_api.h

    // TF_ServerClose).
    TF_CAPI_EXPORT extern void TF_ServerJoin(TF_Server* server, TF_Status* status);
    
    // Returns the target string that can be provided to TF_SetTarget() to connect
    // a TF_Session to `server`.
    //
    // The returned string is valid only until TF_DeleteServer is invoked.
    TF_CAPI_EXPORT extern const char* TF_ServerTarget(TF_Server* server);
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  2. ci/devinfra/docker_windows/Dockerfile

    FROM mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2019
    
    # Set default powershell policy for this script (ProgressPreference='SilentlyContinue' makes
    # downloads with Invoke-WebRequest not show the progress bar and is MUCH faster).
    SHELL ["powershell.exe", "-ExecutionPolicy", "Bypass", "-Command", "$ErrorActionPreference='Stop'; $ProgressPreference='SilentlyContinue'; $VerbosePreference = 'Continue';"]
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Aug 18 17:24:20 GMT 2023
    - 13.6K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_cluster_test.cc

    }
    
    void TestConnectToCluster(bool keep_localhost_for_first_connect) {
      // Fail fast on GetStatus requests so we can get errors instead of timeout
      // when updating cluster with non-exsitent worker
      tensorflow::setenv("GRPC_FAIL_FAST", "TRUE", /*overwrite=*/1);
    
      const string first_name =
          keep_localhost_for_first_connect ? "localhost" : "abc";
      tensorflow::ServerDef server_def = GetServerDef(first_name, 1);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Apr 14 10:03:59 GMT 2023
    - 19.3K bytes
    - Viewed (0)
  4. RELEASE.md

    *   Python 3.3+ support via changes to python codebase and ability to specify
        python version via ./configure.
    
    *   Some improvements to GPU performance and memory usage:
        [convnet benchmarks](https://github.com/soumith/convnet-benchmarks/issues/66)
        roughly equivalent with native cudnn v2 performance. Improvements mostly due
        to moving to 32-bit indices, faster shuffling kernels. More improvements to
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top