From acc15ae822b6fd11ad5ad5c9f5da7859209869fd Mon Sep 17 00:00:00 2001 From: Gunhan Gulsoy Date: Mon, 4 Nov 2019 09:55:41 -0800 Subject: [PATCH] Create a readme file describing what should be in core/platform. PiperOrigin-RevId: 278403043 Change-Id: Ifa49b2bb9e280335df82cd883dab1956bf6624e2 --- tensorflow/core/platform/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tensorflow/core/platform/README.md diff --git a/tensorflow/core/platform/README.md b/tensorflow/core/platform/README.md new file mode 100644 index 00000000000..f5ca19eaf5c --- /dev/null +++ b/tensorflow/core/platform/README.md @@ -0,0 +1,8 @@ +# TensorFlow Base libraries. + This package contains the following libraries: + - Platform dependent libraries that require different implementations + across different OSs or environments. + - STL replacement libraries rest of TensorFlow should depend on. + + The libraries in this package are not allowed to have ANY dependencies + to any TensorFlow code outside this package.