-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[REFACTOR] IRPrinter->NodePrinter, move to node/printer.h
Rationale: printer is a common infra that is shared across all nodes.
- Loading branch information
Showing
35 changed files
with
365 additions
and
303 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
/*! | ||
* \file tvm/node/printer.h | ||
* \brief Printer class to print repr string of each AST/IR nodes. | ||
*/ | ||
#ifndef TVM_NODE_PRINTER_H_ | ||
#define TVM_NODE_PRINTER_H_ | ||
|
||
#include <tvm/node/functor.h> | ||
#include <iostream> | ||
|
||
namespace tvm { | ||
/*! \brief A printer class to print the AST/IR nodes. */ | ||
class NodePrinter { | ||
public: | ||
/*! \brief The output stream */ | ||
std::ostream& stream; | ||
/*! \brief The indentation level. */ | ||
int indent{0}; | ||
|
||
explicit NodePrinter(std::ostream& stream) // NOLINT(*) | ||
: stream(stream) {} | ||
|
||
/*! \brief The node to be printed. */ | ||
TVM_DLL void Print(const ObjectRef& node); | ||
/*! \brief Print indent to the stream */ | ||
TVM_DLL void PrintIndent(); | ||
// Allow registration to be printer. | ||
using FType = NodeFunctor<void(const ObjectRef&, NodePrinter*)>; | ||
TVM_DLL static FType& vtable(); | ||
}; | ||
} // namespace tvm | ||
|
||
namespace tvm { | ||
namespace runtime { | ||
// default print function for all objects | ||
// provide in the runtime namespace as this is where objectref originally comes from. | ||
inline std::ostream& operator<<(std::ostream& os, const ObjectRef& n) { // NOLINT(*) | ||
NodePrinter(os).Print(n); | ||
return os; | ||
} | ||
} // namespace runtime | ||
} // namespace tvm | ||
#endif // TVM_NODE_PRINTER_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.