pixie/tests/benchmark_jpeg.nim

7 lines
188 B
Nim
Raw Normal View History

2022-05-12 01:03:40 +00:00
import benchy, jpegsuite, pixie/fileformats/jpg
2020-11-28 23:59:46 +00:00
for file in jpegSuiteFiles:
2022-05-05 16:55:25 +00:00
let data = readFile(file)
timeIt "jpeg " & $(len(data) div 1024) & "k decode":
discard decodeJpg(data)