Data Fields
ngraph::pass::SoftmaxFusion Class Reference

SoftmaxFusion transformation replaces following graph: More...

#include <softmax_fusion.hpp>

Inheritance diagram for ngraph::pass::SoftmaxFusion:

Data Fields

 NGRAPH_RTTI_DECLARATION
 

Detailed Description

SoftmaxFusion transformation replaces following graph:

       +---------------+
       │               │
       │     input     │
       │               │
       +---------------+
           │      │
           │      v
           │ +-----------+
           │ │           │
           │ │ ReduceMax │
           │ │           │
           │ +-----------+
           │      │
           │      │
           v      v
       +---------------+
       │               │
       │      Sub      │
       │               │
       +---------------+
               |
               |
               v
       +---------------+
       │               │
       │      Exp      │
       │               │
       +---------------+
           │      │
           │      v
           │ +-----------+
           │ │           │
           │ │ ReduceSum │
           │ │           │
           │ +-----------+
           │      │
           │      │
           v      v
        +-------------+
        |             │
        |     Div     │
        │             │
        +-------------+

to a single Softmax node


The documentation for this class was generated from the following file: