search for: filterids

Displaying 14 results from an estimated 14 matches for "filterids".

2008 Apr 17
1
[LLVMdev] Being able to know the jitted code-size before emitting
Thx again Evan for the review. Here's a new patch for the JIT in itself. The major changes are: 1) A JITMemoryManager now has a flag saying "I require to know the size of what you want to emit" 2) DwarfJITEmitter is augmented with GetSize* functions 3) JITEmitter::startFunction checks if the JITMemoryManager requires to know the size. If so, it computes it and gives it through the
2008 Feb 04
0
[LLVMdev] Exception handling in JIT
...unsigned char* > EndFunction) { > + // Map all labels and get rid of any dead landing pads. > + MMI->TidyLandingPads(); > + > + const std::vector<GlobalVariable *> &TypeInfos = MMI- > >getTypeInfos(); > + const std::vector<unsigned> &FilterIds = MMI->getFilterIds(); > + const std::vector<LandingPadInfo> &PadInfos = MMI- > >getLandingPads(); > + if (PadInfos.empty()) return 0; > + > + // Sort the landing pads in order of their type ids. This is > used to fold > + // duplicate actions. > + S...
2008 Feb 01
2
[LLVMdev] Exception handling in JIT
Dear all, Here's a new patch with Evan's comments (thx Evan!) and some cleanups. Now the (duplicated) exception handling code is in a new file: lib/ExecutionEngine/JIT/JITDwarfEmitter. This patch should work on linux/x86 and linux/ppc (tested). Nicolas -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: jit-exceptions.patch URL:
2011 Oct 04
0
Adding multiple gates/filters in densityplot
Hi R-Users, I posted this question a while ago on the bioconductor mailing list but got no answers. Maybe here is somebody who might know a solution: I failed at drawing multiple filters in a densityplot() using the FlowCore/FlowViz packages. I found a way to draw multiple filters in xyplot(), using the glpolygon method within the panel-function, but some similar attempts for densityplot
2017 Jul 13
2
consulta por varTypes de sqlSave en RODBC
Buen dia Javier, muchas gracias por tu ayuda y el script compartido. Me va a servir como ayuda para seguir aprendiendo sobre RODBC pero no encuentro una solucion para este problema puntual de poder definir el tipo y ancho de las variables, q segun creo se hace con el argumento varTypes. Si alguien tien algun ejemplo donde haya usado la SqlSave y VarTypes, me sera de gran ayuda. Abrazo a todos
2017 Jul 12
2
consulta por varTypes de sqlSave en RODBC
Buen dia compañerxs de R, les traigo una pregunta bastante especifica. En el trabajo me estan requiriendo el uso de SQL, asi q estoy aprendiendo a usarlo desde R, con el paquete RODBC. Mi problema puntual es que al crear una tabla en el servidor SQL a partir de un data frame en R (usando la funcion sqlSave) no puedo definir el tipo de variables que quiero usar en el data frame. Segun entiendo
2007 Dec 11
0
[LLVMdev] Exception handling in JIT
...unsigned char* > EndFunction) { > + // Map all labels and get rid of any dead landing pads. > + MMI->TidyLandingPads(); > + > + const std::vector<GlobalVariable *> &TypeInfos = MMI- > >getTypeInfos(); > + const std::vector<unsigned> &FilterIds = MMI->getFilterIds(); > + const std::vector<LandingPadInfo> &PadInfos = MMI->getLandingPads > (); > + if (PadInfos.empty()) return 0; > + > + // Sort the landing pads in order of their type ids. This is > used to fold > + // duplicate actions. > + S...
2007 Dec 10
2
[LLVMdev] Exception handling in JIT
Hi everyone, Here's a patch that enables exception handling when jitting. I've copy/pasted _many_code from lib/Codegen/DwarfWriter.cpp, so we may need to factorize it, but the functionality is there and I'm very happy with it :) lli should now be able to execute the output from llvm-gcc when using exceptions (the UnwindInst instruction is not involved in this patch). Just add the
2015 Apr 01
6
ESX VM from scratch
I want to create a virtual machine from scratch in ESX but I can't figure out how to create the disks - the vmdk files. Any hints on how that can be done or even if it's possible at all ? Thanks
2017 Jul 13
2
consulta por varTypes de sqlSave en RODBC
Hola Javier, si no estoy entendiendo mal, lo q deseo hacer no se trata de configurar los parametros SQL, sino solo de colocar un vector en el argumento VarTypes de la funcion sqlSave. El manual especifica esa opcion, pero no da ningun ejemplo de como usarla. *varTypes an optional named character vector giving the DBMSs datatypes to be used for* *some (or all) of the columns if a table is to be
2015 Apr 01
0
Re: ESX VM from scratch
On 04/01/2015 07:25 PM, Paul Apostolescu wrote: > I want to create a virtual machine from scratch in ESX May be https://communities.vmware.com/community/vmtn/vsphere/content?filterID=contentstatus[published]~objecttype~objecttype[thread]
2003 Feb 05
1
cbq.init for one port on a subnet
Sub:[LARTC] cbq init for one port on a subnet Hello, We use cbq.init to limit bandwidth. It works great on a per-user basis. Now I''d like to limit traffic from a netblock to the Internet on port 6699. Network is 192.168.0.160 mask 255.255.255.224 eth0 is the gateway eth1 connects the netblock in question Is this the proper syntax; DEVICE=eth0,10Mbit,1Mbit RATE=100Kbit
2006 Feb 10
14
[PATCH] TC: bug fixes to the "sample" clause
PATCH 1 ======= On my machine tc does not parse filter "sample" for the u32 filter. Eg: tc filter add dev eth2 parent 1:0 protocol ip prio 1 u32 ht 801: \ classid 1:3 \ sample ip protocol 1 0xff match ip protocol 1 0xff Illegal "sample" The reason is a missing memset. This patch fixes it. diff -Nur iproute-20051007.keep/tc/f_u32.c iproute-20051007/tc/f_u32.c
2007 Dec 12
3
[LLVMdev] Exception handling in JIT
...+ // Map all labels and get rid of any dead landing pads. >> + MMI->TidyLandingPads(); >> + >> + const std::vector<GlobalVariable *> &TypeInfos = MMI- >> >>> getTypeInfos(); >>> >> + const std::vector<unsigned> &FilterIds = MMI->getFilterIds(); >> + const std::vector<LandingPadInfo> &PadInfos = MMI->getLandingPads >> (); >> + if (PadInfos.empty()) return 0; >> + >> + // Sort the landing pads in order of their type ids. This is >> used to fold >> + //...