Stephen Illingworth

Results 24 comments of Stephen Illingworth
trafficstars

> See https://pkg.go.dev/testing#hdr-Benchmarks The [format](https://go.googlesource.com/proposal/+/master/design/14313-benchmark-format.md) accepts by [benchstat](https://pkg.go.dev/golang.org/x/[email protected]/cmd/benchstat), result it usually represents the average time per loop for executing the same piece of code. (Time or other comparable units such...

ad943066f63c6945e92fa00c83c7cac6a78f793b was a simple enough change so I've removed that addition from gotip and performance is close enough to go1.21.7 to be unnoticeable. For certain, the "jitter" has gone in...

@prattmic Yes. I am seeing differences without PGO ``` │ benchstat_go1.21.7_nopgo.txt │ benchstat_go1.22.0_nopgo.txt │ │ ms/op │ ms/op vs base │ Test 7.300 ± 0% 7.690 ± 3% +5.34% (p=0.000...

A note on my comment about the time taken to generate a frame being "less predictable". This isn't a problem when I impose a realistic FPS cap. (ie. if I...

> Interesting, that is quite different from what I am seeing. The regression and variance disappears when you revert https://go.dev/cl/501976? Without PGO: ``` │ benchstat_go1.22.0.txt │ benchstat_go1.22.0_reversion.txt │ │ ms/op...

It's a great idea and one I've been meaning to do for a while now. It shouldn't be too difficult to add support for zip. I can't promise 7z or...

Work in progress video for this feature. https://www.youtube.com/watch?v=uGJj7NqLsxA

ZIP file support has been added to release v0.30.0 https://github.com/JetSetIlly/Gopher2600/releases/tag/v0.30.0 I'll add RAR support once I find a good library. Or failing that, once I find the time to write...

Yes. The mechanism is in place but the values aren't being set correctly. What you should be seeing at the moment is System Type = 0 ARM Clock = 0xdeadbeef...

I've pushed a change that set the ARM clock speed correctly and sets the System Type https://github.com/JetSetIlly/Gopher2600/commit/d7c71fd49ad7c44a02dc5a0f72eae62f637e10a7 I don't think we agree on the PAL60 issue. As far as I'm...