Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fresh (0.22 sec)

  1. tensorflow/c/c_api_test.cc

      // Import it in a fresh graph.
      TF_DeleteGraph(graph);
      graph = TF_NewGraph();
      TF_ImportGraphDefOptions* opts = TF_NewImportGraphDefOptions();
      TF_GraphImportGraphDef(graph, graph_def, opts, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      TF_Operation* scalar = TF_GraphOperationByName(graph, "scalar");
    
      // Import it in a fresh graph with an unused input mapping.
    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. ci/official/README.md

    #
    #   Important: because the container is persistent, you cannot change TFCI
    #   variables in between script executions. To forcibly remove the
    #   container and start fresh, run "docker rm -f tf". Removing the container
    #   destroys some temporary bazel data and causes longer builds.
    #
    #   You will need the NVIDIA Container Toolkit for GPU testing:
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Feb 01 03:21:19 GMT 2024
    - 8K bytes
    - Viewed (0)
  3. configure.py

          no_reply=no_reply,
          bazel_config_name='cuda_clang',
      )
    
    
    def set_tf_download_clang(environ_cp):
      """Set TF_DOWNLOAD_CLANG action_env."""
      question = 'Do you wish to download a fresh release of clang? (Experimental)'
      yes_reply = 'Clang will be downloaded and used to compile tensorflow.'
      no_reply = 'Clang will not be downloaded.'
      set_action_env_var(
          environ_cp,
          'TF_DOWNLOAD_CLANG',
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
Back to top