I have a Linux command line utility that is a binary. It could be something simple like: echo $((23.5/7.33))
I want a Python program that sets various rounding modes on my Intel CPU then calls my command line utility with those FPU settings to check for numerical instability.
What is the syntax to do this, or is it even possible? Assume my command line utility is nice and isn't setting FPU flags within it's code.