search for: numcycles

Displaying 9 results from an estimated 9 matches for "numcycles".

Did you mean: nr_cycles
2009 Jan 28
2
help with plot layout
...wing. Thank you so much, Maura ################################################################## WavMaxNumCoef <- 30 setwd("C:/Documents and Settings/Monville/SpAn-Tests/16440-Raw-Dir") xx <- read.table("Interp-Amp-PhasePlus16440.txt",header=TRUE, sep=" ") NumCycles <- max(xx[,"cycle"]) TickPos <- vector(length=NumCycles) TickCoord <- vector(length=NumCycles) for(i in 1:NumCycles) { TickPos[i] <- xx[min(which(xx[,"cycle"] == i)),1] } aa <- read.table( "16440-Alpha.txt" ) xaa <- seq(1:length(t(aa))) v...
2007 Mar 28
1
warnings on adapt
...e the fortran code ;-) !", "Ifail=4, minpts > maxpts; should not happen!", "Ifail=5, internal non-convergence; should not happen!", ) When it finishes: Warning messages: 1: Ifail=2, lenwrk was too small. -- fix adapt() ! Check the returned relerr! in: adapt(ndim = 1 + numcycles, lower = rep(lowlim.int, (numcycles + 2: NA/Inf replaced by maximum positive value Some people already asked similar questions but couldn't find the answer. Thanks in advance Luz PS: When using the function adapt only (not within nlm) it gives no warnings.
2012 Nov 27
2
[LLVMdev] strange dbgs() behavior: unable to print floats in machine backend
...n); >> dbgs() << "OOPS " << 1.15 << "\n"; >> return flag; >> } >> >> This method invokes the backend method >> >> bool ADRESInstrInfo::isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, unsigned ExtraPredCycles, >> const BranchProbability &Probability) const { >> dbgs() << "OOPS " << 1.16 << "\n"; >> } >> >> This invocation works as it should (verified with gdb)....
2012 Nov 27
0
[LLVMdev] strange dbgs() behavior: unable to print floats in machine backend
...() << "OOPS " << 1.15 << "\n"; > >> return flag; > >> } > >> > >> This method invokes the backend method > >> > >> bool ADRESInstrInfo::isProfitableToIfCvt(MachineBasicBlock &MBB, > unsigned NumCycles, unsigned ExtraPredCycles, > >> const BranchProbability > &Probability) const { > >> dbgs() << "OOPS " << 1.16 << "\n"; > >> } > >> > >> This invocation works as i...
2012 Nov 26
0
[LLVMdev] strange dbgs() behavior: unable to print floats in machine backend
..., Prediction); dbgs() << "OOPS " << 1.15 << "\n"; return flag; } This method invokes the backend method bool ADRESInstrInfo::isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, unsigned ExtraPredCycles, const BranchProbability &Probability) const { dbgs() << "OOPS " << 1.16 << "\n"; } This invocation works as it should (verified with gdb). But when I execute this code fragment, I get...
2012 Nov 27
1
[LLVMdev] strange dbgs() behavior: unable to print floats in machine backend
...dbgs() << "OOPS " << 1.15 << "\n"; > >> return flag; > >> } > >> > >> This method invokes the backend method > >> > >> bool ADRESInstrInfo::isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, unsigned ExtraPredCycles, > >> const BranchProbability &Probability) const { > >> dbgs() << "OOPS " << 1.16 << "\n"; > >> } > >> > >> This invocation works as it sho...
2012 Nov 01
0
[LLVMdev] : Predication on SIMD architectures and LLVM
On Wed, Oct 31, 2012 at 09:13:43PM +0100, Bjorn De Sutter wrote: > Hi all, > > I am working on a CGRA backend (something like a 2D VLIW), and we also absolutely need predication. I extended the IfConversion pass to allow it to be executed multiple times and to predicate already predicated code. This is necessary to predicate code with nested conditional statements. At this point, we
2012 Oct 31
3
[LLVMdev] : Predication on SIMD architectures and LLVM
Hi all, I am working on a CGRA backend (something like a 2D VLIW), and we also absolutely need predication. I extended the IfConversion pass to allow it to be executed multiple times and to predicate already predicated code. This is necessary to predicate code with nested conditional statements. At this point, we support or, and, and conditional predicates (see Scott Mahlke's papers on this
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