[IE TESTS] Remove verified refs highlighting from report (#7285)

* [IE TESTS] Remove verified refs from report

* Remove from header
This commit is contained in:
Irina Efode 2021-09-02 14:31:48 +03:00 committed by GitHub
parent 72c34cebd0
commit fc92eea000
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 141 deletions

View File

@ -7,7 +7,6 @@ import xml.etree.ElementTree as ET
from jinja2 import Environment, FileSystemLoader
from utils import constants
from utils import utils
logger = utils.get_logger('Summarize')
@ -167,11 +166,9 @@ def create_summary(summary_root: ET.Element, output_folder: os.path, report_tag:
env = Environment(loader=file_loader)
template = env.get_template('report_template.html')
verified_operations = constants.VERIFIED_OP_REFERENCES
res_summary = template.render(ordered_ops=op_list, devices=device_list, results=results, timestamp=timestamp,
general_pass_rate=general_pass_rate, pass_rate_avg=pass_rate_avg,
verified_operations=verified_operations, trusted_ops=trusted_ops,
trusted_ops=trusted_ops,
general_test_count=general_test_count, report_tag=report_tag)
report_path = os.path.join(output_folder, f'{output_filename}.html')

View File

@ -22,10 +22,6 @@
<div class="main">
<h2>Operations coverage summary: {{report_tag}} {{ timestamp }}</h2>
<div class="legend">
<div>
<span class="border colorRed">Acosh-4</span><span>Not verified Ngraph references</span>
</div>
<div>
<span class="table-primary border"></span><span>Collected statistic info</span>
</div>
@ -127,8 +123,7 @@
<tbody id="data">
{% for op in ordered_ops -%}
<tr>
<th scope="row" {% if op not in verified_operations -%} class="colorRed" {% endif -%} name="{{ op }}">{{
op }}</th>
<th scope="row" name="{{ op }}">{{ op }}</th>
{% for d in devices -%}
{% if op in results[d] -%}

View File

@ -1,131 +0,0 @@
# Copyright (C) 2021 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
VERIFIED_OP_REFERENCES = [
'Abs-1',
'Acos-1',
'Acosh-3',
'Add-1',
'Asin-1',
'Asinh-3',
'Assign-6',
'AvgPool-1',
'BatchNormInference-5',
'BatchToSpace-2',
'BinaryConvolution-1',
'Broadcast-1',
'Broadcast-3',
'Bucketize-3',
'Ceiling-1',
'CTCGreedyDecoder-1',
'CTCGreedyDecoderSeqLen-6',
'Concat-1',
'Convert-1',
'ConvertLike-1',
'Convolution-1',
'Constant-1',
'Cos-1',
'Cosh-1',
'DeformableConvolution-1',
'DeformablePSROIPooling-1',
'DepthToSpace-1',
'DetectionOutput-1',
'Divide-1',
'Equal-1',
'Erf-1',
'ExperimentalDetectronDetectionOutput-6',
'ExperimentalDetectronGenerateProposalsSingleImage-6',
'ExperimentalDetectronPriorGridGenerator-6',
'ExperimentalDetectronROIFeatureExtractor-6',
'ExperimentalDetectronTopKROIs-6',
'FakeQuantize-1',
'Floor-1'
'FloorMod-1'
'GRUSequence-5',
'Gather-1',
'GatherElements-6',
'GatherND-5',
'Gelu-7',
'Greater-1',
'GreaterEqual-1',
'GRN-1',
'GroupConvolution-1',
'GroupConvolutionBackpropData-1',
'GRUSequence-5',
'HSigmoid-5',
'HSwish-4',
'HardSigmoid-1',
'Interpolate-4',
'Less-1',
'LessEqual-1'
'LRN-1',
'LSTMCell-4',
'LSTMSequence-5',
'LogicalAnd-1',
'LogicalNot-1'
'LogicalOr-1'
'LogicalXor-1'
'LogSoftmax-5',
'Loop-5',
'MVN-1',
'MVN-6',
'Maximum-1',
'MaxPool-1',
'Mish-4',
'Multiply-1',
'Negative-1',
'NonMaxSuppression-4',
'NonMaxSuppression-5',
'NonZero-3',
'NormalizeL2-1',
'PriorBox-1',
'PriorBoxClustered-1',
'Proposal-1',
'Proposal-4',
'PSROIPooling-1',
'RNNSequence-5',
'ROIAlign-3',
'ROIPooling-2',
'Range-1',
'Range-4',
'ReadValue-6',
'ReduceL1-4',
'ReduceL2-4',
'ReduceLogicalAnd-1',
'ReduceLogicalOr-1',
'ReduceMax-1',
'ReduceMean-1',
'ReduceMin-1',
'ReduceProd-1',
'ReduceSum-1',
'RegionYOLO-1',
'Relu-1',
'ReorgYOLO-2',
'Result-1'
'ReverseSequence-1',
'Round-5',
'SpaceToDepth-1',
'ScatterElementsUpdate-3',
'ScatterNDUpdate-4',
'Select-1',
'ShapeOf-1',
'ShapeOf-3',
'ShuffleChannels-1',
'Sigmoid-1',
'Sign-1',
'Sin-1',
'Sinh-1'
'SoftPlus-4',
'Softmax-1',
'Split-1',
'Squeeze-1',
'StridedSlice-1',
'Subtract-1',
'Swish-4',
'Tile-1',
'TopK-1',
'TopK-3',
'Transpose-1',
'Unsqueeze-1',
'VariadicSplit-1',
]