test_generator: Increase iterations
This commit is contained in:
parent
806a50703b
commit
f4747aea10
1 changed files with 7 additions and 7 deletions
|
@ -369,7 +369,7 @@ void TestThumb(size_t num_instructions, size_t num_iterations = 100000) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestArm(size_t num_instructions, size_t num_iterations = 100000) {
|
void TestArm(size_t num_instructions, size_t num_iterations) {
|
||||||
ArmTestEnv jit_env{};
|
ArmTestEnv jit_env{};
|
||||||
Dynarmic::A32::Jit jit{GetUserConfig(jit_env)};
|
Dynarmic::A32::Jit jit{GetUserConfig(jit_env)};
|
||||||
|
|
||||||
|
@ -398,12 +398,12 @@ void TestArm(size_t num_instructions, size_t num_iterations = 100000) {
|
||||||
int main(int, char*[]) {
|
int main(int, char*[]) {
|
||||||
detail::g_rand_int_generator.seed(42069);
|
detail::g_rand_int_generator.seed(42069);
|
||||||
|
|
||||||
TestThumb(1);
|
TestThumb(1, 100000);
|
||||||
TestArm(1);
|
TestArm(1, 100000);
|
||||||
TestThumb(5);
|
TestThumb(5, 100000);
|
||||||
TestArm(5);
|
TestArm(5, 100000);
|
||||||
TestThumb(1024, 1000);
|
TestThumb(1024, 10000);
|
||||||
TestArm(1024, 1000);
|
TestArm(1024, 10000);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue