Skip to content
Merged
Show file tree
Hide file tree
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: 3 additions & 1 deletion backends/tvm/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ def _native_ops_only(model):
default=1,
)
convert_map = _get_convert_map(opset)
unsupported = {n.op_type for n in model.graph.node if n.op_type not in convert_map}
unsupported = {
n.op_type for n in model.graph.node if n.op_type not in convert_map
}
return sorted(unsupported)
except (ImportError, AttributeError):
return []
Expand Down
2 changes: 1 addition & 1 deletion website-generator/resources/src/bar_chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
barChartDatasets[1].data.push(trend[lastIdx].failed);
barChartDatasets[2].data.push(trend[lastIdx].skipped || 0);

new Chart(barChart, {
barChart._chart = new Chart(barChart, {
type: 'bar',
data: {
labels: barChartLabels,
Expand Down
2 changes: 1 addition & 1 deletion website-generator/resources/src/circle_chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}]
};

new Chart(circleChart, {
circleChart._chart = new Chart(circleChart, {
type: 'doughnut',
data: chartData,
options: {
Expand Down
2 changes: 1 addition & 1 deletion website-generator/resources/src/line_chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
}]
};

new Chart(lineTrend, {
lineTrend._chart = new Chart(lineTrend, {
type: 'line',
data: lineChartData,
options: {
Expand Down