-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Demonstrate the concurrency difference
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Earlier development stage: | ||
[dgurney@desktop temp]$ time png_noc -n 100 -w 1920 -h 1080 | ||
|
||
real 0m49.048s | ||
user 0m48.905s | ||
sys 0m0.243s | ||
|
||
v1.0.4: | ||
[dgurney@desktop temp]$ time pngen -a 100 -w 1920 -h 1080 | ||
Generating 100 1920x1080 PNG files... | ||
|
||
real 0m17.734s | ||
user 0m50.871s | ||
sys 0m0.263s | ||
|