softfloat.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /*
  2. * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "libavutil/timer.h"
  21. #include <inttypes.h>
  22. #include "libavutil/softfloat.h"
  23. #include "libavutil/common.h"
  24. #include "libavutil/log.h"
  25. #include <stdio.h>
  26. static const SoftFloat FLOAT_0_017776489257 = {0x1234, 12};
  27. static const SoftFloat FLOAT_1374_40625 = {0xabcd, 25};
  28. static const SoftFloat FLOAT_0_1249694824218 = {0xFFF, 15};
  29. int main(void){
  30. SoftFloat one= av_int2sf(1, 0);
  31. SoftFloat sf1, sf2, sf3;
  32. double d1, d2, d3;
  33. int i, j;
  34. av_log_set_level(AV_LOG_DEBUG);
  35. d1= 1;
  36. for(i= 0; i<10; i++){
  37. d1= 1/(d1+1);
  38. }
  39. printf("test1 double=%d\n", (int)(d1 * (1<<24)));
  40. sf1= one;
  41. for(i= 0; i<10; i++){
  42. sf1= av_div_sf(one, av_normalize_sf(av_add_sf(one, sf1)));
  43. }
  44. printf("test1 sf =%d\n", av_sf2int(sf1, 24));
  45. for(i= 0; i<100; i++){
  46. START_TIMER
  47. d1= i;
  48. d2= i/100.0;
  49. for(j= 0; j<1000; j++){
  50. d1= (d1+1)*d2;
  51. }
  52. STOP_TIMER("float add mul")
  53. }
  54. printf("test2 double=%d\n", (int)(d1 * (1<<24)));
  55. for(i= 0; i<100; i++){
  56. START_TIMER
  57. sf1= av_int2sf(i, 0);
  58. sf2= av_div_sf(av_int2sf(i, 2), av_int2sf(200, 3));
  59. for(j= 0; j<1000; j++){
  60. sf1= av_mul_sf(av_add_sf(sf1, one),sf2);
  61. }
  62. STOP_TIMER("softfloat add mul")
  63. }
  64. printf("test2 sf =%d (%d %d)\n", av_sf2int(sf1, 24), sf1.exp, sf1.mant);
  65. d1 = 0.0177764893;
  66. d2 = 1374.40625;
  67. d3 = 0.1249694824;
  68. d2 += d1;
  69. d3 += d2;
  70. printf("test3 double: %.10lf\n", d3);
  71. sf1 = FLOAT_0_017776489257;
  72. sf2 = FLOAT_1374_40625;
  73. sf3 = FLOAT_0_1249694824218;
  74. sf2 = av_add_sf(sf1, sf2);
  75. sf3 = av_add_sf(sf3, sf2);
  76. printf("test3 softfloat: %.10lf (0x%08x %d)\n", (double)av_sf2double(sf3), sf3.mant, sf3.exp);
  77. sf1 = av_int2sf(0xFFFFFFF0, 0);
  78. printf("test4 softfloat: %.10lf (0x%08x %d)\n", (double)av_sf2double(sf1), sf1.mant, sf1.exp);
  79. sf1 = av_int2sf(0x00000010, 0);
  80. printf("test4 softfloat: %.10lf (0x%08x %d)\n", (double)av_sf2double(sf1), sf1.mant, sf1.exp);
  81. sf1 = av_int2sf(0x1FFFFFFF, 0);
  82. printf("test4 softfloat: %.10lf (0x%08x %d)\n", (double)av_sf2double(sf1), sf1.mant, sf1.exp);
  83. sf1 = av_int2sf(0xE0000001, 0);
  84. printf("test4 softfloat: %.10lf (0x%08x %d)\n", (double)av_sf2double(sf1), sf1.mant, sf1.exp);
  85. sf1 = (SoftFloat){ 0x20000000, MIN_EXP };
  86. sf1 = av_mul_sf(sf1, sf1);
  87. printf("test5 softfloat: %.10lf (0x%08x %d)\n", (double)av_sf2double(sf1), sf1.mant, sf1.exp);
  88. sf1 = (SoftFloat){ 0x20000000, MIN_EXP };
  89. sf2 = (SoftFloat){ 0x20000000, MAX_EXP };
  90. i = av_cmp_sf(sf1, sf2);
  91. j = av_cmp_sf(sf2, sf1);
  92. sf1 = av_div_sf(sf1, sf2);
  93. printf("test6 softfloat: %.10lf (0x%08x %d) %d %d\n", (double)av_sf2double(sf1), sf1.mant, sf1.exp, i, j);
  94. for(i= -50; i<50; i++) {
  95. sf1= av_int2sf(i, 0);
  96. for(j= -50; j<50; j++) {
  97. int c;
  98. sf2= av_int2sf(j, 0);
  99. c = av_cmp_sf(sf1, sf2);
  100. if (FFDIFFSIGN(i,j) != c && (FFDIFFSIGN(i,j)^c)<0) {
  101. printf("av_cmp_sf failed at %d %d as %X\n", i, j, c);
  102. }
  103. c = av_gt_sf(sf1, sf2);
  104. if ((i>j) != c) {
  105. printf("av_gt_sf failed at %d %d as %X\n", i, j, c);
  106. }
  107. }
  108. sf1 = av_int2sf(1, i);
  109. for(j = -50; j < 50; j++) {
  110. int c;
  111. sf2 = av_int2sf(1, j);
  112. c = av_cmp_sf(sf2, sf1);
  113. if (FFDIFFSIGN(i,j) != c && (FFDIFFSIGN(i,j)^c) < 0) {
  114. printf("av_cmp_sf failed2 at %d %d as %X\n", i, j, c);
  115. }
  116. c = av_gt_sf(sf1, sf2);
  117. if ((i<j) != c) {
  118. printf("av_gt_sf failed2 at %d %d as %X\n", i, j, c);
  119. }
  120. }
  121. }
  122. for(i= 0; i<4*36; i++){
  123. int s, c;
  124. double errs, errc;
  125. av_sincos_sf(i*(1ULL<<32)/36/4, &s, &c);
  126. errs = (double)s/ (1<<30) - sin(i*M_PI/36);
  127. errc = (double)c/ (1<<30) - cos(i*M_PI/36);
  128. if (fabs(errs) > 0.00000002 || fabs(errc) >0.001) {
  129. printf("sincos FAIL %d %f %f %f %f\n", i, (float)s/ (1<<30), (float)c/ (1<<30), sin(i*M_PI/36), cos(i*M_PI/36));
  130. }
  131. }
  132. return 0;
  133. }