Fix doc in TF_CALL_ when invoked in mobile platform ()

* Fix doc in TF_CALL_ when defined(IS_MOBILE_PLATFORM) && !defined(__ANDROID_TYPES_FULL__)

This is a small doc fix that includes bool as part of the types
that is supported in mobile (IS_MOBILE_PLATFORM && !__ANDROID_TYPES_FULL__),
as bool is clearly invoked in the following define.

Signed-off-by: Yong Tang <yong.tang.github@outlook.com>

* Also add bool to android full version.

Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This commit is contained in:
Yong Tang 2017-10-21 10:06:45 -07:00 committed by Vijay Vasudevan
parent d7409d32bb
commit 9d55c249c1

View File

@ -87,7 +87,7 @@ limitations under the License.
#elif defined(__ANDROID_TYPES_FULL__)
// Only half, float, int32, int64, and quantized types are supported.
// Only half, float, int32, int64, bool, and quantized types are supported.
#define TF_CALL_float(m) m(float)
#define TF_CALL_double(m)
#define TF_CALL_int32(m) m(::tensorflow::int32)
@ -117,7 +117,7 @@ limitations under the License.
#else // defined(IS_MOBILE_PLATFORM) && !defined(__ANDROID_TYPES_FULL__)
// Only float and int32 are supported.
// Only float, int32, and bool are supported.
#define TF_CALL_float(m) m(float)
#define TF_CALL_double(m)
#define TF_CALL_int32(m) m(::tensorflow::int32)