EEE PC Benchmark Test


Asus Eee PC 4G (512M memory)
ecolinux-light 1.8
supercollider 3
scvim beta11

//oscillator benchmarks: parallel synths
//server cpu values
(
SynthDef("help-sinebechmark",
{
Out.ar(0, SinOsc.ar(Rand(200, 700), 0, 0.01))
}).send(s);
)

//pb333: avg cpu: 22.2 % mbp intel 1.83 3.2 %(128 UGens, 32 synths)
//
EEE PC cpu: 8 % PBG4 1.67Ghz 8 %
32.do({ Synth.new("help-sinebechmark"); });

//pb333: avg cpu: 43.5 % mbp intel 1.83 6.1 % (256 UGens, 64 synths)
//EEE PC cpu: 14 % PBG4 1.67Ghz 14 %
64.do({
Synth.new("help-sinebechmark"); });

//pb333: avg cpu: 64 % mbp intel 1.83 9 % (384 UGens, 96 synths)
//EEE PC cpu: 19.6 % PBG4 1.67Ghz 20 %
96.do({ Synth.new("help-sinebechmark"); });

//pb333: avg cpu: 81 % mbp intel 1.83 10.5 % (448 UGens, 112 synths) (GUI gets slow)
//EEE PC cpu: 22.2 % PBG4 1.67Ghz 23 %
112.do({ Synth.new("help-sinebechmark"); });

// mbp intel 1.83 66 % (448 UGens, 112 synths) (GUI gets slow)
800.do({
Synth.new("help-sinebechmark"); });

//EEE PC cpu: 66 %
356.do({
Synth.new("help-sinebechmark"); });

0 コメント: