search for: oyvinds

Displaying 20 results from an estimated 34 matches for "oyvinds".

Did you mean: oyvind
2011 Jun 30
0
[LLVMdev] GCC 4.1 ABI and clang
On Thu, Jun 30, 2011 at 4:00 PM, Øyvind Harboe <oyvind.harboe at zylin.com> wrote: > On Thu, Jun 30, 2011 at 3:43 PM, Duncan Sands <baldrick at free.fr> wrote: >> On 30/06/11 15:13, Øyvind Harboe wrote: >>>> Sorry, I meant from which version of clang? I'm using Ubuntu 10 and >>>> I was wondering if clang/llvm 2.8 would do it. >>>
2011 Jun 30
2
[LLVMdev] GCC 4.1 ABI and clang
On Thu, Jun 30, 2011 at 3:43 PM, Duncan Sands <baldrick at free.fr> wrote: > On 30/06/11 15:13, Øyvind Harboe wrote: >>> Sorry, I meant from which version of clang? I'm using Ubuntu 10 and >>> I was wondering if clang/llvm 2.8 would do it. >> >> Perhaps I better try the latest, got an error when I tried 2.8: > > C++ support in clang 2.8 was poor.
2011 Jul 05
0
[LLVMdev] pthread problems with gcc 4.1 includes?
I'm trying to build an app with clang against libraries that are using GCC 4.1 ABI. I'm getting an error "weakref declaration must have internal linkage" Now I'm stumped though, perhaps it is an incompatibility between clang trunk and gcc 4.1 include files? - I've built clang from trunk - fixed include paths to point to gcc 4.1 include paths When I modify clang to use
2011 Jan 14
4
matrix multiplication speed R
Hi, A quick bench-mark of an R matrix muliplication 500by500 X 500by10000, all random variates, with matlab reveals a huge difference in speed (5 times at least). Is there anything that can be done in R to speed up the multiplication? Kind regards, Oyvind -- View this message in context: http://r.789695.n4.nabble.com/matrix-multiplication-speed-R-tp3217257p3217257.html Sent from the R devel
2011 Jun 21
2
Error using RcppGSL
Hi, I get an error using RcppGSL: fatal error: gsl/gsl_vector.h:No such file or directory. What is the best way to install these files as they seem to be missing? Thanks, Oyvind -- View this message in context: http://r.789695.n4.nabble.com/Error-using-RcppGSL-tp3613535p3613535.html Sent from the R devel mailing list archive at Nabble.com.
2008 Aug 20
3
[Bug 17220] New: Swfdec does not support Clipboard Hijack Attacks
...Platform: x86 (IA32) URL: http://it.slashdot.org/it/08/08/20/0029220.shtml OS/Version: Linux (All) Status: NEW Severity: trivial Priority: lowest Component: plugin AssignedTo: swfdec at lists.freedesktop.org ReportedBy: oyvinds at everdot.org QAContact: swfdec at lists.freedesktop.org The Adove Flash URL clipboard-hijacking insertion of hostile URLs "feature" (demo at http://raffon.net/research/flash/cb/test.html) does not work with swfdec-mozilla. -- Configure bugmail: http://bugs.freedesktop.org/...
2006 Sep 11
1
estimating state space with exogenous input in measurement eq.
Anyone know how to esimate parameters in the system: x[k]=Ax[k-1]+ B + Gv[k-1] y[k]=x[k]+Du[k]+Hw[k] a system with exogenous u[k] in the measurement eq., v,w are iid, both eq. are gaussian. Thanks, Oyvind --------------------------------- [[alternative HTML version deleted]]
2017 Jul 13
2
Replicated volume, one slow brick
I have been trying to figure out how glusterfs-fuse client will handle it when 1 of 3 bricks in a 3-way replica is slower than the others. It looks like a glusterfs-fuse client will send requests to all 3 bricks when accessing a file. But what happens when one of the bricks is not responding in time? We saw an issue when we added external load to the raid volume where the brick was located. The
2011 Jul 04
0
[LLVMdev] Deleting unused C++ code
On Mon, Jul 4, 2011 at 1:42 AM, Øyvind Harboe <oyvind.harboe at zylin.com> wrote: > On Sun, Jul 3, 2011 at 10:34 PM, Reid Kleckner <reid.kleckner at gmail.com> wrote: >> An easier way would be to use a coverage tool like gcov to see what's >> actually *used* when the app is run normally.  Then you can ask the >> question, what percentage of all lines of code
2011 Jun 24
3
Error using betareg
Dear all, I get an error using betrag on this data set :http://dl.dropbox.com/u/1866110/dump.csv. I run it like this regression f2.1=betareg(Y~X1+X2,data=dump) summary(f2.1) I get : Call: betareg(formula = Y ~ X1 + X2, data = dump) Standardized weighted residuals 2: Error in quantile.default(x$residuals) : missing values and NaN's not allowed if 'na.rm' is FALSE In addition:
2011 Jul 04
2
[LLVMdev] Deleting unused C++ code
On Sun, Jul 3, 2011 at 10:34 PM, Reid Kleckner <reid.kleckner at gmail.com> wrote: > An easier way would be to use a coverage tool like gcov to see what's > actually *used* when the app is run normally.  Then you can ask the > question, what percentage of all lines of code are dead? We need something that can do this using static analysis... Otherwise we can just use Eclipse
2010 Nov 19
0
[LLVMdev] Fw: Writing a backend for the ZPU
Whoops! Forgot to CC: the list! ----- Forwarded Message ----- > From:Samuel Crow <samuraileumas at yahoo.com> > To:Øyvind Harboe <oyvind.harboe at zylin.com> > Cc: > Sent:Thursday, November 18, 2010 7:22:39 PM > Subject:Re: [LLVMdev] Writing a backend for the ZPU > > > Hello, Some > thoughts/problems: - In GCC I created > registers which were
2011 Jun 30
0
[LLVMdev] GCC 4.1 ABI and clang
On Thu, Jun 30, 2011 at 2:03 PM, Duncan Sands <baldrick at free.fr> wrote: > Hi Øyvind, > >> I'm trying to find some written evidence to present to the powers >> that be that clang/llvm is ABI compatible with GCC 4.1 linux >> 64 bit. > > both clang and gcc-4.1 are supposed to conform to the platform ABI (if they > don't then that is a bug), and thus
2011 Jul 03
0
[LLVMdev] Deleting unused C++ code
An easier way would be to use a coverage tool like gcov to see what's actually *used* when the app is run normally. Then you can ask the question, what percentage of all lines of code are dead? A static analysis will not be able to see through things like virtual method calls. Reid On Sun, Jul 3, 2011 at 3:07 PM, Øyvind Harboe <oyvind.harboe at zylin.com> wrote: > Can llvm
2011 Jun 30
4
[LLVMdev] GCC 4.1 ABI and clang
Hi Øyvind, > I'm trying to find some written evidence to present to the powers > that be that clang/llvm is ABI compatible with GCC 4.1 linux > 64 bit. both clang and gcc-4.1 are supposed to conform to the platform ABI (if they don't then that is a bug), and thus be ABI compatible. Ciao, Duncan.
2011 Jul 03
3
[LLVMdev] Deleting unused C++ code
Can llvm generate warnings for unused C++ code using global analysis? If I could use llvm to figure out what code I can delete in a 20 year old app with millions of lines of code, this alone would defend spending time on making the app build with llvm, even if we don't actually run the code generated... -- Øyvind Harboe - Can Zylin Consulting help on your project? US toll free
2011 Jul 04
2
[LLVMdev] Deleting unused C++ code
I think what you're looking for is something like Doxygen or CodeViz that can generate (imperfect) call graphs for you. It sounds like you just need a rough list of functions that might be unused to start with. -Scott On Sun, Jul 3, 2011 at 11:04 PM, Daniel Berlin <dberlin at dberlin.org> wrote: > On Mon, Jul 4, 2011 at 1:42 AM, Øyvind Harboe <oyvind.harboe at zylin.com>
2007 Jan 09
0
FOSDEM Request For Proposal
Hi, For those attending FOSDEM either as volunteer or as a participant, we are looking for interesting presentations about CentOS. If you're interested for one or more topics, please contact me. The deadline for the proposal is Tuesday 23 january 2007. In our developers room (that we share with Fedora) we have about 6 slots of 50mins available that we can divide in 12 slots of 20mins if
2010 Nov 18
0
[LLVMdev] Writing a backend for the ZPU
Hi, I'm trying to have another stab at writing an LLVM ZPU backend. Any pointers or encouragement would be greatly appreciated. So far I've been wandering around the LLVM trying to read up and I've hacked together something that builds just to experiment and get a feel for the build system. I was able to write a backend for GCC which has been in use for years now, but I can't
2011 Jun 30
0
[LLVMdev] GCC 4.1 ABI and clang
Hi, I'm trying to find some written evidence to present to the powers that be that clang/llvm is ABI compatible with GCC 4.1 linux 64 bit. This would allow me to work with clang/llvm at my day-job and I would like nothing better! This is a pretty big app(millions of lines of code), so it would be interesting to see how llvm/clang behaves. Better warnings/errors and cutting down on build