Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for opt (0.53 sec)

  1. configure.py

      for opt in cc_opt_flags.split():
        write_to_bazelrc('build:opt --copt=%s' % opt)
        write_to_bazelrc('build:opt --host_copt=%s' % opt)
    
    
    def set_tf_cuda_clang(environ_cp):
      """set TF_CUDA_CLANG action_env.
    
      Args:
        environ_cp: copy of the os.environ.
      """
      question = 'Do you want to use clang as CUDA compiler?'
      yes_reply = 'Clang will be used as CUDA compiler.'
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (1)
  2. .bazelrc

    # Misc build options we need for windows.
    build:windows --linkopt=/DEBUG
    build:windows --host_linkopt=/DEBUG
    build:windows --linkopt=/OPT:REF
    build:windows --host_linkopt=/OPT:REF
    build:windows --linkopt=/OPT:ICF
    build:windows --host_linkopt=/OPT:ICF
    
    # Verbose failure logs when something goes wrong
    build:windows --verbose_failures
    
    # Work around potential issues with large command lines on windows.
    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)
  3. tensorflow/c/c_api_test.cc

    }
    
    TEST(CAPI, SessionOptions) {
      TF_SessionOptions* opt = TF_NewSessionOptions();
      TF_DeleteSessionOptions(opt);
    }
    
    TEST(CAPI, DeprecatedSession) {
      TF_Status* s = TF_NewStatus();
      TF_SessionOptions* opt = TF_NewSessionOptions();
      TF_DeprecatedSession* session = TF_NewDeprecatedSession(opt, s);
      TF_DeleteSessionOptions(opt);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
    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)
  4. kotlin-js-store/yarn.lock

        "@webassemblyjs/ieee754" "1.11.6"
        "@webassemblyjs/leb128" "1.11.6"
        "@webassemblyjs/utf8" "1.11.6"
    
    "@webassemblyjs/wasm-opt@1.11.6":
      version "1.11.6"
      resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz#d9a22d651248422ca498b09aa3232a81041487c2"
      integrity sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==
      dependencies:
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jul 22 12:28:51 GMT 2023
    - 87.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.3.md

        * In order to remain backwards compatible, the new controller only manages attach/detach of volumes that are scheduled to nodes that opt-in to controller management. Nodes running v1.3 or higher of Kubernetes opt-in to controller management by default by setting the "volumes.kubernetes.io/controller-managed-attach-detach" annotation on the Node object on startup. This behavior is gated by a new kubelet flag, "enable-con...
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Viewed (0)
  6. tensorflow/BUILD

        values = {
            "compilation_mode": "dbg",
        },
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "optimized",
        values = {
            "compilation_mode": "opt",
        },
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "arm",
        values = {"cpu": "arm"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
    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)
  7. docs/changelogs/changelog_3x.md

     *  Fix: Don't change Conscrypt configuration globally. We migrated from a process-wide setting to
        configuring only OkHttp's TLS sockets.
     *  Fix: Prefer TLSv1.2 where it is available. On certain older platforms it is necessary to opt-in
        to TLSv1.2.
     *  New: `Request.tag()` permits multiple tags. Use a `Class<?>` as a key to identify tags. Note
        that `tag()` now returns null if the request has no tag. Previously this would return the
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.h

    TF_CAPI_EXPORT extern void TF_DeleteDeprecatedSession(TF_DeprecatedSession*,
                                                          TF_Status* status);
    TF_CAPI_EXPORT extern void TF_Reset(const TF_SessionOptions* opt,
                                        const char** containers, int ncontainers,
                                        TF_Status* status);
    // Treat the bytes proto[0,proto_len-1] as a serialized GraphDef and
    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)
Back to top