Changeset 50cfa99 for benchmark/creation
- Timestamp:
- Jan 9, 2020, 5:06:29 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 51493a4, 6b6a3b8
- Parents:
- c93fd72
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/creation/goroutine.go
rc93fd72 r50cfa99 2 2 3 3 import ( 4 "fmt" 5 "time" 6 "flag" 4 "fmt" 5 "time" 6 "os" 7 "strconv" 7 8 ) 8 9 … … 18 19 19 20 func main() { 20 times := flag.Int( "times", 500000, "loop iterations" ) 21 flag.Parse() 21 var times int = 10000000 22 if len( os.Args ) > 2 { os.Exit( 1 ) } 23 if len( os.Args ) == 2 { times, _ = strconv.Atoi(os.Args[1]) } 24 22 25 start := time.Now() 23 for i := 1; i <= *times; i += 1 {26 for i := 1; i <= times; i += 1 { 24 27 go noop() // creation 25 28 <- shake // wait for completion 26 29 } 27 30 end := time.Now() 28 fmt.Printf( "%d\n", end.Sub(start) / time.Duration( *times) )31 fmt.Printf( "%d\n", end.Sub(start) / time.Duration(times) ) 29 32 } 30 33
Note: See TracChangeset
for help on using the changeset viewer.