From fd3e869b6a03e2eed55c6aab8c14c94408209dd0 Mon Sep 17 00:00:00 2001 From: xsrobin <50069408+xsrobin@users.noreply.github.com> Date: Thu, 18 Jul 2019 20:53:26 +0800 Subject: [PATCH] modify display fault (#1016) --- doc/fluid/design/motivation/refactorization.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/doc/fluid/design/motivation/refactorization.md b/doc/fluid/design/motivation/refactorization.md index c3fe6a8be..10c9dd02a 100644 --- a/doc/fluid/design/motivation/refactorization.md +++ b/doc/fluid/design/motivation/refactorization.md @@ -125,12 +125,9 @@ Compile Time -> IR -> Runtime ## Operator/OpWithKernel/OpKernel -![class_diagram](https://raw.githubusercontent.com/PaddlePaddle/FluidDoc/develop/doc/fluid/images/op_op_with_kern_class_diagram.dot) - --- ## Operator -![class_diagram](https://raw.githubusercontent.com/PaddlePaddle/FluidDoc/develop/doc/fluid/images/op.dot) * `Operator` is the fundamental building block of the user interface. * Operator stores input/output variable names and attributes. @@ -141,8 +138,6 @@ Compile Time -> IR -> Runtime ## OpWithKernel/Kernel -![class_diagram](https://raw.githubusercontent.com/PaddlePaddle/FluidDoc/develop/doc/fluid/images/op_with_kernel.dot) - * `OpWithKernel` inherits `Operator`. * `OpWithKernel` contains a Kernel map. * `OpWithKernel::Run` get device's kernel, and invoke `OpKernel::Compute`. -- GitLab