C 및 x86 어셈블리에서 효율적인 부동 소수점 반올림 수정
IEEE 754 부동 소수점 숫자는 가장 가까운, 0, 양의 무한대, 음의 무한대. 반올림 모드를 수정하면 결과의 소수 표현을 정밀하게 제어할 수 있습니다.
C 솔루션
C 표준 라이브러리는 fesetround( ) 기능:
#include <fenv.h> #pragma STDC FENV_ACCESS ON int main() { // Save the original rounding mode int originalRounding = fegetround(); // Set the desired rounding mode (e.g., to zero) fesetround(FE_TOWARDZERO); // Perform operations with the adjusted rounding mode // Restore the original rounding mode fesetround(originalRounding); return 0; }
x86 어셈블리 해결 방법
C99를 지원하지 않는 플랫폼의 경우 x86 어셈블리를 사용하여 x87 장치 및 SSE 반올림 모드를 모두 수정할 수 있습니다.
; x87 unit fldcw [new rounding mode] ; e.g., FNINIT to nearest ; SSE ldmxcsr [new rounding mode] ; e.g., MXCSR_RND_NEAREST
Microsoft Visual C
MSVC는 이를 위해 비표준 _controlfp() 기능을 제공합니다. 목적:
#include <math.h> int main() { // Save the original rounding mode unsigned int originalRounding = _controlfp(0, 0); // Set the desired rounding mode (e.g., to zero) _controlfp(_RC_CHOP, _MCW_RC); // Perform operations with the adjusted rounding mode // Restore the original rounding mode _controlfp(originalRounding, _MCW_RC); return 0; }
반올림 모드 디코더 링
Rounding Mode | C Name | MSVC Name |
---|---|---|
Nearest | FE_TONEAREST | _RC_NEAR |
Zero | FE_TOWARDZERO | _RC_CHOP |
Infinity | FE_UPWARD | _RC_UP |
-Infinity | FE_DOWNWARD | _RC_DOWN |
위 내용은 C 및 x86 어셈블리에서 부동 소수점 반올림 모드를 효율적으로 제어하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!