[Bug 255551] FreeBSD sort much slower than GNU or NetBSD
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 17 May 2021 16:51:06 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=255551 --- Comment #9 from Jason W. Bacon <jwb@freebsd.org> --- sh -c ./sort-test.sh + time sort -n -k 1 -k 2 -k 3 pc-gff-stripped.bed 13.28 real 12.32 user 0.95 sys + time gsort '--parallel=1' -n -k 1 -k 2 -k 3 pc-gff-stripped.bed 3.05 real 2.97 user 0.08 sys + export 'LC_ALL=C' + time sort -n -k 1 -k 2 -k 3 pc-gff-stripped.bed 7.64 real 7.30 user 0.33 sys + time sort --mergesort -n -k 1 -k 2 -k 3 pc-gff-stripped.bed 4.02 real 3.61 user 0.41 sys + time gsort '--parallel=1' -n -k 1 -k 2 -k 3 pc-gff-stripped.bed 2.40 real 2.29 user 0.11 sys -- You are receiving this mail because: You are the assignee for the bug.