search for: rd3

Displaying 12 results from an estimated 12 matches for "rd3".

Did you mean: rc3
2020 Mar 23
3
[InstCombine] Addrspacecast and GEP assumed commutative
...ram.u64 %rd1, [test_param_0]; > cvta.to.global.u64 %rd2, %rd1; > mov.u16 %rs1, 0; > st.global.u16 [%rd2+32], %rs1; > ret; > > But with the reordering, the backend instead emits this: > > ld.param.u64 %rd1, [test_param_0]; > add.s64 %rd2, %rd1, 32; > cvta.to.global.u64 %rd3, %rd2; > mov.u16 %rs1, 0; > st.global.u16 [%rd3], %rs1; > ret; > > i.e. an explicit add instruction instead of folding the addition in the addressing mode of the store. > > My question is twofold: > > 1. Is this reordering of GEP and ASC in the InstCombine pass the exp...
2010 Apr 07
0
question about fold function
...ROD7 1 46236 1 42 0.8769 0 NA NA NA NA NA NA 2 93340 1 42 0.1926 0 NA NA NA NA NA NA 3 93340 1 43 0.0000 0 NA NA NA NA NA NA NEWPROD8 RD1 RD2 RD3 RD4 RD5 RD6 RD7 RD8 1 NA 0 NA NA NA NA NA NA NA 2 NA 0 NA NA NA NA NA NA NA 3 NA 0 NA NA NA NA NA NA NA > d4<-fold(d6,time='survival',event='dead',cov=c(16:23,24:31),cov.names=c('newproduct','R&D')) Error in d...
2020 Mar 19
3
Icecast source client with web request/voting for next to play function
Hi all! Thank you for having me. I'm a person who encourage a small local community for musical involvement. It already kinda worked, we are doing plenty of fantastic things together. What I am now thinking of is 24/7 Internet radio based on Icecast that will air all of their non-professional music I gathered. Functions I'm looking for: - frequent scanning of music directory to update
2007 Apr 26
1
BindDN and password for Active Directory
...ard Windows login over an AD-domain)? (3) Can I use Ethereal for grep this information? If the answer is "YES", what to do, to force Windows execute an login situation (e.g. program -> execute as ...)? Much thanks in advance. Best regards Philippe Stellwag -- Siemens AG A&D MC RD3 Frauenauracher Str. 80 91056 Erlangen Tel.: +49 (9131) 98-3972 Siemens Aktiengesellschaft: Chairman of the Supervisory Board: Heinrich v. Pierer; Managing Board: Klaus Kleinfeld, Chairman, President and Chief Executive Officer; Johannes Feldmayer, Joe Kaeser, Rudi Lamprecht, Eduardo Montes, Juerg...
2020 Mar 19
0
Icecast source client with web request/voting for next to play function
...music play out system. Almost anything can play a random song from your collection; but; you have some conditions you want to place on the play out process. I recommend a program called Rivendell which is free and will do everything you want. http://static.paravelsystems.com/rivendell-install-rd3/rivendell-install-rhel7.html There is a FB group and a mailing list and a Wiki. The Rivendell system includes a stream creation program which will output mp3 or AAC+ or you can output the audio to a mixer and route that to a computer running darkice or whatever. You will need a computer runnin...
2011 Sep 07
2
Problems with this Harry Potter PC game in wine 1.2.2
Hi guys. I am using Lubuntu 11.04 and so far I've been able to run via wine a few games, among which: Star Wars KOTOR1, TOCA race driver 3, Neverwinter Nights 1... Now I tried installing and running Harry Poter 1 (Sorcerer Stone). Installs ok, but game crashes when starting with a critical error "General Protection Fault". Here is what the terminal shows: ... emy at
2004 Dec 14
2
ztcfg problems
Hello, I'm running Fedora Core 3 with udev, and asterisk/zaptel/libpri from cvs. I have followed the README.udev instructions replacing insmod with modprobe and rmmod with modprobe -r and adding the 60-zaptel.rules file, yet no matter what I do I still get this error on boot(or when I run service zaptel restart): [root@pbx ~]# /etc/init.d/zaptel restart Unloading zaptel hardware drivers:
2011 Dec 02
5
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...l > @@ -0,0 +1,17 @@ > +target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128" > +; RUN: opt< %s -bb-vectorize -bb-vectorize-req-chain-depth 3 -S | FileCheck %s -check-prefix=CHECK-RD3 > +; RUN: opt< %s -bb-vectorize -bb-vectorize-req-chain-depth 2 -S | FileCheck %s -check-prefix=CHECK-RD2 > + > +define double @test1(double %A1, double %A2, double %B1, double %B2) { > + %X1 = fsub double %A1, %B1 > + %X2 = fsub double %A2, %B2 > + %Y1 = fmul double %X1, %A1...
2011 Dec 14
0
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...-0,0 +1,17 @@ > > +target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128" > > +; RUN: opt< %s -bb-vectorize -bb-vectorize-req-chain-depth 3 -S | FileCheck %s -check-prefix=CHECK-RD3 > > +; RUN: opt< %s -bb-vectorize -bb-vectorize-req-chain-depth 2 -S | FileCheck %s -check-prefix=CHECK-RD2 > > + > > +define double @test1(double %A1, double %A2, double %B1, double %B2) { > > + %X1 = fsub double %A1, %B1 > > + %X2 = fsub double %A2, %B2 > >...
2011 Nov 23
0
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
On Mon, 2011-11-21 at 21:22 -0600, Hal Finkel wrote: > On Mon, 2011-11-21 at 11:55 -0600, Hal Finkel wrote: > > Tobias, > > > > I've attached an updated patch. It contains a few bug fixes and many > > (refactoring and coding-convention) changes inspired by your comments. > > > > I'm currently trying to fix the bug responsible for causing a compile
2011 Dec 02
0
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...-0,0 +1,17 @@ > > +target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128" > > +; RUN: opt< %s -bb-vectorize -bb-vectorize-req-chain-depth 3 -S | FileCheck %s -check-prefix=CHECK-RD3 > > +; RUN: opt< %s -bb-vectorize -bb-vectorize-req-chain-depth 2 -S | FileCheck %s -check-prefix=CHECK-RD2 > > + > > +define double @test1(double %A1, double %A2, double %B1, double %B2) { > > + %X1 = fsub double %A1, %B1 > > + %X2 = fsub double %A2, %B2 > >...
2011 Nov 22
5
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
On Mon, 2011-11-21 at 11:55 -0600, Hal Finkel wrote: > Tobias, > > I've attached an updated patch. It contains a few bug fixes and many > (refactoring and coding-convention) changes inspired by your comments. > > I'm currently trying to fix the bug responsible for causing a compile > failure when compiling >