File tree Expand file tree Collapse file tree
website-generator/resources/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,7 +29,9 @@ def _native_ops_only(model):
2929 default = 1 ,
3030 )
3131 convert_map = _get_convert_map (opset )
32- unsupported = {n .op_type for n in model .graph .node if n .op_type not in convert_map }
32+ unsupported = {
33+ n .op_type for n in model .graph .node if n .op_type not in convert_map
34+ }
3335 return sorted (unsupported )
3436 except (ImportError , AttributeError ):
3537 return []
Original file line number Diff line number Diff line change 3232 barChartDatasets [ 1 ] . data . push ( trend [ lastIdx ] . failed ) ;
3333 barChartDatasets [ 2 ] . data . push ( trend [ lastIdx ] . skipped || 0 ) ;
3434
35- new Chart ( barChart , {
35+ barChart . _chart = new Chart ( barChart , {
3636 type : 'bar' ,
3737 data : {
3838 labels : barChartLabels ,
Original file line number Diff line number Diff line change 2323 } ]
2424 } ;
2525
26- new Chart ( circleChart , {
26+ circleChart . _chart = new Chart ( circleChart , {
2727 type : 'doughnut' ,
2828 data : chartData ,
2929 options : {
Original file line number Diff line number Diff line change 5151 } ]
5252 } ;
5353
54- new Chart ( lineTrend , {
54+ lineTrend . _chart = new Chart ( lineTrend , {
5555 type : 'line' ,
5656 data : lineChartData ,
5757 options : {
You can’t perform that action at this time.
0 commit comments