search for: larget

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

Did you mean: target
2008 Sep 11
2
database table merging tips with R
...onnect to Oracle via odbc: > > >>>> > > >>>> library(RODBC) > > >>>> connection <- odbcConnect("****", uid="****", pwd="****") > > >>>> d = sqlQuery(connection, "select userid, x, y, z from largetable where timestamp > sysdate -7") > > >>>> > > >>>> ...allowing me to pull data from the database table into the R object "d" and then use the R merge function. The problem however is that if "d" is too large it may fail due to memor...
2009 Mar 16
0
[LLVMdev] MachO and ELF Writers/MachineCodeEmitters arehard-codedinto LLVMTargetMachine
...I disagree actually the MachineCodeEmitter or the 'MachineCodeWritter' does not do any file handling at all. Do look at the code for the MachineCodeWritter and you will see it only writes to memory and if it reaches the end of the allotted memory I believe higher ordered logic reallocates a larget buffer and starts again from scratch. This could be avoided if they generated fixus for absolute memory references refering within the outputted code. Then a alloc function could be called before outputting say a 4 byte int and could realloc and copy code and when finally written the fixups could b...
2009 Mar 16
2
[LLVMdev] MachO and ELF Writers/MachineCodeEmitters arehard-codedinto LLVMTargetMachine
...the MachineCodeEmitter or the > 'MachineCodeWritter' does not do any file handling at all. Do look at the > code for the MachineCodeWritter and you will see it only writes to memory > and if it reaches the end of the allotted memory I believe higher ordered > logic reallocates a larget buffer and starts again from scratch. This could > be avoided if they generated fixus for absolute memory references refering > within the outputted code. Then a alloc function could be called before > outputting say a 4 byte int and could realloc and copy code and when finally > writte...
2009 Mar 15
3
[LLVMdev] MachO and ELF Writers/MachineCodeEmitters arehard-codedinto LLVMTargetMachine
>I like the idea of a generic MachineCodeWriter, although I prefer the >name 'ObjectFileWriter'... Thats much more descriptive of the functionality. >I think we need to take a hard look at which bits of the >Writer/Emitter infrastructure are needed for what tasks (Object File >Emittion, JIT, etc.) and make sure that our abstractions are flexible >enough... I would
2009 Mar 16
0
[LLVMdev] MachO and ELF Writers/MachineCodeEmitters arehard-codedinto LLVMTargetMachine
...the MachineCodeEmitter or the > 'MachineCodeWritter' does not do any file handling at all. Do look at the > code for the MachineCodeWritter and you will see it only writes to memory > and if it reaches the end of the allotted memory I believe higher ordered > logic reallocates a larget buffer and starts again from scratch. This could > be avoided if they generated fixus for absolute memory references refering > within the outputted code. Then a alloc function could be called before > outputting say a 4 byte int and could realloc and copy code and when finally > writte...
2009 Mar 16
1
[LLVMdev] MachO and ELF Writers/MachineCodeEmitters arehard-codedinto LLVMTargetMachine
...the MachineCodeEmitter or the > 'MachineCodeWritter' does not do any file handling at all. Do look at the > code for the MachineCodeWritter and you will see it only writes to memory > and if it reaches the end of the allotted memory I believe higher ordered > logic reallocates a larget buffer and starts again from scratch. This could > be avoided if they generated fixus for absolute memory references refering > within the outputted code. Then a alloc function could be called before > outputting say a 4 byte int and could realloc and copy code and when finally > writte...
2013 Feb 11
2
[LLVMdev] Emulating an infinite register file in the backend
...erInfo.td I'm (just starting) implementing an LLVM target that bares some similarities to PTX. One of these is the notion of infinite registers, since my target too is a kind of virtual/universal machine. My target will not emit object files, so there i would prefer not to define a very larget register file and mess with formats. A bit-level format will at some point be defined but i don't want to fix it from now. So your approach seems highly relevant. Best regards Nikolaos Kavvadias Quoting Justin Holewinski <justin.holewinski at gmail.com>: > configure:12131: $?...
2010 Dec 10
11
pp grammar test-files?
Hi, I am working on some tools that read and write pp files, and I wonder if there are some pp files available somewhere that can be used to test a parser. I am especially interested in if there are some tests written that capture invalid syntax. - henrik -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send
2013 Feb 10
0
[LLVMdev] llvm installation
configure:12131: $? = 0 configure:12145: result: yes configure:12157: checking tool compatibility configure:12180: error: g++|clang++|icc required but not found configure can't find a c++ compiler. On Ubuntu, please install g++ (sudo apt-get install g++). This error should have been written to your console when you ran configure. On Sun, Feb 10, 2013 at 8:35 AM, Manoj C
2010 Jun 25
2
Resize all partitions bigger
I effectively have 1 drive /dev/sda (it's actually a hardware raid 10 array) I have lots of free sapce. I want to resize my partitions (boot, home, /) bigger. Going to use Clonezilla to make an image of each partition and save it on another box. Then re-partition and format new bigger partitions. Then restore images with Clonezilla. But I know UUID's will be wrong and I don't feel
2013 Feb 10
2
[LLVMdev] llvm installation
hello sir, i am using llvm compiler for my project.i an doing llvm installation.i followed all the steps in the llvm website but after running this command ../llvm/configure --enable-targets=host-only it executed but it didnt create any make file in build directory ,only config.log file is appeared after running this command. after running the later command it is showing like this
2013 Feb 12
0
[LLVMdev] Emulating an infinite register file in the backend
..., and it also doesn't suffer from as much backwards-compatibility cruft. NVPTX has evolved over many LLVM revisions, and sometimes uses old techniques. I'm working on getting it up to date. > > My target will not emit object files, so there i would prefer not to > define a very larget register file and mess with formats. A bit-level > format will at some point be defined but i don't want to fix it from now. > > So your approach seems highly relevant. > > Best regards > Nikolaos Kavvadias > > > Quoting Justin Holewinski <justin.holewinski at gmai...
2009 Mar 16
2
[LLVMdev] MachO and ELF Writers/MachineCodeEmittersarehard-codedinto LLVMTargetMachine
...mitter or the >> 'MachineCodeWritter' does not do any file handling at all. Do look at the >> code for the MachineCodeWritter and you will see it only writes to memory >> and if it reaches the end of the allotted memory I believe higher ordered >> logic reallocates a larget buffer and starts again from scratch. This >> could >> be avoided if they generated fixus for absolute memory references >> refering >> within the outputted code. Then a alloc function could be called before >> outputting say a 4 byte int and could realloc and copy c...
2006 Feb 24
6
[JOB] at yakimaherald.com
...is a great environment with very nice people to work with. And the best part is you get to develop in Ruby and Rails, for everything! The paper is willing to accept applications from people who would need relocation and would help them with the move as well. You would continue work on my largets rails application to date http:// yakimaherald.com . And I would be working with you remotely to get you aquainted with the code base here and all that. This is a great job as the lead developer. You get to choose your own technologies and implement things as you see fit. You don''t...