How Many Threads at the same time ?

Just starting out? Need help? Post your questions and find answers here.
User avatar
thyphoon
Enthusiast
Enthusiast
Posts: 345
Joined: Sat Dec 25, 2004 2:37 pm

How Many Threads at the same time ?

Post by thyphoon »

Hello,

How do I know how many Threads I can run at the same time to load images? is there a calculation according to the processor (number of cores)? Are there any limits?
thanks
Bitblazer
Enthusiast
Enthusiast
Posts: 761
Joined: Mon Apr 10, 2017 6:17 pm
Location: Germany
Contact:

Re: How Many Threads at the same time ?

Post by Bitblazer »

User avatar
thyphoon
Enthusiast
Enthusiast
Posts: 345
Joined: Sat Dec 25, 2004 2:37 pm

Re: How Many Threads at the same time ?

Post by thyphoon »

Thanks i will read it !
User avatar
STARGÅTE
Addict
Addict
Posts: 2226
Joined: Thu Jan 10, 2008 1:30 pm
Location: Germany, Glienicke
Contact:

Re: How Many Threads at the same time ?

Post by STARGÅTE »

The limit is reached, when CreateThread() returns #False:

Code: Select all

Procedure Test(Void.i)
	Repeat
		Delay(1000)
	ForEver
EndProcedure

Define Count = 0
While CreateThread(@Test(), Count)
	Count + 1
	If Count % 100 = 0
		Debug Count
	EndIf
Wend
Debug Str(Count) + " threads!"
On my system no limit is reached, but thread creation becomes slower (count around 40000).
PB 6.01 ― Win 10, 21H2 ― Ryzen 9 3900X, 32 GB ― NVIDIA GeForce RTX 3080 ― Vivaldi 6.0 ― www.unionbytes.de
Lizard - Script language for symbolic calculations and moreTypeface - Sprite-based font include/module
Bitblazer
Enthusiast
Enthusiast
Posts: 761
Joined: Mon Apr 10, 2017 6:17 pm
Location: Germany
Contact:

Re: How Many Threads at the same time ?

Post by Bitblazer »

STARGÅTE wrote: Sat Aug 07, 2021 8:17 pmOn my system no limit is reached, but thread creation becomes slower (count around 40000).
Sounds like virtual memory mapping kicking in?
User avatar
thyphoon
Enthusiast
Enthusiast
Posts: 345
Joined: Sat Dec 25, 2004 2:37 pm

Re: How Many Threads at the same time ?

Post by thyphoon »

ok thanks ! :mrgreen:
User avatar
helpy
Enthusiast
Enthusiast
Posts: 552
Joined: Sat Jun 28, 2003 12:01 am

Re: How Many Threads at the same time ?

Post by helpy »

Windows 10 / Windows 7
PB Last Final / Last Beta Testing
Post Reply