mirror of
https://github.com/ii64/gouring.git
synced 2025-02-16 18:31:47 +01:00
14 lines
No EOL
232 B
Makefile
14 lines
No EOL
232 B
Makefile
alL: run
|
|
|
|
N := 100000
|
|
PERF_OPTS := -n $(N) -noti $(N)
|
|
|
|
build:
|
|
go build .
|
|
|
|
run: build
|
|
./perf $(PERF_OPTS) -pprofCpu pprof-nonsqpoll.cpu
|
|
./perf -sqpoll $(PERF_OPTS) -pprofCpu pprof-sqpoll.cpu
|
|
|
|
pprof:
|
|
go tool pprof -http=:9001 $(P)
|