-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.html
88 lines (86 loc) · 5.84 KB
/
todo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.17"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>POWER Vector Library Manual: Todo List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">POWER Vector Library Manual
 <span id="projectnumber">1.0.4</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.17 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
</div><!-- top -->
<div class="PageDoc"><div class="header">
<div class="headertitle">
<div class="title">Todo List </div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><dl class="reflist">
<dt>page <a class="el" href="index.html">POWER Vector Library (pveclib)</a> </dt>
<dd><a class="anchor" id="_todo000001"></a>Is there a way for automake to compile vec_int512_runtime.c with -mcpu=power9 and -o vec_runtime_PWR9.o? And similarly for PWR7/PWR8. </dd>
<dt>File <a class="el" href="vec__bcd__ppc_8h.html">vec_bcd_ppc.h</a> </dt>
<dd><a class="anchor" id="_todo000004"></a>The BCD add/subtract extend/carry story is not complete. The carry extend operations based only on the <b>OV</b> condition codes only works as expected for bcdadd operands with the same sign and bcdsub with different signs. See <a class="el" href="vec__bcd__ppc_8h.html#a76d5034289bea5c7d9159db1d443f6b7" title="Decimal Add & write Carry Signed Quadword.">vec_bcdaddcsq()</a> and <a class="el" href="vec__bcd__ppc_8h.html#a6bf159e0abdccaa6fca21c6567b2067b" title="Decimal Add Extended & write Carry Signed Quadword.">vec_bcdaddecsq()</a>. Extended BCD difference (or subtract the same sign or add with different signs) is more complicated. See <a class="el" href="vec__bcd__ppc_8h.html#abd666963d18930e07be06aeb563eeb71" title="Decimal Sudtract & write Carry Signed Quadword.">vec_bcdsubcsq()</a> and <a class="el" href="vec__bcd__ppc_8h.html#a7eeb50993901b8bef76fa72cea668a15" title="Decimal Add Extended & write Carry Signed Quadword.">vec_bcdsubecsq()</a>. Generating a true borrow seems to require looking one (31-digit) column ahead or behind. The first attempt at generating correct borrowing is implemented in <a class="el" href="vec__bcd__ppc_8h.html#a486605817b8ca4850f7cf5584c751f45" title="Combined Decimal Add & Write Carry Signed Quadword.">vec_cbcdaddcsq()</a> and <a class="el" href="vec__bcd__ppc_8h.html#af9718d91a7e14c4a21e14a53f2f65041" title="Combined Decimal Add Extended & write Carry Signed Quadword.">vec_cbcdaddecsq()</a>. There are still cases where these operation will generate a borrow and invert (10s complement) incorrectly. The net seems to be that for BCD multiple precision difference to work correctly, the larger magnitude must be the first operand. </dd>
<dt>File <a class="el" href="vec__int128__ppc_8h.html">vec_int128_ppc.h</a> </dt>
<dd><a class="anchor" id="_todo000003"></a> The implementation above gives correct results for all the cases tested for divide by constants 10<sup>31</sup> and 10<sup>32</sup>). This is not a mathematical proof of correctness, just an observation. Anyone who finds a counter example or offers a mathematical proof should submit a bug report. </dd>
<dt>File <a class="el" href="vec__int512__ppc_8h.html">vec_int512_ppc.h</a> </dt>
<dd><a class="anchor" id="_todo000002"></a>Currently the dynamic resolvers and <em>IFUNC</em> symbols for vec_int512_runtime.c are contained within vec_runtime_DYN.c. As the list of runtime operations expands to other element sizes/types, vec_runtime_DYN.c should be refactored into multiple files.</dd>
</dl>
</div></div><!-- contents -->
</div><!-- PageDoc -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Sun Jul 10 2022 14:57:44 for POWER Vector Library Manual by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.17
</small></address>
</body>
</html>