Mill Computing, Inc. › Forums › The Mill › Architecture › Multi core machine?
Tagged: multicore
- AuthorPosts
- #3617 |
Is there anything I can read about multicores? I specific was wondering if there’s any way they communicate with eachother?
Specifically I was wondering about consumer/producer threads. IIRC the mills don’t do more than one thread on a core because it’s less efficient? Anyway I’d want a producer thread to write pointer(s) to a cache line (64bytes?) then say hey this is up for grabs to any core who wants this. Or maybe assign it to a core which then can query if that memory address is owned by it without causing memory contention or copying memory that isn’t ready
- This topic was modified 4 years, 1 month ago by CPUSpeedup.
Google is your friend π
Try threading, multithread, multicore, cache coherence… as starting keys at Wikipedia.
Earlier posts about some of the things you mention:
“We donβt do SMT.”.
I think it has also been said as an answer at a Q&A session after a talk (?) that all multi-core Mills will be single-chip designs sharing the same cache.Synchronisation primitives (such as those used for buffers for producer/consumer threads) are notoriously difficult to make right. As on any platform, those would be best left to the guys writing standard libraries I think.
A little has been said about synchronisation on The Mill though:
multi-cpu memory model
VolatileHow to schedule communicating threads and when to move threads between cores is a question for operating system designers, I think. I would be surprised if that is significantly different on the Mill than on any other architecture.
- This reply was modified 4 years, 1 month ago by Findecanor.
You are right that such things are questions for the OS designers. As we are doing a reference kernel, that includes us π
- AuthorPosts
You must be logged in to reply to this topic.