search for: vset

Displaying 5 results from an estimated 5 matches for "vset".

Did you mean: set
2013 Aug 16
2
[LLVMdev] CreateOr no matching member error
For the following code: Type * type = IntegerType::getInt32Ty(getGlobalContext()); IRBuilder<> builder(BB); std::set<Value *> Vset; Value * Vresult=0; for(std::set<Value*>::iterator Vit=Vset.begin();Vit!=Vset.end();Vit++) { Vresult=builder.CreateOr(Vit, Vresult, "WaitOr"); } Vset is inserted in previous loop by 0 or 1 The error is error: no matching member function for call to '...
2007 Jan 24
1
n step ahead forecasts
...ample code). In cases where there are relatively few periods I want to forecast for this seems to work fine, however I am working with a rather large validation set and I need to make n step ahead forecasts for many periods and it takes a very long time. Is there a more efficient way to do this? vset <- WWWusage[91:100] pred <-c() for (i in 0:9) { fit <-arima(WWWusage[1:(90+i)],c(3,1,0)) p<- predict(fit,se.fit=F) pred <- c(pred, p) } plot(pred,type="o",col=2) lines(vset,type="o",col=1) thanks, Spencer [[alternative HTML version delete...
2007 Oct 31
2
Shell Bash with R
..."Deregistrations by Timeout" xSet <- data$Steps[1] xTitle <- "Steps" ySet <- data$Time[s] yTitle <- "Time]" zSet <- data$Region zTitle <- "Region{R}" vSet <- c() vTitle <- "" wSet <- c() wTitle <- "" xAxisTicks <- getUsefulTicks(xSet) # Set to c() for automatic setting yAxisTicks <- getUsefulTicks(ySet) # Set to c() for automatic settin...
2016 Apr 29
3
Assert in TargetLoweringBase.cpp
This post is related to the following post http://lists.llvm.org/pipermail/llvm-dev/2016-April/098823.html I'm still trying to compile a library with clang. But now I'm getting as assert in lib/CodeGen/TargetLoweringBase.cpp:1155: virtual llvm::EVT llvm::TargetLoweringBase::getSetCCResultType(llvm::LLVMContext&, llvm::EVT) const: Assertion `!VT.isVector() && "No default
2016 Mar 25
0
lowering of BUILD_VECTOR
...CTOR instruction and how to lower it to the an actual ISA. i looked at other targets but wasn't quite able to figure it out. would someone be able to dumb it down for me? assume i have an insert element instruction which inserts an element from a GPR to a Vector Register at a given index, i..e vset <vector register> <gpr> <index> at the moment my target only supports v4i32. a comment for BUILD_VECTOR in the ISDOpcodes.h "says" the following: /// BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a vector with the /// specified, possibly variable, elements. my que...