added updated version of simdmathlibrary-1.0.1
This commit is contained in:
@@ -31,6 +31,7 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <math.h>
|
||||
#include <float.h>
|
||||
#include "simdmath.h"
|
||||
#include "common-test.h"
|
||||
#include "testutils.h"
|
||||
@@ -43,8 +44,8 @@ int main()
|
||||
float y0 = hide_float( 0.0f);
|
||||
unsigned int r0 = 0x00000000;
|
||||
|
||||
float x1 = hide_float( 1.0/0.0); //+Smax
|
||||
float y1 = hide_float(-1.0/0.0); //-Smax
|
||||
float x1 = hide_float( FLT_MAX); //+Smax
|
||||
float y1 = hide_float(-FLT_MAX); //-Smax
|
||||
unsigned int r1 = 0x00000000;
|
||||
|
||||
float x2 = hide_float(-0.0000000013152f);
|
||||
@@ -75,7 +76,7 @@ int main()
|
||||
float y8 = hide_float(2353705.31415f);
|
||||
unsigned int r8 = 0x00000000;
|
||||
|
||||
float x9 = hide_float( 1.0/0.0); // Smax
|
||||
float x9 = hide_float(FLT_MAX); // Smax
|
||||
float y9 = hide_float(9.43574552184f);
|
||||
unsigned int r9 = 0x00000000;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user