mandelbrot Pharo Smalltalk #2 program
source code
"* The Computer Language Benchmarks Game
https://salsa.debian.org/benchmarksgame-team/benchmarksgame/
contributed by Paolo Bonzini
reworked by Isaac Gouy *"!
Object subclass: #BenchmarksGame
instanceVariableNames: ''
classVariableNames: ''
poolDictionaries: ''
category: ''!
!BenchmarksGame class methodsFor: 'private'!
mandelbrot: extent to: output
| limit2 m bits zr zi cr ci i tr stepr stepi |
limit2 := 4.0d0.
m := 50.
stepr := 2.0d0 / extent.
stepi := 2.0d0 / extent.
0 to: extent - 1 do: [ :y |
bits := 0.
ci := stepi * y asFloat - 1.0d0.
0 to: extent - 1 do: [ :x |
cr := stepr * x asFloat - 1.5d0.
zr := cr. zi := ci.
bits := bits bitShift: 1.
i := 1.
[
tr := (zr*zr) - (zi*zi) + cr.
zi := 2.0d0 * zr * zi + ci.
zr := tr.
(zr*zr) + (zi*zi) < limit2 and: [ (i := i + 1) < m ]
] whileTrue.
i = m ifTrue: [ bits := bits + 1 ].
(x bitAnd: 7) == 7 ifTrue: [
output nextPut: bits.
bits := 0.
]
].
(extent bitAnd: 7) == 0 ifFalse: [
bits := bits bitShift: 8 - (extent bitAnd: 7).
output nextPut: bits.
]
]! !
!BenchmarksGame class methodsFor: 'initialize-release'!
do: n
| out |
Stdio stdout
nextPutAll: 'P4'; lf;
print: n; nextPutAll: ' '; print: n; lf;
binary.
out := (ZnBufferedWriteStream on: Stdio stdout).
self mandelbrot: n to: out.
out flush! !
notes, command-line, and program output
NOTES:
64-bit Ubuntu quad core
Pharo8.0.0 build: 1122, commit: bbcdf97
Sun, 10 May 2020 03:51:57 GMT
MAKE:
cp /opt/src/pharo64-linux-stable/Pharo8.0.0-0-64bit-bbcdf97.image mandelbrot.pharo-2.pharo_run.image
cp /opt/src/pharo64-linux-stable/Pharo8.0.0-0-64bit-bbcdf97.changes mandelbrot.pharo-2.pharo_run.changes
ln -s /opt/src/pharo64-linux-stable/Pharo8.0-32bit-bbcdf97.sources .
cat Include/pharo/make.st
| prog |
(SystemWindow windowsIn: World
satisfying: [:w | w model canDiscardEdits])
do: [:w | w delete].
"load program to be measured"
prog := Smalltalk getSystemAttribute: 3.
(prog notNil) ifTrue: [FileStream fileIn: prog].
ImageCleaner cleanUpForRelease.
Smalltalk garbageCollect.
SmalltalkImage current snapshot: true andQuit: true.
/opt/src/pharo64-linux-stable/pharo -headless mandelbrot.pharo-2.pharo_run.image Include/pharo/make.st mandelbrot.pharo-2.pharo 2>/dev/null
cat Include/pharo/main.st
BenchmarksGame do: (Smalltalk getSystemAttribute: 3) asInteger.!
SmalltalkImage current snapshot: false andQuit: true!
34.56s to complete and log all make actions
COMMAND LINE:
/opt/src/pharo64-linux-stable/pharo -headless mandelbrot.pharo-2.pharo_run.image Include/pharo/main.st 16000
(BINARY) PROGRAM OUTPUT NOT SHOWN
pthread_setschedparam failed: Operation not permitted
This VM uses a separate heartbeat thread to update its internal clock
and handle events. For best operation, this thread should run at a
higher priority, however the VM was unable to change the priority. The
effect is that heavily loaded systems may experience some latency
issues. If this occurs, please create the appropriate configuration
file in /etc/security/limits.d/ as shown below:
cat <<END | sudo tee /etc/security/limits.d/pharo.conf
* hard rtprio 2
* soft rtprio 2
END
and report to the pharo mailing list whether this improves behaviour.
You will need to log out and log back in for the limits to take effect.
For more information please see
https://github.com/OpenSmalltalk/opensmalltalk-vm/releases/tag/r3732#linux