From e1a3d37f8caae298f002937163a3b7fb8f103350 Mon Sep 17 00:00:00 2001 From: Cycatz Date: Mon, 14 Mar 2022 20:59:12 +0800 Subject: [PATCH] [lab 6] add current file name in the code example --- lab_6_Manipulating_ONNC_IR/lab_6.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lab_6_Manipulating_ONNC_IR/lab_6.md b/lab_6_Manipulating_ONNC_IR/lab_6.md index 46cec59..dddf468 100644 --- a/lab_6_Manipulating_ONNC_IR/lab_6.md +++ b/lab_6_Manipulating_ONNC_IR/lab_6.md @@ -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` abstract class. ```cpp +// GraphvizONNCIRPass.h + #include class GraphvizONNCIRPass : public CustomPass