Displaying 2 results from an estimated 2 matches for "roofline".
Did you mean:
offline
2020 May 06
2
Parallel transfers with sftp (call for testing / advice)
On Tue, May 5, 2020 at 4:31 AM Peter Stuge <peter at stuge.se> wrote:
>
> Matthieu Hautreux wrote:
> > The change proposed by Cyril in sftp is a very pragmatic approach to
> > deal with parallelism at the file transfer level. It leverages the
> > already existing sftp protocol and its capability to write/read file
> > content at specified offsets. This enables
2018 Nov 01
2
RFC: System (cache, etc.) model for LLVM
...Greene via llvm-dev
<llvm-dev at lists.llvm.org>:
> class TargetCacheLevelInfo {
> /// getWays - Return the number of ways.
> ///
> unsigned getWays() const;
That is, associativity?
Bandwidth might be a useful addition, e.g. if a performance analysis
tools uses the roofline model.
> class TargetSoftwarePrefetcherInfo {
> /// Should we do software prefetching at all?
> ///
> bool isEnabled() const;
isEnabled sounds like something configurable at runtime.
> /// Provide a general prefetch distance hint.
> ///
> unsigne...