search for: vish

Displaying 20 results from an estimated 86 matches for "vish".

Did you mean: virsh
2014 Dec 09
1
[RFC PATCH v2] armv7: celt_pitch_xcorr: Introduce ARM neon intrinsics
Viswanath Puttagunta wrote: > + SUMM = vdupq_n_f32(0); It kills me that there's no intrinsic for VMOV.F32 d0, #0 (or at least I couldn't find one), so this takes two instructions instead of one. > + /* Consume 4 elements in x vector and 8 elements in y > + * vector. However, the 8'th element in y never really gets > + * touched in this loop. So, if len == 4,
2015 May 08
1
(no subject)
Hello Jean-Marc, Yep, that was it.. with your patch, test_unit_mdct passes for all nfft. So, what you do you suggest the next step here is? Regards, Vish On 8 May 2015 at 12:30, Jean-Marc Valin <jmvalin at jmvalin.ca> wrote: > Hi, > > Can you apply this change to the MDCT test and run it again. See if more > (all) sizes pass. Given the results, I strongly suspect an overflow. > > Jean-Marc > > On 08/05/15 01:2...
2015 May 08
2
(no subject)
...fft=480 inverse=0,snr = 9.016824 ** poor snr: 9.016824 ** nfft=480 inverse=1,snr = 87.773827 nfft=960 inverse=0,snr = 11.813777 ** poor snr: 11.813777 ** nfft=960 inverse=1,snr = 88.283572 nfft=1920 inverse=0,snr = 7.652986 ** poor snr: 7.652986 ** nfft=1920 inverse=1,snr = 87.762925 Thanks, Vish [1]: https://git.linaro.org/people/viswanath.puttagunta/opus.git/shortlog/refs/heads/rfcv2_fft_fixed_exp On 8 May 2015 at 12:06, Jean-Marc Valin <jmvalin at jmvalin.ca> wrote: > Is the actual output of the test posted somewhere? One thing I would > suspect is that the test might use...
2015 May 11
1
opus Digest, Vol 76, Issue 11
Hi Jean-Marc, Thanks for pointing us the way. Yes it is a overflowing problem. I moved all scaling code in the front of any other operations, and test_unit_mdct passes for all sizes. I will update Ne10 right after Vish double checks it on hardware. He will repost patches with more verification later this week. Regards, Phil Wang Well, I see three questions that need to be answered at this point 1) At what value the overflow starts happening 2) What's the minimum requirement to avoid overflows in the encoder...
2010 May 04
2
sched provider
...24591 off=24603 on=24609 on=24670 off=24676[/i] This pattern of two ''on'' timestamps between the ''off'' timestamps repeats throughout. Should it not just have 1 ''on'', then 1 ''off'', and so on. Can someone please explain. Thanks, Vish -- This message posted from opensolaris.org
2007 Aug 09
2
RoR and DRb
Hi, I have a question regarding RoR and DRb. First of all, I tested with simple client/server examples and everything worked as expected. I have the following lines in my environment.rb: DRb.start_service $rem_obj = DRbObject.new(nil, "druby://#{rname}:9001") Since rem_obj is a global variable, I can call it from any controller and the invoked procedure is run on the server. However,
2015 May 08
0
[RFC PATCH v1 0/8] Ne10 fft fixed and previous
...fft=480 inverse=0,snr = 9.016824 ** poor snr: 9.016824 ** nfft=480 inverse=1,snr = 87.773827 nfft=960 inverse=0,snr = 11.813777 ** poor snr: 11.813777 ** nfft=960 inverse=1,snr = 88.283572 nfft=1920 inverse=0,snr = 7.652986 ** poor snr: 7.652986 ** nfft=1920 inverse=1,snr = 87.762925 Thanks, Vish [1]: https://git.linaro.org/people/viswanath.puttagunta/opus.git/shortlog/refs/heads/rfcv2_fft_fixed_exp Regards, Vish On 8 May 2015 at 12:06, Jean-Marc Valin <jmvalin at jmvalin.ca> wrote: > Is the actual output of the test posted somewhere? One thing I would > suspect is that the t...
2006 Oct 02
3
Mongrel cluster FreeBSD rc.d script
Hello all After installing Mongrel, Mongrel Cluster and all it''s dependencies via gems under FreeBSD. Next I have configured all config/mongrel_cluster.yml for each Rails app, then: % mkdir /usr/local/etc/mongrel_cluster and likend each railsapp.yml to it''s refering app/config/mongrel_cluster.yml My question is, after preparing all base configs now I need to add some rc.d
2015 Oct 06
3
[RFC V3 7/8] armv7, armv8: Optimize fixed point fft using NE10 library
I'm trying to get these cleaned up and landed, but I'm running into some trouble with this patch. Using commit a08b29d88e3c (July 21) of Ne10, I'm seeing test failures for 60-point FFTs: nfft=60 inverse=0,snr = -3.312408 ** poor snr: -3.312408 ** nfft=60 inverse=1,snr = -16.079597 ** poor snr: -16.079597 ** All other sizes tested appear to work fine (84 to 140 dB of SNR). This
2006 Oct 18
4
Segmentation bug - file_column?
Hi there everybody, We''re having mongrel processes slowly die on us, with a segmentation fault. I''ve seen a few other people mention similar issues. Any info or suggestions would be nice: Error: /var/www/apps/heritage/current/config/../vendor/plugins/file_column/ lib/magick_file_column.rb:7: [BUG] Segmentation fault ruby 1.8.4 (2005-12-24) [i386-linux] Server:
2015 Mar 07
1
Patch cleaning up Opus x86 intrinsics configury
Hello Jonathan, Just FYI, I started doing review of your patch and will get back to you in few days. After review, I would like to rebase your patch (as necessary) myself and do some testing.. and re-submit. Regards, Vish On 4 March 2015 at 09:00, Viswanath Puttagunta <viswanath.puttagunta at linaro.org> wrote: > > On 3 March 2015 at 22:17, Jonathan Lennox <jonathan at vidyo.com> wrote: > > > > On Mar 3, 2015, at 11:08 PM, Viswanath Puttagunta > > <viswanath.puttagunta at lina...
2006 Sep 27
7
problems with accessing controllers in sub tree directory
Hey guys, I used "script/generate controller admin/event" How do I link to the views and the controller when it''s inside a directory. I tried <%= link_to "some link", :controller=>"event",:action=>"index" %> <%= link_to "some link", :controller=>"admin/event",:action=>"index" %> <%=
2008 Dec 09
0
IC3/FBI security announcement - your help needed
On Friday, the IC3 (FBI/NW3C/BJA) put out a security advisory on their website that contained a fairly vaguely worded warning about Asterisk systems being compromised and then being used as "vishing" (voice phishing) platforms. They were non-specific on the threat other than to advocate upgrading to "newer versions" of Asterisk. This announcement was done on Friday late afternoon, just as everyone was leaving for the weekend, which left us leaving frantic messages w...
2013 Aug 27
1
Error: file_dotlock_open() failed with file + Too many open files
Hi All, We are getting these below error on our IMAP server. is this because of open file limits.?? We have set it to 4096. [root at vish conf.d]# ulimit -n 4096 Aug 27 16:08:26 imap(kavish.karkera at example.com-24685): Error: file_dotlock_open() failed with file /data/quarantine/index//data/quarantine/mailstore/24685/.INBOX.kavish.karkera/dovecot.index.cache: Too many open files Aug 27 16:08:26 imap(kavish.karkera at example.co...
2006 Sep 25
2
Managing requests for static content in WEBrick and Mongrel
All, Is there a way to set things up so that requests for static files in either WEBrick or Mongrel will just cause a regular HTTP request and not cause the dynamic routing-based invocation to occur? I had an issue where a request for a missing .js file was causing another request to be registered, thus blowing away my flash data. I tried to do this in my routing file, but I don''t
2015 Feb 23
1
library for creating Opus files?
...s-tools works for me.. Just tried it successfully on my x86_64 Ubuntu Trusty 14.04 box. I was just able to do $ sudo apt-get install opus-tools $ opusenc music_48kbps.wav music_48kbps.opus I remember also being able to compile opus-tools (git://git.xiph.org/opus-tools.git) some time ago. Regards, Vish On 23 February 2015 at 12:30, Tony <yellowjacketlite at gmail.com> wrote: > I __think__ opus-tools' opusenc has code which can be used as a > template/sample for how to create an .Ogg file with Opus content. As > expected, it makes use of libopus and libogg. > > There ap...
2015 Mar 04
2
Patch cleaning up Opus x86 intrinsics configury
...conflicts with my ARM patch that does fft optimizations > http://lists.xiph.org/pipermail/opus/2015-March/002904.html > http://lists.xiph.org/pipermail/opus/2015-March/002905.html > > One of us probably has to rebase depending on which patch goes into opus first. > > Regards, > Vish > > > On 1 March 2015 at 20:47, Jonathan Lennox <jonathan at vidyo.com<mailto:jonathan at vidyo.com>> wrote: >> The attached patch cleans up Opus's x86 intrinsics configury. >> >> It: >> * Makes ?enable-intrinsics work with clang and other non-GCC co...
2015 Mar 04
2
Patch cleaning up Opus x86 intrinsics configury
...nflicts with my ARM patch that does fft optimizations > http://lists.xiph.org/pipermail/opus/2015-March/002904.html > http://lists.xiph.org/pipermail/opus/2015-March/002905.html > > One of us probably has to rebase depending on which patch goes into opus first. > > Regards, > Vish > > > On 1 March 2015 at 20:47, Jonathan Lennox <jonathan at vidyo.com> wrote: >> The attached patch cleans up Opus's x86 intrinsics configury. >> >> It: >> * Makes ?enable-intrinsics work with clang and other non-GCC compilers >> * Enables RTCD f...
2015 May 08
0
(no subject)
...verse=1,snr = 87.773827 > > nfft=960 inverse=0,snr = 11.813777 > ** poor snr: 11.813777 ** > > nfft=960 inverse=1,snr = 88.283572 > > nfft=1920 inverse=0,snr = 7.652986 > ** poor snr: 7.652986 ** > > nfft=1920 inverse=1,snr = 87.762925 > > > Thanks, > Vish > > [1]: https://git.linaro.org/people/viswanath.puttagunta/opus.git/shortlog/refs/heads/rfcv2_fft_fixed_exp > > > On 8 May 2015 at 12:06, Jean-Marc Valin <jmvalin at jmvalin.ca> wrote: >> Is the actual output of the test posted somewhere? One thing I would >> su...
2015 Oct 16
1
[RFC V3 7/8] armv7, armv8: Optimize fixed point fft using NE10 library
Hi Timothy, Sorry for late reply. I have upstreamed the patch to fix the regression here: https://github.com/projectNe10/Ne10/commit/ee5d856cd9cb8c4a15ace567df4239f4e788d043 I have tested it with Vish's branch: http://git.linaro.org/people/viswanath.puttagunta/opus.git/shortlog/refs/heads/rfcv3_fft_fixed) Both unit test dft and unit test mdct passed on ARM v7/v8, floating point/fixed point, with or without Ne10. Best regards, Phil Wang -----Original Message----- From: Viswanath Puttagun...