Closed mikhailnikolaev closed 5 years ago
Interesting and well spotted. How did this affect the weekly run?
Interesting and well spotted. How did this affect the weekly run?
You can see the result on http://adbenchwebviewer.azurewebsites.net/ In short, this leads to unpropper guaranteed timeout prediction. E.g. if GMM K=100
is finished due to a timeout, then GMM K=5, 25, 500
will not be run, because alphabetically they follow 100
This PR is done due to some bug in the current array parameter sorting.
A
sort
alias for the comandletSort-Object
was used in the PowerShell code. It works fine in Windows, but doesn't in Linux, because there is an utility calledsort
in Linux. That's why in PowerShell Core there is no aliassort
forSort-Object
, so callingsort
the script uses Linux utilitysort
, that sorting values alphabetically by default. It leads to some strange behaviour, for example the script calculates GMM ford = 10
befored = 2
. So, now the alias using is removed.