📄 verifyfixedpointreport.htm
字号:
<html xmlns:fo="http://www.w3.org/1999/XSL/Format">
<head>
<title>AccelDSP Summary Report</title><script language="JavaScript1.1">
var bIsIE = (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1);
function GetCollapseSymbol()
{
return "-";
}
function GetExpandSymbol()
{
return "+";
}
function GetNextSibling( obj )
{
//alert( "In GetNextSibling: first, obj=" + obj );
if ( bIsIE )
{
// IE;
return obj.nextSibling;
}
else
{
// Firefox
while ( obj )
{
obj = obj.nextSibling;
//alert( "In GetNextSibling: in-loop, obj.nextSibling=" + obj );
if ( obj.nodeName == "#text" )
{
continue;
}
else if ( obj.tagName )
{
//alert( "In GetNextSibling: returning obj, obj.tagName=" + obj.tagName );
return obj;
}
}
//alert( "In GetNextSibling: returning null" );
}
return ""
}
function ShowHideChildren( p, t, displayVal, visibilityVal )
{
// Note that to displayVal == "none" causes a "hide", displayVal == "block" causes a "show".
//alert( "In ShowHideChildren: first, p.tagName=" + p.tagName );
e = GetNextSibling( p );
//alert( "In ShowHideChildren: first, e=" + e );
//alert( "In ShowHideChildren: first, e.tagName=" + e.tagName );
//alert( "In ShowHideChildren: first, e.nodeName=" + e.nodeName );
while( e )
{
//alert( "In ShowHideChildren: in-loop: e.tagName=" + e.tagName);
matchedTitle = true;
if ( t == "" )
{
e.style.display = displayVal
//e.style.visibility = visibilityVal
}
else if ( t.length <= e.title.length )
{
//alert( "In ShowHideChildren: e.title.substring=" + e.title.substring( 0, t.length ) );
if ( e.title.substring( 0, t.length ) == t )
{
e.style.display = displayVal
//e.style.visibility = visibilityVal
}
}
e = GetNextSibling( e );
}
}
// Change the +/- symbol and hide the children
function DoOutlining(p, e, t)
{
text = e.innerHTML;
//alert("In DoOutlining: e.innerText=" + text + "XXXX");
if ( text == GetExpandSymbol() )
{
diplayVal = "table-row";
if ( bIsIE )
diplayVal = "block";
e.innerHTML = GetCollapseSymbol();
ShowHideChildren( p, t, diplayVal, "visible" );
}
else if ( text == GetCollapseSymbol() )
{
e.innerHTML = GetExpandSymbol();
ShowHideChildren( p, t, "none", "collapse" );
}
}
function GetParent( e )
{
// This function is used to handle the differences between FireFox and IE
p = e.parentElement;
if ( ! p )
p = e.parentNode;
return p;
}
function DoClick(event, matchTitle)
{
if ( window.event )
event = window.event;
//alert("In DoClick event=" + event );
e = event.srcElement ? event.srcElement : event.target;
//alert("In DoClick e.tagName=" + e.tagName); // Will not get here in non IE browsers!!!
p = GetParent( e );
//alert("In DoClick: pre-loop, p.tagName=" + p.tagName);
while( p && p.tagName != "TR" )
{
p = GetParent( p );
//alert("In DoClick: in-loop, p parent=" + p.tagName );
}
//alert("In DoClick: post-loop, p.tagName=" + p.tagName);
if ( ! p )
return;
// call the correct funtion to change the collapse/expand state and display
//alert("In DoClick: before func-call, p.tagName=" + p.tagName);
if ( matchTitle )
DoOutlining( p, e, p.title);
else
DoOutlining( p, e, "");
}
function DoClickForTable(event)
{
DoClick( event, false );
}
function DoClickForRow(event)
{
DoClick( event, true );
}
// Erase bogus link info from the status window
function ChangeStatusBarMsg(msg)
{
window.status=msg;
}
// Dummy function for expand/collapse link navigation - trap onclick events instead
function ex()
{}
function CheckBoxChanged( checkBox )
{
if( checkBox.checked )
{
window.location = "CHECKED://DUMMY";
}
else
{
window.location = "UNCHECKED://DUMMY";
}
return true;
}
</script><style>
BODY {
font-family: 'Arial';
}
A {
text-decoration: none;
color: #000000;
}
.title {
font-size: large;
color: #000000;
text-decoration: none;
text-align: left;
font-weight: bold;
}
.section_name {
font-size: small;
color: #000000;
text-decoration: none;
}
.check_name {
font-size: x-small;
color: #000000;
text-decoration: none;
}
.section_title {
font-size: small;
color: #000000;
text-decoration: none;
font-weight: bold;
}
.table_header_center {
font-size: x-small;
font-weight: bold;
text-align: center;
background-color: #6b7ba3;
color: #eddeaf;
text-decoration: none;
border-color: #ffffff;
border-width: 1px;
padding-left: 1em;
padding-right: 1em;
}
.table_header_left {
font-size: x-small;
font-weight: bold;
text-align: left;
background-color: #6b7ba3;
color: #eddeaf;
text-decoration: none;
border-color: #ffffff;
border-width: 1px;
padding-right: 1em;
}
.table_data_left {
font-size: x-small;
text-align: left;
background-color: #dadada;
color: #000000;
text-decoration: none;
border-color: #ffffff;
border-width: 1px;
padding-right: 1em;
}
.table_data_center {
font-size: x-small;
text-align: center;
background-color: #dadada;
color: #000000;
text-decoration: none;
border-color: #ffffff;
border-width: 1px;
padding-left: 1em;
padding-right: 1em;
}
.table_total_left {
font-size: x-small;
font-weight: bold;
text-align: left;
background-color: #c0c0c0;
color: #000000;
text-decoration: none;
}
.table_total_center {
font-size: x-small;
font-weight: bold;
text-align: center;
background-color: #c0c0c0;
color: #000000;
text-decoration: none;
}
.black_box {
border-style: solid;
border-color: #000000;
border-width: 1px;
}
.outline {
background-color: #ffffff;
cursor: hand;
color: #ff0000;
text-decoration: none;
text-align: left;
font-family: 'Courier New';
font-size: medium;
font-weight: bold;
}
.outline_row {
padding-right: 4px;
color: #ff0000;
cursor: hand;
text-decoration: none;
text-align: left;
font-family: 'Courier New';
font-size: medium;
font-weight: bold;
}
.blank_outline_pad {
padding-right: 4px;
color: #dadada;
cursor: hand;
text-decoration: none;
text-align: left;
font-family: 'Courier New';
font-size: medium;
font-weight: bold;
}
.struct_parent_name {
color: #999999;
}
.blank {
background-color: #ffffff;
color: #ffffff;
}
.link {
text-decoration: underline;
color: blue;
}
.link_col0 {
text-decoration: none;
color: #0000ff;
}
.link_col1 {
text-decoration: none;
color: #0000ff;
}
.link_col2 {
text-decoration: none;
color: #0000ff;
}
.link_col3 {
text-decoration: none;
color: #0000ff;
}
.col0_inferred {
color: #000000;
}
.col1_inferred {
color: #000000;
}
.col2_inferred {
color: #000000;
}
.col3_inferred {
color: #000000;
}
.col0_matlab {
color: #000000;
}
.col1_matlab {
color: #000000;
}
.col2_matlab {
color: #000000;
}
.col3_matlab {
color: #000000;
}
.col0_matlab_inferred {
color: #000000;
}
.col1_matlab_inferred {
color: #000000;
}
.col2_matlab_inferred {
color: #000000;
}
.col3_matlab_inferred {
color: #000000;
}
.col0_directive {
color: #000000;
}
.col1_directive {
font-weight: bold;
color: #000000;
}
.col2_directive {
color: #000000;
}
.col3_directive {
font-weight: bold;
color: #000000;
}
.link_col3_directive_delete {
font-weight: normal;
text-decoration: none;
color: #000000;
}
.col0_directive_inferred {
color: #000000;
}
.col1_directive_inferred {
color: #000000;
}
.col2_directive_inferred {
color: #000000;
}
.col3_directive_inferred {
color: #000000;
}
.col0_operation_inferred {
color: #000000;
}
.col1_operation_inferred {
color: #000000;
}
.col2_operation_inferred {
color: #000000;
}
.col3_operation_inferred {
color: #000000;
}
.col0_undefined {
font-weight: bold;
color: #ff0000;
}
.col1_undefined {
font-weight: bold;
color: #ff0000;
}
.col2_undefined {
font-weight: bold;
color: #ff0000;
}
.col3_undefined {
font-weight: bold;
color: #ff0000;
}
.col0_error {
font-weight: bold;
color: #ff0000;
}
.col1_error {
font-weight: bold;
color: #ff0000;
}
.col2_error {
font-weight: bold;
color: #ff0000;
}
.col3_error {
font-weight: bold;
color: #ff0000;
}
.col3_max {
font-weight: normal;
color: #ff0000;
}
.col3_max_no_fractional {
font-weight: normal;
color: #ff0000;
}
.quantizer_constant {
font-weight: normal;
font-style: italic;
color: #000000;
}
.gf_info_col0 {
font-weight: normal;
font-style: italic;
color: #000000;
}
.gf_info_col3 {
font-weight: normal;
color: #000000;
}
.quantizer_persistent {
font-weight: normal;
font-style: italic;
color: #000000;
}
.quantizer_count_max {
color: #ff0000;
}
.quantizer_count_undefined {
color: #ff0000;
}
.error_count {
color: #ff0000;
}
.hier_name {
font-weight: bold;
color: #000000;
}
.small_normal_font {
font-size: x-small;
color: #000000;
text-decoration: none;
}
.red_text {
color: red;
}
.magenta_text {
color: #C800C8;
}
.help_link_header {
color: #eddeaf;
text-decoration: underline;
}
.table_hidden {
display: none;
}
</style>
</head><body>
<span class="title">Verify FixedPoint Report</span><br><span class="small_normal_font">Elapsed Time:
15.30 seconds
</span><br><br><table class="black_box">
<tr><td class="section_name">
<a href="#" onclick="DoClickForTable(event);return false;" onfocus="ChangeStatusBarMsg('')" class="outline">-</a>Overflows</td></tr><tr><td><p class="table_data_center">No overflows detected.</p></td></tr>
</table><br><table class="black_box">
<tr><td class="section_name">
<a href="#" onclick="DoClickForTable(event);return false;" onfocus="ChangeStatusBarMsg('')" class="outline">-</a>Underflows (rounded to zero)</td></tr><tr><td><p class="table_data_center">No underflows detected.</p></td></tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -