Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for REVISION (0.31 sec)

  1. configure.py

        properties_path = cygpath(properties_path)
      with open(properties_path, 'r') as f:
        filedata = f.read()
    
      revision = re.search(r'Pkg.Revision = (\d+)', filedata)
      if revision:
        ndk_version = revision.group(1)
      else:
        raise Exception('Unable to parse NDK revision.')
      if int(ndk_version) not in _SUPPORTED_ANDROID_NDK_VERSIONS:
        print('WARNING: The NDK version in %s is %s, which is not '
    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. RELEASE.md

    # Release 0.10.0
    
    ## Major Features and Improvements
    
    *   Added support for C++ shape inference
    *   Added graph-construction C API
    *   Major revision to the graph-construction C++ API
    *   Support makefile build for iOS
    *   Added Mac GPU support
    *   Full version of TF-Slim available as `tf.contrib.slim`
    *   Added k-Means clustering and WALS matrix factorization
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top