| Newsgroups |
gmane.comp.audio.supercollider.user |
| Message-ID |
<CAK6yb7ZCCTNw4wv8az-n3xvUtN6os1OYXEV-dxC84UoJbCsGvA@mail.gmail.com> |
I assume your example is truncated, but even then that shouldn't crash
because 1000 is less than 2048. Still, I'm able to get up to 16384. Adding
a 16385th crashes the server.
If you change 1000 in your example to 2049, does your example crash?
If I use `Bus.control(s, 8)` (ie create an 8-channel bus), I can only
create 2048, but that is expected. If you're trying to build multi channel
buses, you'll need to allocate more accordingly.
On Sat, Mar 6, 2021 at 1:21 AM <[email protected]> wrote:
> That's weird. I could allocate all the way to 16384.
> Maybe you have an extension that changes control bus allocation? Also,
> this might be different if the server is set for multiple clients, but I
> don't know for sure.
>
> On Fri, Mar 5, 2021 at 9:52 PM <[email protected]> wrote:
>
>> It I set the number of busses to 16384, I can get 2048. If I set it to
>> 65536, I can get 8192.
>>
>> It’s real weird.
>>
>> Sam
>>
>> On Mar 6, 2021, at 6:31 AM, [email protected] wrote:
>>
>> Are you sure your local server is your default server (assigned to s)?
>>
>> It is for me, so in that example I can allocate 16384 buses.
>> To be sure, I'd write it like this:
>>
>> Server.default.options.numControlBusChannels_(16384);
>> Server.default.reboot;
>> 1000.do{Bus.control(s).postln;}
>>
>> On Fri, Mar 5, 2021 at 9:22 PM <[email protected]> wrote:
>>
>>> Does anyone else have this issue? When I boot the server with a specific
>>> control bus allocation, I actually can only allocate the number of busses
>>> specified divided by 2**3. So, here I can only allocate 2048 busses:
>>>
>>> Server.local.options.numControlBusChannels_(16384);
>>> s.reboot;
>>> 1000.do{Bus.control(s).postln;}
>>> _______________________________________________
>>> sc-users mailing list
>>>
>>> info (subscription, etc.):
>>> http://www.birmingham.ac.uk/facilities/ea-studios/research/supercollider/mailinglist.aspx
>>> archive: http://www.listarc.bham.ac.uk/marchives/sc-users/
>>> search: http://www.listarc.bham.ac.uk/lists/sc-users/search/
>>>
>>
>>