search for: getnumloadstorebuff

Displaying 3 results from an estimated 3 matches for "getnumloadstorebuff".

2018 Nov 09
2
RFC: System (cache, etc.) model for LLVM
...ware resource for the compiler's > needs, though I think we will in general want multiple such things. > Maybe one for load and one for store to start? For more harware-y > things like llvm-mca more detail may be desired. Your RFC already has getNumStoreBuffers, getNumLoadBuffers and getNumLoadStoreBuffers, no? As far I understand, write-combining only applies to getNumStoreBuffers(). Prefetch streams would limit getNumLoadBuffers. Michael
2018 Nov 01
2
RFC: System (cache, etc.) model for LLVM
...int getNumStoreBuffers() const; > > /// getMaxNumStoreBuffers - Return the maximum number of store > /// streams that may be active before shutting off streaming > /// entirely. -1 => no limit. > /// > int getMaxNumStoreBuffers() const; > > /// getNumLoadStoreBuffers - Return the effective number of > /// buffers available for streams that both load and store data. > /// This is the number of simultaneously active independent > /// load-store streams the processor can handle before degrading > /// performance. > /// >...
2018 Nov 07
3
RFC: System (cache, etc.) model for LLVM
Am Mo., 5. Nov. 2018 um 10:26 Uhr schrieb David Greene <dag at cray.com>: > Yes, I agree the terminology is confusing. I used the term "stream" in > the sense of stream processing (https://en.wikipedia.org/wiki/Stream_processing). > The programming model is very different, of course, but the idea of a > stream of data that is acted upon and then essentially discarded