Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lab_6_Manipulating_ONNC_IR/lab_6.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ Pass is an abstraction of each execution in ONNC framework. It is designed for m
First, create a pass by inheriting from the `CustomPass<T>` abstract class.

```cpp
// GraphvizONNCIRPass.h

#include <onnc/Core/CustomPass.h>

class GraphvizONNCIRPass : public CustomPass<GraphvizONNCIRPass>
Expand Down