Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for libraries (0.17 sec)

  1. configure.py

          env[k] = v
        return env
    
      cuda_libraries = ['cuda', 'cudnn']
      if is_linux():
        if int(environ_cp.get('TF_NEED_TENSORRT', False)):
          cuda_libraries.append('tensorrt')
        if environ_cp.get('TF_NCCL_VERSION', None):
          cuda_libraries.append('nccl')
      if is_windows():
        if int(environ_cp.get('TF_NEED_TENSORRT', False)):
          cuda_libraries.append('tensorrt')
    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)
  2. tensorflow/api_template_v1.__init__.py

          "keras.api._v1.keras.__internal__.legacy.rnn_cell")
    _current_module.nn.__path__ = [_module_dir] + _current_module.nn.__path__
    
    del importlib
    
    # Load all plugin libraries from site-packages/tensorflow-plugins if we are
    # running under pip.
    # TODO(gunan): Find a better location for this code snippet.
    from tensorflow.python.framework import load_library as _ll
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Jan 23 02:14:00 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  3. tensorflow/api_template.__init__.py

    _current_module.__path__ = [_module_dir] + _current_module.__path__
    
    
    # Enable TF2 behaviors
    from tensorflow.python.compat import v2_compat as _compat
    _compat.enable_v2_behavior()
    _major_api_version = 2
    
    
    # Load all plugin libraries from site-packages/tensorflow-plugins if we are
    # running under pip.
    # TODO(gunan): Find a better location for this code snippet.
    from tensorflow.python.framework import load_library as _ll
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Mar 05 06:27:59 GMT 2024
    - 6.7K bytes
    - Viewed (3)
Back to top