Displaying 4 results from an estimated 4 matches for "bbcount".
Did you mean:
b_count
2009 Jan 28
2
help with plot layout
...- seq(1,WavMaxNumCoef/2,1)
vvCounts <- vector(length=WavMaxNumCoef/2)
for(k in 1:(WavMaxNumCoef/2)) {
vvCounts[k] <- length(which(vv[] == k))
}
yyLab <- seq(1,length(t(vv)),2)
bb <- read.table("16440-Length")
bbLab <- seq(min(bb),max(bb),1)
bb <- sort(t(bb))
bbCounts <- as.numeric(vector(length=(max(bb)-min(bb)+1)))
for(k in 1:length(bbCounts)) {
bbCounts[k] <- length(which(bb[] == (k +min(bb) -1)))
}
zzLab <- seq(1,max(bbCounts),1)
# DEFINE LAYOUT
x11(width=22,height=14)
nf <- layout(matrix(c(1,3,2,4),2,2,byrow=TRUE), c(3,1), c(2,2),FALS...
2014 Jul 18
5
[PATCH 0/5] nvc0: fp64 preparation
Most of codegen is already FP64-ready. There are a few edge-cases that I ran
into, many of which can apply even to non-fp64-enabled programs (although the
double-wide registers are not very common without fp64).
I've yet to give this a full piglit run, but wanted to send these out in case
someone wanted to comment. They do not depend on the preliminary core fp64
work.
Ilia Mirkin (5):
2017 Jun 15
7
[RFC] Profile guided section layout
...t; Counts;
+
+ for (auto &F : M) {
+ if (F.isDeclaration())
+ continue;
+ getAnalysis<BranchProbabilityInfoWrapperPass>(F).getBPI();
+ auto &BFI = getAnalysis<BlockFrequencyInfoWrapperPass>(F).getBFI();
+ for (auto &BB : F) {
+ Optional<uint64_t> BBCount = BFI.getBlockProfileCount(&BB);
+ if (!BBCount)
+ continue;
+ for (auto &I : BB) {
+ auto *CI = dyn_cast<CallInst>(&I);
+ if (!CI)
+ continue;
+ Function *CalledF = CI->getCalledFunction();
+ if (!CalledF || CalledF->isI...
2009 Jan 28
2
t.test in a loop
Hi All,
I've been having a little trouble with creating a loop that will run a a
series of t.tests for inspection,
Below is the code i've tried, and some checks i've looked at.
I've used the get(paste()) idea as i was told previously that the use of the
eval should try and be avoided.
I've run a single syntax to check that my systax is correct and works
without any problems