Displaying 6 results from an estimated 6 matches for "numvals".
Did you mean:
numval
2008 Aug 13
2
[LLVMdev] Cleanup of constant sequence type construction
...l convenience methods. I would like to change
the interfaces to each support four construction methods:
(a) With and without a type.
(b) With a vector or an array + size.
Here:
--
ConstantStruct {
static Constant *get(const StructType *T,
Constant*const* Vals, unsigned NumVals,
bool Packed = false);
static Constant *get(const StructType *T, const std::vector<Constant*> &V);
static Constant *get(Constant*const* Vals, unsigned NumVals,
bool Packed = false);
static Constant *get(const std::vector<Constant*>...
2011 Aug 12
1
sapply to bind columns, with repeat?
Hi R-help,
I am working with US COOP network station data and the files are
concatenated in single rows for all years, but I need to pull these
apart into rows for each day. To do this, I need to extract part of
each row such as station id, year, mo, and repeat this against other
variables in the row (days). My problem is that there are repeated
values for each day, and the files are fixed width
2011 Feb 04
3
[LLVMdev] ConstantBuilder proposal
...:get(Ty, V);
}
/// GetArray - return a constant array given an array type and a POD
/// array of elements.
static Constant *GetArray(
const ArrayType *Ty, ///< The type of the array
Constant *const *Vals, ///< The elements of the array
unsigned NumVals) { ///< The length of the array
return ConstantArray::get(Ty, Vals, NumVals);
}
/// GetArray - return a constant array given an array type and an
/// iterator pair
template<typename RandomAccessIterator>
static Constant *GetArray(
const ArrayType *Ty,...
2010 Feb 17
2
[LLVMdev] Kaleidoscope toy4 failure seg fault on llvm::ExecutionEngine::getTargetData (this=0x0)
I am new to llvm so I might be missing a critical step. My system is
Fedora 12 but this also happens in Mac OS X 10.6.2. Here are the
steps I used to compile llvm:
export TARGETS=x86,x86_64,cpp
export INSTALLDIR=/home/rovitotv/llvm
../llvm-2.6/configure --prefix=$INSTALLDIR --enable-bindings=none
--enable-targets=$TARGETS --enable-optimized
--with-llvmgccdir=$INSTALLDIR
2010 Feb 17
0
[LLVMdev] Kaleidoscope toy4 failure seg fault on llvm::ExecutionEngine::getTargetData (this=0x0)
First, you have to call llvm-g++ to use the llvm-gcc front end, but it
doesn't matter here.
I'd like to suggest that you use pastebin to put your code and the send us
the link, so that we can download it. The problem is that TheExecutionEngine
is set to NULL (maybe because of a previous error), but it will be really
better if you use pastebin.
On Wed, Feb 17, 2010 at 6:01 AM, Todd Rovito
2010 Feb 17
1
[LLVMdev] Kaleidoscope toy4 failure seg fault on llvm::ExecutionEngine::getTargetData (this=0x0)
On Wed, Feb 17, 2010 at 6:29 AM, Conrado Miranda
<miranda.conrado at gmail.com> wrote:
> First, you have to call llvm-g++ to use the llvm-gcc front end, but it
> doesn't matter here.
I got the compile command from the Kaleidoscope documentation.
> I'd like to suggest that you use pastebin to put your code and the send us
> the link, so that we can download it. The