<!--your preparation HTML code goes here-->
const transform1 = (rowTemplate) => {
if (!rowTemplate?.length) {
return [];
}
const rows = rowTemplate.length;
const cols = rowTemplate[0].length;
const result = [];
for (let col = 0; col < cols; col++) {
for (let row = 0; row < rows; row++) {
result.push(rowTemplate[row][col]);
}
}
return result;
};
var t1 = [
["1", "1", "2", "3", "4", "4"],
["1", "1", "5", "6", "4", "4"]
];
for (var i=0; i < 10000; i++) {
transform1(t1);
}
const transform2 = (rowTemplate) => {
if (!rowTemplate?.length) {
return [];
}
const rows = rowTemplate.length;
const cols = rowTemplate[0].length;
const result = new Array(rows * cols);
for (let col = 0; col < cols; col++) {
for (let row = 0; row < rows; row++) {
result.push(rowTemplate[row][col]);
}
}
return result;
};
var t1 = [
["1", "1", "2", "3", "4", "4"],
["1", "1", "5", "6", "4", "4"]
];
for (var i=0; i < 10000; i++) {
transform2(t1);
}
const transform3 = (rowTemplate) => {
if (!rowTemplate?.length) {
return [];
}
const rows = rowTemplate.length;
const cols = rowTemplate[0].length;
const result = new Array(rows * cols);
for (let col = 0; col < cols; col++) {
for (let row = 0; row < rows; row++) {
result[col * cols + row] = rowTemplate[row][col];
}
}
return result;
};
var t1 = [
["1", "1", "2", "3", "4", "4"],
["1", "1", "5", "6", "4", "4"]
];
for (var i=0; i < 10000; i++) {
transform3(t1);
}
const transform4 = (rowTemplate) => {
if (!rowTemplate?.length) {
return [];
}
const rows = rowTemplate.length;
const cols = rowTemplate[0].length;
const result = [];
for (let col = 0; col < cols; col++) {
for (let row = 0; row < rows; row++) {
result[col * cols + row] = rowTemplate[row][col];
}
}
return result;
};
var t1 = [
["1", "1", "2", "3", "4", "4"],
["1", "1", "5", "6", "4", "4"]
];
for (var i=0; i < 10000; i++) {
transform4(t1);
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
transform1 | |
transform2 | |
transform3 | |
transform4 |
Test name | Executions per second |
---|---|
transform1 | 3802.0 Ops/sec |
transform2 | 2807.2 Ops/sec |
transform3 | 2677.6 Ops/sec |
transform4 | 2403.2 Ops/sec |
The benchmark identified as "transrorm template 3" evaluates various implementations of the transformation of a 2D array (or matrix) into a 1D array, focusing on performance. Each implementation is encapsulated in a separate function (transform1
, transform2
, transform3
, and transform4
), and they are tested by running each function 10,000 times with the same input data (t1
), which is a 2x6 array.
transform1:
result
) to store the output. It traverses the 2D input array (rowTemplate
) by columns and pushes each element into the result
array.transform2:
transform1
, but preallocates the result
array to the total number of elements (rows * cols
). However, it still uses push()
to add items, which may cause dynamic reallocation of the array as its size increases.transform1
, with about 2807.23 executions per second, primarily because the use of push()
can be less efficient than direct indexing when the memory allocation isn't optimal.transform3:
transform2
, this function also preallocates the result
array. However, it directly assigns values to the indexed positions in the result array (using calculated indices). This method reduces the number of adjustments to the array size and manipulates the indices more efficiently.transform1
.transform4:
transform3
, but it uses an empty array (result
) and employs direct indexing for adding elements based on calculated positions. The index for the result is calculated as col * cols + row
, which is intended to optimize memory access.Dynamic Array Growth (transform1):
push()
.Preallocation with push()
(transform2):
push()
.Preallocation with Direct Indexing (transform3):
push()
.Mixed Approach with Dynamic and Direct Indexing (transform4):
Beyond the specific implementations in this benchmark, there are various other methods for transforming a 2D array into a 1D array:
Using Higher-Order Functions: Leveraging JavaScript's built-in functions like flat()
or reduce()
can provide a more declarative approach, although performance can vary based on implementation details.
Typed Arrays: For more intensive numerical applications, using typed arrays (like Float32Array
or Uint16Array
) can yield better performance alongside better memory management.
Web Workers: For very large datasets or complex calculations, offloading transformations to Web Workers can prevent blocking the main thread, enhancing responsiveness even if it doesn't affect raw speed.
In summary, the benchmark serves to compare various strategies on effectively transforming data, with a focus on execution speed. Each implementation has its own merits and trade-offs, and understanding these can help developers make informed decisions based on the particular needs of their applications.