STT-tensorflow/tensorflow/python/platform
Austin Anderson 0a2db3d354 Provide NVIDIA CUDA build data in metadata and API
This change is a second attempt at #38964, which was rolled back because it was fragile.

First, cuda_configure.bzl templates a file with data it already pulled from get_cuda_config. gen_build_info loads that file to provide package
build information within TensorFlow:

    from tensorflow.python.platform import build_info
    print(build_info.build_info)
    {'cuda_version': '10.2', 'cudnn_version': '7', ... }

Also is exposed through tf.sysconfig.get_build_info(), a public API change.

setup.py pulls build_info into package metadata. The wheel's
long description ends with:

    TensorFlow 2.2.0 for NVIDIA GPUs was built with these platform
    and library versions:

      - NVIDIA CUDA 10.2
      - NVIDIA cuDNN 7
      - NVIDIA CUDA Compute Capabilities compute_30, compute_70 (etc.)

I set one of the new CUDA Classifiers, and add metadata to the "platform" tag:

    >>> import pkginfo
    >>> a = pkginfo.Wheel('./tf_nightly_gpu-2.1.0-cp36-cp36m-linux_x86_64.whl')
    >>> a.platforms
    ['cuda_version:10.2', 'cudnn_version:7', ...]

I'm not 100% confident this is the best way to accomplish this. It
still seems odd to import like this setup.py, even though it works, even in
an environment with TensorFlow installed. This method is much better than the old method as it uses data that was already gathered. It could be extended to gather tensorrt, nccl, etc. from other .bzl files, but I wanted to get feedback (and ensure this lands in 2.3) before designing something like that.

Currently tested only on Linux GPU (Remote Build) for Python 3.6. I'd
like to see more tests before merging.

The API is the same as the earlier change.

Resolves https://github.com/tensorflow/tensorflow/issues/38351.

PiperOrigin-RevId: 315018663
Change-Id: Idf68a8fe4d1585164d22b5870894c879537c280d
2020-06-05 16:44:24 -07:00
..
__init__.py Add tensorflow/python/platform/__init__.py for clearer error msg. 2018-11-15 12:24:30 -08:00
analytics.py minor changes in tensor tracer. 2019-10-15 15:26:10 -07:00
app_test.py Change app.py() to pass through unparsed flags. 2016-08-23 19:15:36 -07:00
app.py Automated rollback of commit 2435a1875b 2019-01-23 13:18:26 -08:00
benchmark_test.py Avoid using hardcoded path in benchmark_test 2020-02-19 09:42:08 -08:00
benchmark.py tf.Benchmark: add mean and stdev of the wall time to unreported extras. 2020-02-20 15:54:30 -08:00
build_info_test.py Provide NVIDIA CUDA build data in metadata and API 2020-06-05 16:44:24 -07:00
control_imports.py Branch 152232810 (#8988) 2017-04-05 14:10:53 -07:00
device_context.py Minor change to depthwise convolution with dilation. 2019-12-06 11:07:32 -08:00
flags_test.py Continue to allow flag access before explicit parse. 2017-12-14 11:16:15 -08:00
flags.py Small adjustments on import spacing. 2019-12-18 20:32:12 -08:00
gfile.py tf.gfile is now tf.io.gfile. 2020-02-07 08:33:29 -08:00
googletest.py Small adjustments on import spacing. 2019-12-18 20:32:12 -08:00
logging_test.py Update copyright for 3p/tf/python. 2016-06-02 13:38:16 -07:00
parameterized.py Update copyright for 3p/tf/python. 2016-06-02 13:38:16 -07:00
remote_utils.py Move default protocol parameter to a platforms library. 2019-07-31 15:11:49 -07:00
resource_loader_test.py Write an actual test for resource_loader_test 2020-02-07 15:44:13 -08:00
resource_loader.py Automated rollback of commit 2af37fc088 2020-02-10 11:54:00 -08:00
self_check.py Provide NVIDIA CUDA build data in metadata and API 2020-06-05 16:44:24 -07:00
stacktrace_handler_test.py Use Popen.communicate() instead of read() in stacktrace_handler_test.py. 2018-01-29 14:45:38 -08:00
stacktrace_handler_wrapper.cc systemlibs: unbundle pybind11 2020-04-08 03:38:38 +08:00
status_bar.py Update copyright for 3p/tf/python. 2016-06-02 13:38:16 -07:00
sysconfig_test.py Provide NVIDIA CUDA build data in metadata and API 2020-06-05 16:44:24 -07:00
sysconfig.py Provide NVIDIA CUDA build data in metadata and API 2020-06-05 16:44:24 -07:00
test.py Remove useless self-link and python version note. 2020-02-19 16:52:48 -08:00
tf_logging.py Merge pull request #33953 from yongtang:33799-_logger_find_caller-3.8 2019-11-07 03:23:19 -08:00