I'm trying to figure out the max number of osc~ objects I can get going on one cpu on my computer. I am putting one of these:
#N canvas 218 154 450 898 12;
#X obj 116 155 osc~;
#X obj 215 31 loadbang;
#X obj 140 261 outlet~;
#X obj 116 18 inlet;
#X obj 212 84 random 2000;
#X obj 168 122 + 100;
#X obj 156 54 bang;
#X obj 127 208 *~ 5e-05;
#X connect 0 0 7 0;
#X connect 1 0 4 0;
#X connect 3 0 6 0;
#X connect 4 0 5 0;
#X connect 5 0 0 0;
#X connect 6 0 4 0;
#X connect 7 0 2 0;
into the clone in one of these:
#N canvas 414 250 520 311 12;
#X obj 199 193 dac~;
#X obj 194 50 bng 19 250 50 0 empty empty empty 0 -10 0 12 #fcfcfc #000000 #000000;
#X msg 189 78 all bang;
#X obj 183 116 clone temp_osc 12000;
#X connect 1 0 2 0;
#X connect 2 0 3 0;
#X connect 3 0 0 0;
I get 12K, which is great. Is there a better or more efficient way?
Thanks,
Sam