search for: wilhelm

Displaying 20 results from an estimated 170 matches for "wilhelm".

2020 Apr 08
2
How to add new AVR targets?
Is there anything I can do about it? BTW: gcc is loosing the AVR backend, so I would assume, there will be a greater interest to this in llvm compared to the past. Thanks, Wilhelm Am 03.04.20 um 15:09 schrieb Wilhelm Meier via llvm-dev: > Should I create an issue in bugzilla for this? Just to be reminded ... > > Am 31.03.20 um 09:34 schrieb Wilhelm Meier via llvm-dev: >> Hi Dylan, >> >> looks ok now. >> >> One thing: >> >>...
2020 Mar 31
3
How to add new AVR targets?
...r0 clr r0 push r24 lds r24, v1 sts v2, r24 pop r24 pop r0 out 63, r0 pop r1 pop r0 reti There are unneccessary push/pops of r1 and r0 too, since the clr is useless ... GCC had the same problem but they made improvements. Thanks. Am 31.03.20 um 08:09 schrieb Wilhelm Meier via llvm-dev: > Hi Dylan, > > thank you. I'll be back with a test ... > > Wilhelm > > Am 31.03.20 um 08:06 schrieb Dylan McKay: >> Hey Wilhelm, >> >> That's a bug, the "interrupt" attribute is not being recognized by the >> bac...
2020 Mar 31
2
How to add new AVR targets?
Hey Wilhelm, That's a bug, the "interrupt" attribute is not being recognized by the backend. I have fixed it in https://github.com/llvm/llvm-project/commit/339b34266c1b54a9b5ff2f83cfb1da9cd8c9d90a Pull the latest LLVM and it should be fixed. On Tue, Mar 31, 2020 at 8:00 AM Wilhelm Meier <...
2020 Mar 30
2
How to add new AVR targets?
Hey Wilhelm, Could you post the LLVM IR generated from your C++ file? This can be achieved with 'clang -S -emit-llvm' Cheers On Sat, Mar 28, 2020 at 6:36 PM Wilhelm Meier <wilhelm.meier at hs-kl.de> wrote: > Answering partly to myself there was a extern "C" missing. > > Bu...
2003 Nov 12
2
bug in det using method="qr" (PR#1244) (PR#4450)
...the the decomposition is rank deficient. A better fix for (PR#1244) should be considered. I propose, using qr method with tol=0 as default, for det(). Even more preferrable, tol=0 can be made the default for qr(), forcing all applications to set a reasonable tol for their own. wbk -- Dipl.-Math. Wilhelm Bernhard Kloke Institut fuer Arbeitsphysiologie an der Universitaet Dortmund Ardeystrasse 67, D-44139 Dortmund, Tel. 0231-1084-257
2020 Mar 28
2
How to add new AVR targets?
...: 80 93 61 00 sts 0x0061, r24 ; 0x800061 <v2> 7c: 08 95 ret So, in C++ mode it is not recognized as ISR due to name mangling. Furthermore there are no register push/pos and no reti. Whats wrong? Thanks. Am 11.03.20 um 08:13 schrieb Dylan McKay: > Here you go Wilhelm, > > https://github.com/dylanmckay/clang-avr-libc-interrupt-example > > > > On Thu, Mar 5, 2020 at 4:05 AM Wilhelm Meier <wilhelm.meier at hs-kl.de > <mailto:wilhelm.meier at hs-kl.de>> wrote: > > Am 04.03.20 um 13:28 schrieb Dylan McKay: > >...
2020 Mar 04
2
How to add new AVR targets?
Thanks! The new are of xmega3 architecture, which is already included. So this should be simple. Where is the information about ISR-vector table, SRAM addresses and so on stored? -- Wilhelm Am 04.03.20 um 11:03 schrieb Dylan McKay: > Hey Wilhelm, > > This should be possible by editing the 'AVRDevices.td' [1]TableGen > definitions to add an entry for the newer chip types. You will need to > instruct LLVM which features are available on the chip (such as extende...
2020 Mar 04
2
How to add new AVR targets?
...check the startup-code and the placement / values of the ISR vector-table, but this should be ok also, when avr-ld is in use. How do I specify ISR-functions. The same way as in avr-gcc? Thanks! > > Hope that helps, > > Regards, > Dylan > > On Wed, Mar 4, 2020 at 11:10 PM Wilhelm Meier <wilhelm.meier at hs-kl.de > <mailto:wilhelm.meier at hs-kl.de>> wrote: > > Thanks! > > The new are of xmega3 architecture, which is already included. So this > should be simple. > > Where is the information about ISR-vector table, SRAM a...
2005 Feb 09
3
install issue | suse 9.2
...with Fortran libraries... none checking for Fortran name-mangling scheme... configure: error: cannot compile a simple Fortran program See `config.log' for more details anybody know why i am getting this error? g77 is installed correctly and working properly... -<0>- d. ryon wilhelm EVNINE-VAUGHAN ASSOCIATES, INC. 415.835.7855 [[alternative HTML version deleted]]
2020 Mar 04
2
How to add new AVR targets?
Am 04.03.20 um 13:28 schrieb Dylan McKay: > > * *The C/C++ function needs to be declared with either the calling > convention avr-interrupt or avr-non-blocking-interrupt.* Skipping > this step will cause regular ret instructions to be emitted for > return-from-subroutine, instead of the required reti for interrupt > handlers. ISRs also have stricter
2020 Mar 04
2
How to add new AVR targets?
I'm beginning to use the AVR backend. I ran into the problem, that newer (tiny1, mega0) µC as a tiny1614 are not supported. How do I add these to the AVR backend? Thanks!
2011 Jul 07
1
[LLVMdev] Error on using DataStructureAnalysis
...little pass. It tries to identify every call- / invoke-instruction recursively and calls computeCalleeCallerMapping for each. The sample program just creates a vector of integer and adds an element to it. Do you know what's wrong? Best, Andreas On Wed, Jul 6, 2011 at 2:00 AM, Andreas Wilhelm < andreas.wilhelm at gmx.com > wrote: Hi, though DSA isn't maintained in the current build, I need to use it for analyzing dependencies among functions. Therfore I load the EQTDDataStructures pass and retrieve the mapping from nodes int the callee to the ones in the parent DSGraph...
2010 Oct 07
6
Deleting observations - can't see the data after that
Hello all, I am loading a data frame, fitting a model, getting diagnostic plots and they are flagging a couple of observations as problematic. Fair enough, and I want re-fit without them. After I delete an offending row (identified by one of the diagnostic plots), something like data = data[-3,]; then R will no longer print the contents of the data frame; it tells me it is a data frame
2010 Feb 25
2
Ordering categories on a boxplot - a serious trap??
...One disappointment is that the above factor() call apparently needs to be repeated for any subset of v - I'm still trying to get my mind around that one. Can anyone confirm this? It strikes me as a trap that should be addressed so that an error results rather than a garbage graph. Bill --- Wilhelm K. Schwab, Ph.D.
2011 Mar 11
3
robust estimation
Hi, I have been looking through all packages but I cannot find a routine for LAD-regression (L1-norm-regression). Is there none? Willi
2007 Jul 16
2
Field initialization order bug?
...;- 1 a[["field2"]] <- matrix(c(2,1), 1) Error in a[["field2"]] <- matrix(c(2, 1), 1) : more elements supplied than there are to replace Yet, this works as expected: a <- NULL a[["field2"]] <- matrix(c(2,1), 1) a[["field1"]] <- 1 Daniel Wilhelm
2011 Apr 20
3
[LLVMdev] Coarse-grained parallelism
Am 19.04.2011 um 16:44 schrieb John Criswell: > On 4/19/11 5:57 AM, Andreas Wilhelm wrote: >> >> Hello, >> >> I found some code within the pool allocation project to identify parallelizable function calls. >> Unfortunately the functionality isn't part of the current release of poolalloc (in release 14 it was). > > Can you tell me in what...
2009 Jan 19
2
Shared Mailboxes (symlink) and kmail: known issues?
...mmediately. But if I delete(!) a mail from the shared-folder, the list of the other kmails remains untouch. Refreshing does nothing. I have to close kmail and restart. Is this related to some sort of wrong config of the shared mailboxes or is this a (known) dovecot <-> kmail problem? -- Wilhelm
2010 Oct 13
7
[OT] (slightly) - OpenOffice Calc and text files
Hello all, I had a very strange looking problem that turned out to be due to unexpected (by me at least) format changes to one of my data files. We have a small lab study in which each run is represented by a row in a tab-delimited file; each row identifies a repetition of the experiment and associates it with some subjective measurements and times from our notes that get used to index another
2014 Apr 04
0
Zone flags of added reverse zone
...gt; samba-owner at lists.samba.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of samba digest..." > Today's Topics: > > 1. Re: changing server role = standalone server to 'member > server' (Carl Wilhelm Soderstrom) > 2. Re: Samba documentation team (Stuart Naylor) > 3. Re: changing server role = standalone server to 'member > server' (Carl Wilhelm Soderstrom) > 4. Re: changing server role = standalone server to 'member > server' (Rowland Penny) &...