Hi qWord!
I change between fpu and sse2: ifidn abb_backend_entity, <FSLV_X86_FPU_ENTITY>
fSlv8 = 0.85
else ; FSLV_X86_SSE2_FPU_ENTITY
fSlv8 tempR8 = 0.85
fld tempR8
endif
It's not a good solution, for sure there is a better one.
I don't know if it's posible to force the backend in some program fragment.
Thanks.
You can change the back-end in several ways, e.g. fSlvLoadBackEnd or fSlvSelectBackEnd (see doc). However, there is no push/pop semantic for that, so it is up to you keep track of current used back-end.
BTW: I've upload anew version that contains some bug fixes that had been collected over the years
https://sourceforge.net/projects/smplmath/files/2.0.2/SmplMath.rar/download
Thanks very much. Next week I will try new version.
Hi qWord!
Itsn't working.
If you remove "FSBE_PROC %FSBE_LOAD_ARG,%fcmpx_factor,0"
then " !fTest([esi].Observation.weight_lb, NaN)" fail.
HSE,
please show a small test case reproducing the unexpected behavior. Regardless that, testing if some value is negligible in compare to an NaN-Encoding (Not a Number) doesn't look right.
regards
Yes, I was thinking to make something little because what I'm running now is unpublished.
And Yes, certainlly there is a better way to represent missing data, just I don't know it. But work very well with SmplMath 2.0.1 (except for fpu-stack imbalance, of course).
There are the macros r4IsValid and r8IsValid that test the passed variable for NaN:
.if r4IsValid(myreal4)
; not a NaN
.elseif
; is NaN
.endif
Perfect :t
Perhaps more specific in this case:r8IsNotNaN macro mem64:req
IF @WordSize EQ 4
push DWORD ptr mem64+4
and DWORD ptr [esp],7FF80000h
xor DWORD ptr [esp],7FF80000h
lea esp,[esp+4]
ELSE
push rax
mov eax,DWORD ptr mem64+4
and eax,7FF80000h
xor eax,7FF80000h
pop rax
ENDIF
EXITM <!ZERO?>
endm
Thanks.