I saw some handwarmer apps and I guess it’s very easy to make something like that by running multiple processes at once. Has anyone had a go on it? If you did, can you share it with us here?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just find some endlessly repeating calculation (like something that finds the digits in Pi for example), and launch three or four threads performing them – either an NSOperationQueue with a concurrent count set to four, or just spawn off threads yourself.
The key is to make the system work in some way, you can either exercise the CPU or the GPU (or both).