Displaying 2 results from an estimated 2 matches for "nthroot".
2009 Mar 19
2
nth root
Hi,
Is there a function in R to calculate the nth root, similar to the
MATLAB function NTHROOT()?
Thanks,
Martin Biuw
[[alternative HTML version deleted]]
2020 Jan 03
10
Writing loop transformations on the right representation is more productive
...rt(Root,Optimized);
Matches += 1;
}
if (Matches >= Threshold)
return;
// Low level: optimize working set for L1 cache size using tiling
Band = maximumTilableNest(Root);
WorkingSetSizePerIteration = estimatWorkingSet(Band.back().getBody());
TileSize = floor(nthroot(L1CacheSize / WorkingSetSizePerIteration,
Band.size()));
if (TileSize > 1) {
Worklist.insert(applyTiling(Root, TilesSize.splat(Band.size()));
Matches += 1;
}
if (Matches >= Threshold)
return;
// Low level: vectorization for each SIMD level (potentially...