search for: itype

Displaying 20 results from an estimated 23 matches for "itype".

Did you mean: type
2009 Mar 01
1
projecting GIS coordinates for analysis with spatstat package
...9.24220, 49.27744, 49.23474, 49.28229, 49.28229, 49.27671, 49.27671, 49.25974, 49.26510, 49.27671, 49.29036, 49.26100, 49.27989, 49.26103, 49.27216, 49.27548, 49.27548, 49.27548, 49.27548, 49.27548, 49.23475, 49.27759, 49.24524, 49.26271, 49.20531, 49.26337, 49.23862, 49.28447, 49.20871, 49.28306), itype=c("Emergency Medical Service", "Rescue", "Service Call", "Alarm Activation", "Hazardous Condition", "Motor Vehicle Accident", "Emergency Medical Service", "Emergency Medical Service", "Fire", "Alarm Activ...
2015 Apr 17
2
[LLVMdev] how to use "new instruction()"
Thanks Jonathan. I knew this document. But I didn't understand the "unsigned iType, Use *Ops" fields. Could you please help how I can create a new instruction to do the example I was giving? Thanks for your time in advance. Best, Zhi On Thu, Apr 16, 2015 at 5:48 PM, Jonathan Roelofs <jonathan at codesourcery.com > wrote: > You're probably looking for this met...
2004 May 26
0
[LLVMdev] Changes in llvm::Instruction and subclasses
This should not affect current code but it may help people who deal with LLVM instructions. Up till now one could create an llvm::Instruction (and subclasses) using the following constructor: Instruction(const Type *Ty, unsigned iType, const std::string &Name ="", Instruction *InsertBefore = 0); If InsertBefore was specified the instruction was added to the basic block InsertBefore was in, right after InsertBefore. While writing my frontend this was never the case; I always wanted to append to the end...
2008 Feb 14
4
domain name display issue in linux pc
Hi, Thanks for your response on the kernel switching.I was away and could not reply immediately. Right now, I am facing a differentissue. I have to set up DNS server using BIND on Centos 4.3. When Itype the hostname on Centos, it shows: sipserver.vodcalocal.com But the cli prompt has root at sipserver~ meaning only the sipserver part of the hostname is displayed. whyis this so? What is the actual hostname then? I see in the /etc/sysconfig/network that thehostname is sipserver.vodcalocal.com the /...
2011 Nov 17
2
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...;); > + if (vectorizePairs(VectorBits, BB)) { > + changed = true; > + } > + else { > + break; > + } In general you should use '} else {'. Here braces are not needed at all. > + static inline VectorType *getVecType(Type *iType) { > + if (iType->isVectorTy()) { > + unsigned numElem = cast<VectorType>(iType)->getNumElements(); > + return VectorType::get(iType->getScalarType(), numElem*2); > + } > + else { > + return VectorType::get(iType, 2); > +...
2015 Apr 17
3
[LLVMdev] how to use "new instruction()"
...ks again. Best, Zhi On Thu, Apr 16, 2015 at 6:16 PM, Tim Northover <t.p.northover at gmail.com> wrote: > On 16 April 2015 at 17:53, zhi chen <zchenhn at gmail.com> wrote: > > Thanks Jonathan. I knew this document. But I didn't understand the > "unsigned > > iType, Use *Ops" fields. Could you please help how I can create a new > > instruction to do the example I was giving? Thanks for your time in > advance. > > You can't. Instruction's constructor is protected so you can't use it > outside implementing a new Instruction no...
2011 Nov 21
0
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...ts, BB)) { > > + changed = true; > > + } > > + else { > > + break; > > + } > > In general you should use '} else {'. Here braces are not needed at all. > > > + static inline VectorType *getVecType(Type *iType) { > > + if (iType->isVectorTy()) { > > + unsigned numElem = cast<VectorType>(iType)->getNumElements(); > > + return VectorType::get(iType->getScalarType(), numElem*2); > > + } > > + else { > > + return VectorTyp...
2011 Nov 16
0
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
Tobias, et al., Attached is the my autovectorization pass. I've fixed a bug that appears when using -bb-vectorize-aligned-only, fixed some 80-col violations, etc., and at least on x86_64, all test cases pass except for a few; and all of these failures look like instruction-selection bugs. For example: MultiSource/Applications/ClamAV - fails to compile shared_sha256.c with an error: error in
2016 Feb 20
2
[Bug 94225] New: Mesa crash with "nouveau" driver and Minetest
..._array.c:1014 #16 0xb5e1c509 in vbo_exec_DrawElements (mode=4, count=3648, type=5123, indices=0x1717d500) at vbo/vbo_exec_array.c:1164 #17 0xb7cb1820 in irr::video::COpenGLDriver::renderArray (this=0x868b8d0, indexList=0x1717d500, primitiveCount=1216, pType=irr::scene::EPT_TRIANGLES, iType=irr::video::EIT_16BIT) at COpenGLDriver.cpp:1743 #18 0xb7cb1372 in irr::video::COpenGLDriver::drawVertexPrimitiveList ( ---Type <return> to continue, or q <return> to quit--- this=0x868b8d0, vertices=0x1b312db0, vertexCount=2432, indexList=0x1717d500, primitiveCount=1216, v...
2011 Nov 15
3
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
Tobias, I've attached the latest version of my autovectorization patch. I was able to add support for using the ScalarEvolution analysis for load/store pairing (thanks for your help!). This led to a modest performance increase and a modest compile-time increase. This version also has a cutoff as you suggested (although the default value is set high (4000 instructions between pairs) because
2015 Apr 17
2
[LLVMdev] how to use "new instruction()"
I read the tutorial document, but I didn't understand the it and Ops fields of instruction class well. Can any one give me an example? Instruction *newInstr = new Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps, Instruction *InsertBefore); For example, I have an *instruction *pInst *without no the type of operation in advance. If I want to create a new instruction which is
2020 Feb 06
0
[PATCH] Add support for zstd compression
...LIBS]) + ################################################# # check for extended attribute support AC_MSG_CHECKING(whether to support extended attributes) diff --git a/options.c b/options.c index e5b0cb68280ed..07e3f1e5d0ac1 100644 --- a/options.c +++ b/options.c @@ -23,6 +23,9 @@ #include "itypes.h" #include <popt.h> #include <zlib.h> +#ifdef HAVE_LIBZSTD +#include <zstd.h> +#endif extern int module_id; extern int local_server; @@ -77,6 +80,7 @@ int protocol_version = PROTOCOL_VERSION; int sparse_files = 0; int preallocate_files = 0; int do_compression = 0;...
2004 Oct 04
1
[LLVMdev] cfrontend-1.3.source: Compilation error
....o ada/exp_tss.o ada/exp_util.o ada/exp_vfpt.o ada/expander.o ada/fname.o ada/fname-uf.o ada/fmap.o ada/freeze.o ada/frontend.o ada/gnat.o ada/g-hesora.o ada/g-htable.o ada/g-os_lib.o ada/g-speche.o ada/s-crc32.o ada/get_targ.o ada/gnatvsn.o ada/hlo.o ada/hostparm.o ada/impunit.o ada/interfac.o ada/itypes.o ada/inline.o ada/krunch.o ada/lib.o ada/layout.o ada/lib-load.o ada/lib-util.o ada/lib-xref.o ada/lib-writ.o ada/live.o ada/namet.o ada/nlists.o ada/nmake.o ada/opt.o ada/osint.o ada/osint-c.o ada/output.o ada/par.o ada/repinfo.o ada/restrict.o ada/rident.o ada/rtsfind.o ada/s-assert.o ada/s-par...
2011 Dec 02
5
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...alue *CV0 = ConstantInt::get(Type::getInt32Ty(Context), 0); > + Value *CV1 = ConstantInt::get(Type::getInt32Ty(Context), 1); > + > + if (isa<StoreInst>(I)) { > + AA.replaceWithNewValue(I, K); > + AA.replaceWithNewValue(J, K); > + } else { > + Type *IType = I->getType(); > + Type *VType = getVecType(IType); > + > + if (IType->isVectorTy()) { > + unsigned numElem = cast<VectorType>(IType)->getNumElements(); > + std::vector<Constant*> Mask1(numElem), Mask2(numElem); > + for (...
2011 Dec 14
0
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...getInt32Ty(Context), 0); > > + Value *CV1 = ConstantInt::get(Type::getInt32Ty(Context), 1); > > + > > + if (isa<StoreInst>(I)) { > > + AA.replaceWithNewValue(I, K); > > + AA.replaceWithNewValue(J, K); > > + } else { > > + Type *IType = I->getType(); > > + Type *VType = getVecType(IType); > > + > > + if (IType->isVectorTy()) { > > + unsigned numElem = cast<VectorType>(IType)->getNumElements(); > > + std::vector<Constant*> Mask1(numElem), Mask2(numEle...
2011 Nov 23
0
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
On Mon, 2011-11-21 at 21:22 -0600, Hal Finkel wrote: > On Mon, 2011-11-21 at 11:55 -0600, Hal Finkel wrote: > > Tobias, > > > > I've attached an updated patch. It contains a few bug fixes and many > > (refactoring and coding-convention) changes inspired by your comments. > > > > I'm currently trying to fix the bug responsible for causing a compile
2011 Dec 02
0
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...getInt32Ty(Context), 0); > > + Value *CV1 = ConstantInt::get(Type::getInt32Ty(Context), 1); > > + > > + if (isa<StoreInst>(I)) { > > + AA.replaceWithNewValue(I, K); > > + AA.replaceWithNewValue(J, K); > > + } else { > > + Type *IType = I->getType(); > > + Type *VType = getVecType(IType); > > + > > + if (IType->isVectorTy()) { > > + unsigned numElem = cast<VectorType>(IType)->getNumElements(); > > + std::vector<Constant*> Mask1(numElem), Mask2(numEle...
2020 May 20
0
[PATCHv2] SSE2/SSSE3 optimized version of get_checksum1() for x86-64
...+ifeq ($(CXXUSED),yes) > + .SUFFIXES: .c .cpp .o > +else > + .SUFFIXES: .c .o > +endif > > GENFILES=configure.sh aclocal.m4 config.h.in proto.h proto.h-tstamp > rsync.1 rsync-ssl.1 rsyncd.conf.5 > HEADERS=byteorder.h config.h errcode.h proto.h rsync.h ifuncs.h > itypes.h inums.h \ > @@ -41,10 +48,11 @@ OBJS1=flist.o rsync.o generator.o receiver.o > cleanup.o sender.o exclude.o \ > OBJS2=options.o io.o compat.o hlink.o token.o uidlist.o socket.o hashtable.o \ > fileio.o batch.o clientname.o chmod.o acls.o xattrs.o > OBJS3=progress.o pipe.o &...
2011 Nov 22
5
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
On Mon, 2011-11-21 at 11:55 -0600, Hal Finkel wrote: > Tobias, > > I've attached an updated patch. It contains a few bug fixes and many > (refactoring and coding-convention) changes inspired by your comments. > > I'm currently trying to fix the bug responsible for causing a compile > failure when compiling >
2020 May 19
5
[PATCHv2] SSE2/SSSE3 optimized version of get_checksum1() for x86-64
...RSYNC_VERSION@ .SUFFIXES: -.SUFFIXES: .c .o +ifeq ($(CXXUSED),yes) + .SUFFIXES: .c .cpp .o +else + .SUFFIXES: .c .o +endif GENFILES=configure.sh aclocal.m4 config.h.in proto.h proto.h-tstamp rsync.1 rsync-ssl.1 rsyncd.conf.5 HEADERS=byteorder.h config.h errcode.h proto.h rsync.h ifuncs.h itypes.h inums.h \ @@ -41,10 +48,11 @@ OBJS1=flist.o rsync.o generator.o receiver.o cleanup.o sender.o exclude.o \ OBJS2=options.o io.o compat.o hlink.o token.o uidlist.o socket.o hashtable.o \ fileio.o batch.o clientname.o chmod.o acls.o xattrs.o OBJS3=progress.o pipe.o +CXXOBJ=@CXXOBJ@ DAEMON_OBJ...