From c2c689582e83bb282f141211d4d7908971491324 Mon Sep 17 00:00:00 2001 From: Adam Osewski Date: Thu, 27 Aug 2020 09:26:25 +0200 Subject: [PATCH] Update Paddle-Lite commit hash. (#26413) * Update Paddle-Lite commit hash. * Add BF16 data type to VarTyp protobuf message. --- cmake/external/lite.cmake | 2 +- paddle/fluid/framework/framework.proto | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/cmake/external/lite.cmake b/cmake/external/lite.cmake index b541d73bc6a..8a655b2954d 100644 --- a/cmake/external/lite.cmake +++ b/cmake/external/lite.cmake @@ -34,7 +34,7 @@ if (NOT LITE_SOURCE_DIR OR NOT LITE_BINARY_DIR) set(LITE_INSTALL_DIR ${THIRD_PARTY_PATH}/install/lite) if(NOT LITE_GIT_TAG) - set(LITE_GIT_TAG 42ab4d559f6659edfc35040fb30fdcec3dc3f8aa) + set(LITE_GIT_TAG dfdfa6440c83bf0b415f9f5a9ff84842ce0bb0fa) endif() if(NOT CUDA_ARCH_NAME) diff --git a/paddle/fluid/framework/framework.proto b/paddle/fluid/framework/framework.proto index 84b5502ff7b..29312370b34 100644 --- a/paddle/fluid/framework/framework.proto +++ b/paddle/fluid/framework/framework.proto @@ -115,6 +115,7 @@ message VarType { SIZE_T = 19; UINT8 = 20; INT8 = 21; + BF16 = 22; // Other types that may need additional descriptions LOD_TENSOR = 7; -- GitLab