search for: input3

Displaying 20 results from an estimated 150 matches for "input3".

Did you mean: inputs
2010 May 29
3
[LLVMdev] Vectorized LLVM IR
...100529/b44926fc/attachment.png> -------------- next part -------------- For scalar code in C++ code is : virtual void compute (int count, FAUSTFLOAT** input, FAUSTFLOAT** output) { FAUSTFLOAT* input0 = input[0]; FAUSTFLOAT* input1 = input[1]; FAUSTFLOAT* input2 = input[2]; FAUSTFLOAT* input3 = input[3]; FAUSTFLOAT* output0 = output[0]; for (int i=0; i<count; i++) { output0[i] = (FAUSTFLOAT)(((float)input2[i] + (float)input3[i]) * ((float)input0[i] + (float)input1[i])); } } The "vectorized" C++ code is : virtual void compute (int fullcount, FAUSTFLOAT** input,...
2010 May 29
0
[LLVMdev] Vectorized LLVM IR
...scalar code in C++ code is : > > virtual void compute (int count, FAUSTFLOAT** input, FAUSTFLOAT** output) { >                FAUSTFLOAT* input0 = input[0]; >                FAUSTFLOAT* input1 = input[1]; >                FAUSTFLOAT* input2 = input[2]; >                FAUSTFLOAT* input3 = input[3]; >                FAUSTFLOAT* output0 = output[0]; >                for (int i=0; i<count; i++) { >                        output0[i] = (FAUSTFLOAT)(((float)input2[i] + (float)input3[i]) * ((float)input0[i] + (float)input1[i])); >                } >        } > > T...
2011 Apr 28
1
Variance
I'm trying to find the variance of various outputs in a matrix: for(l in 2:vl){ for(o in 1:(l-1)){ # Make sure the inputs are for the matrix "m" input3=rownames(v)[o] input4=colnames(v)[l] r=t[(t$Rec1==input3 & t$Rec2==input4),output] if(length(r)==0){ r=t[(t$Rec1==input4 & t$Rec2==input3),output] } v[l,o]=var(q,na.rm=TRUE) v[o,l]=var(q,na.rm=TRUE) v[l,l]=var(q,na.rm=TRUE) } } Each output will yield...
2010 May 29
1
[LLVMdev] Vectorized LLVM IR
...is : >> >> virtual void compute (int count, FAUSTFLOAT** input, FAUSTFLOAT** output) { >>                FAUSTFLOAT* input0 = input[0]; >>                FAUSTFLOAT* input1 = input[1]; >>                FAUSTFLOAT* input2 = input[2]; >>                FAUSTFLOAT* input3 = input[3]; >>                FAUSTFLOAT* output0 = output[0]; >>                for (int i=0; i<count; i++) { >>                        output0[i] = (FAUSTFLOAT)(((float)input2[i] + (float)input3[i]) * ((float)input0[i] + (float)input1[i])); >>                } >>...
2010 May 28
0
[LLVMdev] Vectorized LLVM IR
Hi Stéphane, The SSE support is the LLVM backend is fine. What is the code that's generated? Do you have some short examples of where LLVM doesn't do as well as the equivalent scalar code? -bw On May 28, 2010, at 12:13 PM, Stéphane Letz wrote: > Hi, > > We are experimenting directly generating vectorized LLVM IR (using <8 x float> kind of types), then compiling the code
2010 May 28
3
[LLVMdev] Vectorized LLVM IR
Hi, We are experimenting directly generating vectorized LLVM IR (using <8 x float> kind of types), then compiling the code to SSE on a 64 bits machine. Right now the equivalent code in scalar mode sill outperform the SSE one. What is the quality of the SSE support in X86 LLVL backend? Are they any specific things to be aware of to improve the speed? Thanks Stéphane Letz
2009 Mar 23
4
newton method
Hi R-users, Does R has a topic on newton's method? Thank you for the info.
2010 Feb 10
4
Readjusting the OUTPUT csv file
Dear R helpers   I have some variables say ABC, DEF, PQR, LMN and XYZ. I am choosing any three varaibles at random at a time for my analysis and name these files as input1.csv, input2.csv and input3.csv. So if I choose variables say ABC, DEF and PQR, I am passing the specifications of these variables to input1.csv, input2.csv and input3.csv respectively.   This means in another case even if I choose say LMN, DEF and XYZ in this order, then my input1.csv will have details of LMN, input2.csv wi...
2009 Jan 02
2
powerware 5110 and openbsd
Hello all! I've been trying to get my UPS working with my OpenBSD stable box and I haven't had any luck yet. dmesg shows that I have something from Powerware usb0 at uhci0: USB revision 1.0 uhub0 at usb0 "Intel UHCI root hub" rev 1.00/1.00 addr 1 biomask f5fd netmask fffd ttymask ffff ugen0 at uhub0 port 1 "Powerware Powerware UPS" rev 0.20/0.50 addr 2 nut version
2007 Feb 25
3
Macros in R
Dear members, I have started to work with R recently and there is one thing which I could not solve so far. I don't know how to define macros in R. The problem at hand is the following: I want R to go through a list of 1:54 and create the matrices input1, input2, input3 up to input54. I have tried the following: for ( i in 1:54) { input[i] = matrix(nrow = 1, ncol = 107) input[i][1,]=datset$variable } However, R never creates the required matrices. I have also tried to type input'i' and input$i, none of which worked. I would be very g...
2008 Jan 25
2
How can I join two lists?
How can I join two lists? I have q1 and q2 and I want to merge them. I have tried to use the comand merge, but not work. Any solutions? Thanks! > q1 $Input1 7.84615384615385 0.5 $Input2 8.92307692307692 -3.2 $Input3 4.53846153846154 -5 > q2 $Input1 7.84615384615385 2 $Input2 8.92307692307692 -0.3125 $Input3 4.53846153846154 -0.2
2012 Aug 27
0
Optimizing a model toward desired outputs once trained?
...om/questions/34415/optimization-of-models-ann-radial-basis-etc-in-r-to-target-predictor-levels What I'm looking for, using neuralnet as an example, is how to guide a model toward an output profile once the model is trained. For example: model1 <- neuralnet(formula=out1 ~ intput1 + input2 + input3 + input4, data=train, hidden=6, threshold=0.05, linear.output=TRUE) model2 <- neuralnet(formula=out2 ~ intput1 + input2 + input3 + input4, data=train, hidden=6, threshold=0.05, linear.output=TRUE) And so on. Once I've trained each of these models and...
2008 Mar 07
3
Error
Hello! I need some help, because I don't know how this error means: Error: variables ?Output1?, ?Output2?, ?Output3?, ?Output4?, ?Output5? were specified with different types from the fit Execution halted Can you help me? Thank You
2020 Jun 26
0
virt-resize - guest unbootable after update-initramfs
...712] usbcore: registered new interface driver usbfs [ 0.823717] usbcore: registered new interface driver hub [ 0.823726] usbcore: registered new device driver usb [ 0.829766] SCSI subsystem initialized [ 0.830240] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3 [ 0.830430] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input2 [ 0.844882] virtio_blk virtio2: [vda] 41943040 512-byte logical blocks (21.5 GB/20.0 GiB) [ 0.854231] vda: vda1 vda2 [ 0.857633] xhci_hcd 0000:02:00.0: xHCI Host Controller [ 0.857638] xhci_...
2009 Feb 27
2
Stability
.... .. ping flood stopped here .. Feb 27 14:00:03 servername kernel: usb 1-7: new high speed USB device using ehci_hcd and address 3 Feb 27 14:00:03 servername kernel: usb 1-7: configuration #1 chosen from 1 choice Feb 27 14:00:03 servername kernel: input: Peppercon AG Multidevice as /class/input/input3 Feb 27 14:00:03 servername kernel: input: USB HID v1.01 Mouse [Peppercon AG Multidevice] on usb-0000:00:1d.7-7 Feb 27 14:00:03 servername kernel: input: Peppercon AG Multidevice as /class/input/input4 Feb 27 14:00:03 servername kernel: input: USB HID v1.01 Keyboard [Peppercon AG Multidevice] on...
2015 Jun 30
2
Issue with virt-builder on Ubuntu 14.04
Hello, I am running into problems with virt-builder on my Ubuntu-14.04 install. Please find the checklist below: 1. What are you trying to achieve? I'm trying to build a standard Ubuntu 14.04 disk image. 2. What exact commands did you run? I ran "virt-builder ubuntu-14.04" 3. What was the precise error/output of these commands? The process gets stuck indefinitely at
2015 Jun 30
0
Re: Issue with virt-builder on Ubuntu 14.04
...ler at 0xb100, revision 0 > /init: 79: /init: cannot create /sys/block/{h,s,ub,v}d*/queue/scheduler: Directory nonexistent > /sbin/dhclient-script: line 31: /etc/fstab: No such file or directory > [ 2.935872] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input3 ... the kernel boots quite far, and then hangs in the init script (see appliance/init). Some things you can try: - Force qemu to use TCG (no KVM) mode to see if that makes a difference: export LIBGUESTFS_BACKEND_SETTINGS=force_tcg - Use 'libguestfs-test-tool' for testing to see if...
2015 Oct 23
0
USB audio issues with 6.7
...oduct=2, SerialNumber=0 usb 1-1: Product: USB Audio DAC usb 1-1: Manufacturer: Burr-Brown from TI usb 1-1: configuration #1 chosen from 1 choice usb 1-1: ctrl urb status -75 received input: Burr-Brown from TI USB Audio DAC as /devices/pci0000:00/0000:00:01.2/usb1/1-1/1-1:1.2/input/input3 generic-usb 0003:08BB:2704.0001: input,hidraw0: USB HID v1.00 Device [Burr-Brown from TI USB Audio DAC ] on usb-0000:00:01.2-1/input2 and it shows up as... $ aplay -l **** List of PLAYBACK Hardware Devices **** card 0: I82801AAICH [Intel 82801AA-ICH], device 0: Intel ICH [Intel...
2014 May 14
3
Bug#748052: Bug#748052: xen-hypervisor-4.3-amd64: No USB keyboard af
...e: registered new interface driver usbhid [ 2.958769] usbhid: USB HID core driver [ 2.979148] systemd-udevd[505]: renamed network interface eth1 to eth2 [ 2.987915] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/input/input3 [ 2.987966] hid-generic 0003:046B:FF10.0001: input,hidraw0: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.1/input0 [ 2.988032] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1...
2014 May 14
0
Bug#748052: Bug#748052: xen-hypervisor-4.3-amd64: No USB keyboard after booting into Dom0
Control: tag -1 +moreinfo On Tue, 2014-05-13 at 08:55 -0700, Mike Egglestone wrote: > After booting into kernel 3.13 dom0, the keyboard no longer works. > All other aspects work, ssh is needed to login to the system to > start working with the domU's. > They keyboard works at the grub menu just fine, and > works normal when booting into the non xen kernel. I think at a minimum