Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow for null compliant_custom_ops and null m.non_compliant_ops #82

Merged
merged 1 commit into from
Dec 5, 2024
Merged
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
4 changes: 4 additions & 0 deletions src/templates.rs
Original file line number Diff line number Diff line change
Expand Up @@ -270,14 +270,18 @@ pub static TEMPLATE_COMPILATION_METRICS: &str = r#"
<p>Graph Nodes: {m.graph_node_count}</p>
<p>Graph Inputs: {m.graph_input_count}</p>
<h2> Custom Ops </h2>
{{ if m.compliant_custom_ops }}
<p> Compliant Custom Ops:</p>
{{ for op in m.compliant_custom_ops }}
<li> <code> {op} </code> </li>
{{ endfor }}
{{ endif }}
{{ if m.non_compliant_ops }}
<p> Non-Compliant Custom Ops:</p>
{{ for op in m.non_compliant_ops }}
<li> <code> {op} </code> </li>
{{ endfor }}
{{ endif }}
<h2>Symbolic shape specializations</h2>
<table>
<tr>
Expand Down
Loading