Avi Kivity wrote:

I'll have to try and setup a 64 bit system. I cannot reproduce on my 32bit system with your test program.

It may be related to 64-bit (as that uses sse for floating point), or to the fact that I use ssh on a remote host, which causes more context switches. I'll try to reproduce on 32 bits with my setup.


It doesn't reproduce on a 32-bit host. However, it does reproduce on a 32-bit guest on a 64-bit host, and on a 32-bit user load running in a 64-bit guest on a 64-bit host.

I'm attaching an updated test program which makes it easier to spot the failures. You only need to run it on the guest, although running it on the host as well increases the failure rate significantly.

--
error compiling committee.c: too many arguments to function

#include <stdio.h>
#include <math.h>

double test_fpu_once()
{
    int i;
    double f = 0;

    for (i = 0; i < 10000000; ++i)
	f += 1 / (1.0 + i);
    return f;
}

void test_fpu()
{
    double a, b;
    int runs;

    runs = 0;
    a = test_fpu_once();
    while (1) {
	b = test_fpu_once();
	if (fabs(a - b) > 1e-9)
	    printf("error: %20.16f -> %20.16f\n", a, b);
	a = b;
	if (++runs % 100 == 0)
	    printf("runs: %8d\n", runs);
    }
}

int main(int ac, char **av)
{
    test_fpu();
    return 0;
}
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel

Reply via email to