refs #386, further samples / performance tests

* especially impact of find performance on interpolator
This commit is contained in:
Klaus Basan
2015-02-17 01:56:17 +01:00
parent c55681fce5
commit 1ff0cfa618
3 changed files with 138 additions and 37 deletions

View File

@@ -44,8 +44,9 @@ int main(int argc, char *argv[])
qtout << "4 .. Metadata" << endl;
qtout << "5 .. Variant" << endl;
qtout << "6a .. Performance create / copy / ..." << endl;
qtout << "6b .. 25/100 Performance impl. type ..." << endl;
qtout << "6c .. 25/20 Performance impl. type ..." << endl;
qtout << "6b .. 25/100 Performance impl. type" << endl;
qtout << "6c .. 25/20 Performance impl. type" << endl;
qtout << "6d .. 40/20 Interpolator scenario" << endl;
qtout << "7 .. Algorithms" << endl;
qtout << "8 .. Concurrent (thread)" << endl;
qtout << "-----" << endl;
@@ -60,6 +61,7 @@ int main(int argc, char *argv[])
else if (s.startsWith("6a")) { CSamplesPerformance::samplesMisc(qtout); }
else if (s.startsWith("6b")) { CSamplesPerformance::samplesImplementationType(qtout, 25, 100); }
else if (s.startsWith("6c")) { CSamplesPerformance::samplesImplementationType(qtout, 25, 20); }
else if (s.startsWith("6d")) { CSamplesPerformance::interpolatorScenario(qtout, 40, 20); }
else if (s.startsWith("7")) { CSamplesAlgorithm::samples(); }
else if (s.startsWith("8")) { CSamplesConcurrent::samples(s, qtout, qtin); }
else if (s.startsWith("x")) { break; }