Search found 123 matches

by veekoo
02 May 2022, 12:04
Forum: Hardware and software hacking
Topic: Lies, Damned Lies and Benchmarks.
Replies: 27
Views: 6234

Re: Lies, Damned Lies and Benchmarks.

To get real world load to todays computers I modified sieve to "toughsieve"
by veekoo
02 May 2022, 06:42
Forum: Hardware and software hacking
Topic: Lies, Damned Lies and Benchmarks.
Replies: 27
Views: 6234

Re: Lies, Damned Lies and Benchmarks.

This is little bit OT, but did everybody knew that Cray 1 supercomputer 1970's used only ICs and had 200 000 gates. 1990's they started to use microprocessors. Thanks to sieve now we can compare all the machines. Cray 1 supercomputer(Fortran)-Sieve-benchmark 0.110 seconds. Thats 190 times faster tha...
by veekoo
01 May 2022, 15:26
Forum: Hardware and software hacking
Topic: Lies, Damned Lies and Benchmarks.
Replies: 27
Views: 6234

Re: Lies, Damned Lies and Benchmarks.

Also, did you use the same compilation option -map=64k,hionly as https://github.com/lb3361/gigatron-lcc/blob/master/stuff/sieve/Makefile ? That shouldn't impact the ratios but make the code a bit faster by avoiding long jumps between screen holes.. I only changed -rom=dev, otherwise it was compiled...
by veekoo
01 May 2022, 12:09
Forum: Hardware and software hacking
Topic: Lies, Damned Lies and Benchmarks.
Replies: 27
Views: 6234

Re: Lies, Damned Lies and Benchmarks.

Just run all the different sieve versions. Sieve0: 41.1 seconds normal screen mode Sieve0: 28.67 seconds fast screen mode <- Ratio 2.05 Sieve1: 39.22 seconds normal screen mode Sieve1: 27.57 seconds fast screen mode <- Ratio 1.97 Sieve2: 29.72 seconds normal screen mode Sieve2: 20.87 seconds fast sc...
by veekoo
01 May 2022, 06:17
Forum: Escape Meta Alt Control Shift
Topic: Roadmap and status of Gigatron TTL
Replies: 20
Views: 8582

Re: Roadmap and status of Gigatron TTL

I am considering of updating GigatronTTL 64K DEVROM with latest DEVROM, PluggyReloaded firmware, GLCC compiler and compiling all programs again. Is this good spot to do it or is there some unfinished work there? Last update was 14.2.2022 EDIT: I did update on 1.5.2022. Everything works smoohtly as b...
by veekoo
29 Mar 2022, 12:01
Forum: Hardware and software hacking
Topic: Eurojackpot simulation lottosimu.c
Replies: 9
Views: 4008

Re: Eurojackpot simulation lottosimu.c

Current Eurojackpot lottery, which is played every tuesday and friday. I fixed a bug and updated win classes and engine of game. Now using new seed to randomize results. It changed behavior. Compiled to ROMv6. -fix version means you can input fixed row to play.
by veekoo
24 Feb 2022, 17:32
Forum: Hardware and software hacking
Topic: Gigatron 512k and more
Replies: 36
Views: 15385

Re: Gigatron 512k and more

Video banking Because we do not rely on the Gigatron CPU to read the pixel values, we no longer have to place the video buffer in the current address space of the CPU. We can displace it into another bank that we only access when we want to write something to the screen. This frees almost all of th...
by veekoo
24 Feb 2022, 15:45
Forum: Hardware and software hacking
Topic: Double your RAM:
Replies: 20
Views: 20044

Re: Double your RAM:

Time to do 64K RAM upgrade mod. I did it from the top of chip.

Now that I have 64K RAM, what are the top applications benefitting from more memory?

btw. I've tested most of the programs marked _64k_
by veekoo
24 Feb 2022, 09:10
Forum: Kit assembly gallery
Topic: Another Gigatron TTL in Finland
Replies: 15
Views: 11273

Re: Another Gigatron TTL in Finland

Gigatron TTL 64K RAM expansion mod
by veekoo
19 Feb 2022, 06:08
Forum: Hardware and software hacking
Topic: Implementing a faster multiplication routine
Replies: 25
Views: 11154

Re: Implementing a faster multiplication routine

I like this approach. The Mandelbrot_DEVROM.gt1 is really fast. In the past there was FractInt for 8-bit machines, so this trick and integer calcuation is way to go. My floating point fractals are only the basic code and most accurate AND very slow.