search for: lcc

Displaying 20 results from an estimated 97 matches for "lcc".

Did you mean: cc
2013 Feb 13
1
[lattice] display a projected map on a layerplot
summary: I can display a lon-lat map on a lattice::layerplot, and I can display a Lambert conformal conic (LCC) map on a spam::image, but I can't display an LCC map on a lattice::layerplot. Example follows. What am I doing wrong? details: I've been using `lattice` (via `rasterVis`) successfully to display global atmospheric data, which works well enough (though I am definitely intrigued by ggplot/...
2007 Mar 19
1
App can't load DLLs without sudo
I'm trying to get the Syncrosoft License Control Center to run under wine. for some reason it can only load MFC42.DLL and MSVCRT.DLL if I put 'sudo' on the command line: [paul@localhost LCC]$ wine LCC.exe err:module:import_dll Library MFC42.DLL (which is needed by L"C:\\Program Files\\Syncrosoft\\LCC\\LCC.exe") not found err:module:import_dll Library MSVCRT.dll (which is needed by L"C:\\Program Files\\Syncrosoft\\LCC\\LCC.exe") not found err:module:import_dll Libra...
2011 Jul 24
1
GLM different results with the same factors
I've read something about this problem, but I don't know how can i avoid this problem. Why the order of the factors give different results? I suppose it's because the order of the factors, i've just changed "lcc" from the first position to the last in the model, and the significance change completely > modo<-glm(prevalencia~*lcc*+edadysexo/lcc+edadysexo/mes,binomial) > anova(modo,test="Chisq") Df Deviance Resid. Df Resid. Dev P(>|Chi|) NULL...
2008 Dec 15
2
[LLVMdev] A faster instruction selector?
...e fast) The split in execution time for JIT compilation being approximately: (My) IR code generation: 1 (llvm) Register allocation: 1 (llvm) Instruction selection: 12 The ladyvm JVM paper noted the same problem: http://vmkit.llvm.org/ladyvm.html So I did a quick experiment with llvm and lcc (http://www.cs.princeton.edu/software/lcc), in order to see how much faster instruction selection could be. lcc uses a BURG-type (called lburg) instruction-selector. The following is for x86/linux (ubuntu) I am interested in JIT performance so I have only counted user+sys time. Compiling a smal...
2003 Feb 17
2
LccWin32 and OGG
Hello, I'm new to OGG and I must say than it's impressive. I plan to use it in my project (BASIC programming langage) but I use LccWin32 as main C compiler (free and very powerful) and OGG has some difficulties to compile. I would like to know if it was already reported. If not, here it is: - Inline ASM functions for vorbis_itoa() isn't ok for LCC (not the same syntax than VC). I switched back to 'slow' functions...
2012 Jan 11
2
problems with glht for ancova
I've run an ancova, edadysexo is a factor with 3 levels,and log(lcc) is the covariate (continous variable) I get this results > ancova<-aov(log(peso)~edadysexo*log(lcc)) > summary(ancova) Df Sum Sq Mean Sq F value Pr(>F) edadysexo 2 31.859 15.9294 803.9843 <2e-16 *** log(lcc) 1 11.389 11.3887 574.8081...
2011 Oct 27
0
[LLVMdev] llc with long-longs and hex floating point
In the following sequence: $llc -march=c -o diag01_c.c diag01.ll $vpolcc.ss -S -k diag01_c.c <<== **FAILS** $vpolcc.ss -o diag01 diag01_c.s I am using llc (from llvm) to convert an .ll file into a .c file. I am then running the .c file through vpolcc.ss (from zephyr) to further process it for mips architecture. The vpolcc.ss script fails at lcc (not to be co...
2004 Jul 01
0
.Net & Mono language news: C, C++, C#, Java, Python & Perl
....southern-storm.com.au/pnet_faq.html#q1_7 FAQ "1.7. What is pnetC? Since version 0.4.4 of DotGNU Portable.NET, the cscc compiler has had support for compiling C programs. The companion libc implementation for the C compiler is called 'pnetC'. The code is based on glibc." === C lcc -- lcc is a retargetable compiler for Standard C. lcc.NET, an lcc 4.2 backend for MSIL According to DotGNU "[MSIL] is exactly the same as CIL, but some media reports have called it 'MSIL' for some reason." http://www.cs.princeton.edu/software/lcc/ 1. "LCC 4.2 has been recen...
2013 Apr 26
1
[newbie] how to find and combine geographic maps with particular features?
SUMMARY: Specific problem: I'm regridding biomass-burning emissions from a global/unprojected inventory to a regional projection (LCC over North America). I need to have boundaries for Canada, Mexico, and US (including US states), but also Caribbean and Atlantic nations (notably the Bahamas). I would also like to add Canadian provinces and Mexican states. How to put these together? General problem: are there references regarding...
2007 Apr 04
5
how to image.plot a XY grid file into a lat-lon map
Hi All, I have a netcdf gridded file with LCC projection. I can easily use image.plot to visualize it. However, as the axises are in X,Y, not Lat and Lon, I could not add state or country maps onto it (or lat lon information). I do have a grid2d file that describes the lat and lon for each (X,Y) grid, but the lat and lon are not regularly spac...
2011 Jan 16
2
[LLVMdev] About test suits Cont1
*[qali at qali llvm-2.8-rev]$ find . -exec grep -n "LLVMCC_EMITIR_FLAG" ./ {} \;* ./projects/test-suite/Makefile.tests:47: -$(LCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -S $< -o $@ $(LLVMCC_EMITIR_FLAG) ./projects/test-suite/Makefile.tests:51: -$(LCXX) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -S $< -o $@ $(LLVMCC_EMITIR_FLAG) ./projects/test-suite/Makefile.tests:55: -$(LCXX) $(CPPFLAGS) $(CX...
2011 Jan 17
0
[LLVMdev] About test suits Cont1
On Jan 15, 2011, at 8:06 PM, Qingan Li wrote: > [qali at qali llvm-2.8-rev]$ find . -exec grep -n "LLVMCC_EMITIR_FLAG" ./ {} \; > ./projects/test-suite/Makefile.tests:47: -$(LCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -S $< -o $@ $(LLVMCC_EMITIR_FLAG) > ./projects/test-suite/Makefile.tests:51: -$(LCXX) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -S $< -o $@ $(LLVMCC_EMITIR_FLAG) > ./projects/test-suite/Makefile.tests:55: -$(LCXX) $(CPPF...
2006 Nov 01
4
[LLVMdev] LLVM / C--
...sign issues, the main concern will be : What is our philosophy ? "In order" or "out of order" :The programmers do/ do not learn to optimise their algorithms... Who does what ? :) The secular war ... x86 vs PPC. Note : For me it's PPC ... :) And why doesn't LLVM use lcc instead of gcc ? Best Regards, WIll
2009 Feb 23
2
[LLVMdev] Creating an LLVM backend for a very small stack machine
....pdf Hi Mark, I've read your papers, and in fact they were part of the data that convinced me that I really could go with a stack machine for the work I'm doing. I'm planning on implementing register allocation based partially on your paper. Actually, I was wondering if any of your lcc implementation work was publicly available. -- Wesley J. Landaker <wjl at icecavern.net> <xmpp:wjl at icecavern.net> OpenPGP FP: 4135 2A3B 4726 ACC5 9094 0097 F0A9 8A4C 4CD6 E3D2 -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type:...
2009 Mar 30
0
[LLVMdev] I really cherish this chance for google summer code 2009, If I can do something for LLVM?
...* * english name:Gawain* * * *Address:Grid Computing group in FIT Building, Tsinghua University, Beijing, China,100084* * * *Phone number(s): +86(010)51537383 ,mobile phone :+8613811700806* *E-mail address :gawain102000 at gmail.com* I have spent a long time studying the implementation of LCC code generator!! It's optimization includes in global and local optimization,using the dynamic adjustment for ever step from the leaves to the root to acquire the best performance. I believe still there exists better methods to reach that!! ** *I ever have studied compilers skill for serveral y...
2008 Dec 17
1
[LLVMdev] A faster instruction selector?[MESSAGE NOT SCANNED]
...fast selector does speed code-generation by almost double, when using llc, but the reduction in final code speed is obviously a downside. Since my toolkit generates an interpreter, I am able to just compile hotspots, so final speed of compiled code is quite important. I did some runs of llc and lcc with valgrind, to get some less noisy timings and the relative times are: lcc (lex, parse, etc ) 4 llc (normal settings) 18 llc (fast and local reg alloc) 11 Obviously the ratios will change depending on the input, but as you can see, there is still enormous potential for improvement. >...
2009 Feb 24
0
[LLVMdev] Creating an LLVM backend for a very small stack machine
Wesley, Regarding access to the source code; I would send you the code, but I might be stepping on a few toes. The person to speak to is Chris Bailey at the University of York (in the UK). However it is written for the lcc tree-based IR, rather than the SSA-based IR of LLVM, so I don't think it will be that much use. A lot of the analysis it does is to find information that is explicit in the SSA form anyway, such as generating a flow graph. The SSA form already provides a head start for chosing stack allocat...
2010 Mar 12
2
how quotas works with postfix and dovecot
...s quota limit timeleft /var/mail 16911 10240 20480 NOT STARTED 49 1000 1500 dovecot or postfix (i don't know who really should sendme the messsage) never sendme an quota warning someone knows what happen ? -- -------------------------------------------------------- LCC Wilberth de Jes?s P?rez Segura CCSA- Administraci?n de Servicios y Seguridad de las TI Correo:wilberth.perez at uady.mx Universidad Aut?noma de Yucat?n Secretar?a General Coordinaci?n Administrativa de Tecnolog?as de Informaci?n RIUADY C-59 x Av. Itz?es (999)923-74-28 Ext. 1117 M?rida, Yucat?n, M?x...
2009 Dec 14
3
[LLVMdev] clang and static functions
Hi, Sorry for not being specific. I just wanted to know if there is any way at all to force clang to generate intermediate code for static functions when they are not being called anywhere inside the current module. Other compilers seem to generate intermediate code (lcc, for instance). Thanks for your reply..Olivier. Sincerely Arvind On Mon, Dec 14, 2009 at 1:10 PM, Olivier Meurant <meurant.olivier at gmail.com> wrote: > Hi Arvind, > > you need to use it effectively : > > > static int add(int a, int b) { >         return a+b; > } &...
2008 Sep 12
3
[LLVMdev] CPP API User-level Question: Returning multiple values
Greetings, I'm working on getting our compiler's interface to LLVM to mimic the way the LLVM-GCC inserts instructions to generate AMD64 ABI compliant code. I'm trying to create ret i64 %mrv, double %double_mrv37 which is basically what LLVM-GCC puts out. However if I use lcc -march=cpp to get the API code I need it has the following line: ReturnInst::Create(int64_t93, label_return); with no reference to the double. I also can't find anything in the doxygen docs for a version of ReturnInst::Create( ) that takes two values for returning, nor could I find an...