I created a small program to test a CPU. It is extremely small and works well. If you open one on a single core CPU, it will use 100% of the processor. To use it on a multiple core processor, you just open one of these per core. I made it myself so I do have the source code, and I uploaded the .exe version of it onto a file hosting website. I havent ever used this site before, so I hope it works well. The file size is 570kb like on my computer. Here is a link to it.
This is the source code for c++. I just put in a random float number to test float (I think thats how it works).
#include <iostream>
using namespace std;
int main ()
{
int * i;
float * p;
while (p == p){
(*p++)+1.144564542315345;
(*i++)+1;
}
}
EDIT: I downloaded off the site and it works well.
This is the source code for c++. I just put in a random float number to test float (I think thats how it works).
#include <iostream>
using namespace std;
int main ()
{
int * i;
float * p;
while (p == p){
(*p++)+1.144564542315345;
(*i++)+1;
}
}
EDIT: I downloaded off the site and it works well.