The Runtime Diagnostics page has a useful Performance Test, intend to evaluate the basic performance of you environment. (page under construction)
On this page:
The performance test can be accessed in Runtime > Runtime Diagnostics > Run Tools > "Performance Test"
This code snippet performs multiple memory allocations within a repetitive loop, creating and filling large blocks of data in each iteration. The main objective is to simulate intensive resource usage, which is useful for testing the performance of the Designer.
DateTime t = DateTime.Now; for (int x = 0; x < 100; x++) { int size = 1024 * 1024; int[] memAlloc = new int[size]; for (int i = 0; i < size; i++) { memAlloc[i] = i; } } result = DateTime.Now - t; |
Result value expected is under 300ms.
In this section: