search for: vasileios

Displaying 20 results from an estimated 37 matches for "vasileios".

2016 Feb 02
4
What is the correct way to cross-compile LLVM and run the (in-tree) tests on a target board?
...ere any way to cross-compile LLVM and run check-all, or just the llvm-lit tests, (after moving the build directory) on the target machine? As far as I can tell from the CMakefiles, there's support only for cross-compiling LLVM and not for running the tests with the resulting compiler. Thanks, Vasileios
2015 Feb 04
2
[LLVMdev] Handling of KILL instructions.
...ght thing to do with the KILL instruction given the fact that the machine function pass calls TRI.invalidateLiveness()? Can we simply delete any KILL instruction we want? Or, can we ignore them as long as we don't request any register liveness analysis in subsequent machine function passes? -- Vasileios Kalintiris
2015 Sep 27
2
[libunwind][Mips] Problem using gas to assemble UnwindRegistersSave.S
On 09/27/2015 06:41 PM, Vasileios Kalintiris wrote: > Hi Richard, > > Clang doesn't have support for MIPS I. The trap-on-condition instructions were added in MIPS II and they should work fine. This is why it works with ".set mips32r2". > > Which version of the ISA did you specify when you used the integ...
2015 Nov 02
2
[RFC] Strategies for Bootstrapping Compiler-RT builtins
> On Nov 2, 2015, at 11:41 AM, Vasileios Kalintiris <Vasileios.Kalintiris at imgtec.com> wrote: > >> The problem comes when bootstrapping a cross-compiler toolchain. In order to >> have a cross-compiling toolchain that can build a “hello world” application you >> need four basic components: >> >> (...
2016 Feb 16
2
[Firefox] How to compile firefox with Clang for Linux
Hi All, I am trying to build firefox with clang in Ubuntu 14.04 64bit. There is always configure failed errors problem. I follow compiling firefox with clang on linux <https://developer.mozilla.org/en-US/docs/Compiling_Firefox_With_Clang_On_Linux>. I add "export CC=clang export CXX=clang++" to mozconfig file. I wonder whether you guys have built firefox with clang in Linux. Could
2015 Sep 27
2
[libunwind][Mips] Problem using gas to assemble UnwindRegistersSave.S
The latest TOT of libunwind fails for me when I build UnwindRegistersSave.S for the Mips. My copy of clang uses a 2.25 binutils Mips assembler. This is the message I get: "/home/rich/ellcc/bin/mips-elf-as" -o /tmp/UnwindRegistersSave-a2c974.o -EL /tmp/UnwindRegistersSave-545450.s src/UnwindRegistersSave.S: Assembler messages: src/UnwindRegistersSave.S:99: Error: opcode not
2015 Aug 12
4
Test Email - Apologies for the noise
> From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] > On Behalf Of Kuperstein, Michael M via llvm-dev > Subject: Re: [llvm-dev] Test Email - Apologies for the noise > I'm seeing the same issue here, also with Outlook. > Had to CC the list manually for this email) Same problem here - good to know it's not just me. For reference, I'm using Outlook version
2014 Jun 26
2
[LLVMdev] eraseFromParent and stack dump
...Module&) + 39 12 opt 0x00000000008719e8 main + 5698 13 libc.so.6 0x00007f8934318de5 __libc_start_main + 245 14 opt 0x0000000000863779 Stack dump: I replace the uses of the old instruction, before deleting it. I am not sure why this is happening. any suggestions? Vasileios
2014 May 07
2
[LLVMdev] loop identification
Hello everybody, I have developed a pass to identify the loops in a bitcode file. For files less than 1500 lines of code I am able to identify all the loops, however if the file is bigger I cannot find any of the loops. Is there any limit or something about the LoopInfo? Regards, Vasileios
2015 Oct 22
2
Moderators needed for LLVM Developers' Meeting
...a managed language: what we've learned, Sanjoy Das - Azul Systems, Philip Reames - Azul Systems LLVM back end for HHVM/PHP, Brett Simmers - Facebook, Inc., Maksim Panchenko - Facebook, Inc Session #9: October 30 2:00-3:30: Salon I & II Throttling Automatic Vectorization: When Less Is More, Vasileios Porpodas - University of Cambridge LoopVersioning LICM, Ashutosh Nema - AMD Session #10: October 30 4:30-6:00 Salon III & IV Compiling large, real-world codebases with clang on Windows, Hans Wennborg - Google Inc., Nico Weber - Google Inc. Advances in Loop Analysis Frameworks and Optimization...
2000 May 10
3
Samba simple question
ok ok I have set up a public directory under /home/public on a linux machine configured as a Samba Server. The configuration of the /etc/smb.conf file is like this: [public] comment = Public directory path = /home/public browseable = Yes writeable = Yes I can see the directory from a w98 client and can open/run the files. But I do
2016 Sep 05
3
Buildbot General Failure - Production Stop?
On 5 September 2016 at 23:04, Krzysztof Parzyszek <kparzysz at codeaurora.org> wrote: > Let's first see how bad it is once bots are fixed to build the latest > revision. It's only been a few days and that includes a weekend. Of course. I'll wait until all our bots return from the first round to know the size of the damage. I just wanted to warn all other buildbot owners
2015 Oct 10
2
Python version for scripts in LLVM?
On 9 October 2015 at 23:44, Vasileios Kalintiris via llvm-dev <llvm-dev at lists.llvm.org> wrote: > Both cmake & configure test for Python >= 2.7. Given the amount of python > code in the various scripts inside the LLVM projects, I wouldn't expect > Python 3.x to work for everything without changes. I use Arc...
2008 Nov 04
1
AIC in time series
...uot;) fit = garchFit(formula=~ar(1)+~garch(1,1), data=garat) Now I want to count AIC for this model. How can I do it? I cannot do it with the AIC function of stats package, because R tells me: "Error in UseMethod("logLik") : no applicable method for "logLik" Best regards, Vasileios Ismyrlis
2000 Aug 17
1
smbprint strange problems
...manually print a file from the linux to the windoze by typing smbclient \\\\blahblah\\epson -P and issuing the command print <filename> and everything is ok. What am I missing to do this automaticaly? I mean smbclient isnt that pretty much what the smbprint script does?? Can anyone help? Vasileios ________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
2015 Oct 09
3
Python version for scripts in LLVM?
Hi, Is there a rule or guideline about what Python versions must be supported for scripts in the LLVM tree? I am working on some patches to some scripts in LLVM to use features in Python 2.7, so that these scripts can run under Python 2.7 and Python 3.x Is that OK? For example, here is a patch to use print as a function, so that the scripts can work in Python 2.7 and Python 3.x -- Craig
2014 Jul 10
14
[Bug 81136] New: [NV92] Regression in Linux 3.15: GPU lockup after suspend
https://bugs.freedesktop.org/show_bug.cgi?id=81136 Priority: medium Bug ID: 81136 Assignee: nouveau at lists.freedesktop.org Summary: [NV92] Regression in Linux 3.15: GPU lockup after suspend QA Contact: xorg-team at lists.x.org Severity: normal Classification: Unclassified OS: Linux (All)
2004 May 27
3
Different results
...I get in R ( with summary(aov(y~x)) ) MSres=350.7 df=22 while in SPSS I get MSres=221.9 df=21 Can enyone explain me what is the problem or what am I doing wrong? Thanks for your interest a priori, Vasileios. --------------------------------- ÁðïêôÞóôå ôçí äùñåÜí óáò@yahoo.gr [[alternative HTML version deleted]]
2015 Aug 12
4
Test Email - Apologies for the noise
Apologies for the noise. I'm investigating a weird mail client issue that's been occurring for me since the mailing list switch and I've been unable to reproduce it outside of the list. When I click reply-all, Outlook removes all the LLVM mailing lists from the recipients list leaving just the individual recipients. Outlook Web Access is working perfectly fine. This thread is just to
2020 Oct 02
2
PSLP: Padded SLP Automatic Vectorization
On 9/29/2020 14:37, David Chisnall via llvm-dev wrote: > On 28/09/2020 15:45, Matt P. Dziubinski via llvm-dev wrote: >> Hey, I noticed this talk from the EuroLLVM 2015 >> (https://llvm.org/devmtg/2015-04/slides/pslp_slides_EUROLLVM2015.pdf) >> on the PSLP vectorization algorithm (CGO 2015 paper: >> http://vporpo.me/papers/pslp_cgo2015.pdf). >> >> Is anyone