Displaying 3 results from an estimated 3 matches for "resultindexes".
Did you mean:
resultindex
2013 Jul 25
0
[LLVMdev] Steps to addDestination
Hi Rasha,
> for(rit=Result.begin();rit!=Result.end();++rit)
> {
> Value* Address= BlockAddress::get (*rit);
>
> IndirectBrInst *IBI = IndirectBrInst::Create(Address, Result.size(),i->getTerminator() );
> IBI->addDestination((*rit));
> }
This would be creating a block looking something like:
[ Do stuff ]
indirectbr i8*
2006 Jun 14
0
fclustIndex(package e1071) error: LaPack Routine dgesv
...Desktop/Fuzzy Cluster.dta",
convert.dates=TRUE, convert.factors=TRUE, missing.type=TRUE,
convert.underscore=TRUE, warn.missing.labels=TRUE)
row.names(Dataset) <- as.character(Dataset$cntry)
Dataset$cntry <- NULL
cl <- cmeans(Dataset, 4, 20, verbose=TRUE, method="cmeans")
resultindexes <- fclustIndex(cl, Dataset, index= "all")
resultindexes
I am receiving the following error message:
ERROR: Lapack routine dgesv
I have tried running the example for fclustIndex and it works fine.
The code above is based on the example from the manual (below). I
also checked t...
2013 Jul 24
2
[LLVMdev] Steps to addDestination
Hi
1-
for(rit=Result.begin();rit!=Result.end();++rit)
{
Value* Address= BlockAddress::get (*rit);
IndirectBrInst *IBI = IndirectBrInst::Create(Address,
Result.size(),i->getTerminator() );
IBI->addDestination((*rit));
}
I tried this code , but the needed destination wasn't added.
2- About LLVM backend
$ llc -march=cpp example_file.ll -o
I think it