From b3079e7fa5c3950c273f85ca620e050d776b88ac Mon Sep 17 00:00:00 2001 From: Liangliang He Date: Tue, 29 May 2018 09:29:51 +0800 Subject: [PATCH] Add responsiveness docs --- README.md | 4 ++++ README_zh.md | 3 +++ 2 files changed, 7 insertions(+) diff --git a/README.md b/README.md index 7b37dcf0..7a0afcc1 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,10 @@ targets: * Power consumption * Chip dependent power options like big.LITTLE scheduling, Adreno GPU hints are included as advanced API. +* Responsiveness + * UI responsiveness gurantee is sometimes obligatory when runing a model. + Mechanism like automatically breaking OpenCL kernel into small units is + introduced to allow better preemption for the UI rendering task. * Memory usage and library footprint * Graph level memory allocation optimization and buffer reuse is supported. The core library tries to keep minium external dependencies to keep the diff --git a/README_zh.md b/README_zh.md index a2556368..64af32eb 100644 --- a/README_zh.md +++ b/README_zh.md @@ -17,6 +17,9 @@ 此外,还对启动速度进行了专门的优化。 * 功耗 * 支持芯片的功耗管理,例如ARM的big.LITTLE调度,以及高通Adreno GPU功耗选项。 +* 系统响应 + * 支持自动拆解长时间的OpenCL计算任务,来保证UI渲染任务能够做到较好的抢占调度, + 从而保证系统UI的相应和用户体验。 * 内存占用 * 通过运用内存依赖分析技术,以及内存复用,减少内存的占用。另外,保持尽量少的外部 依赖,保证代码尺寸精简。 -- GitLab