Home | History | Annotate | Download | only in compiler

Lines Matching refs:reducer

32 // A reducer can reduce or simplify a given node based on its operator and
33 // inputs. This class functions as an extension point for the graph reducer for
37 class Reducer {
39 Reducer() {}
40 virtual ~Reducer() {}
51 DISALLOW_COPY_AND_ASSIGN(Reducer);
62 void AddReducer(Reducer* reducer) { reducers_.push_back(reducer); }
71 ZoneVector<Reducer*> reducers_;