similar to: Hardware design of an Opus IP

Displaying 20 results from an estimated 100 matches similar to: "Hardware design of an Opus IP"

2010 Oct 21
0
[LLVMdev] Re : Source to source translation.
Hello Carlos, I don't think so. LLVM is not a source-to-source translator, but an optimizing compiler based on a portable, typed, assembly-like intermediate representation. One of the primary goals of LLVM is to generate optimized object code on a variety of platforms. Even if you do not use any optimizations, your C++ code would still need to be lowered to LLVM, which makes it very hard
2010 Oct 20
4
[LLVMdev] Source to source translation.
Hello, I'm trying to do a source to source translation from C++ code to C++ code. I want the output to contains some automatically inserted annotations, and the rest of the code exactly the same as it was before the processing. Is this possible with llvm? Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2013 Jul 04
2
FTP server down?
Not sure if this is the right place to mention it, but ..... The server downloads.asterisk.org was refusing FTP connections last night, and still does not seem to be accepting them this morning. FTP may not be "modern" or "trendy", but the ability to navigate around folders textually is nonetheless extremely handy when using a machine with no X server, from its own
2017 Jul 05
2
[New Patch] Fix disk corruption when writing
Le 05/07/2017 ? 13:09, Duncan Murdoch a ?crit : > On 05/07/2017 5:26 AM, January W. wrote: >> I tried the newest patch, but it does not seem to work for me (on >> Linux). Despite the check in Rconn_printf, the write.csv happily writes >> to /dev/full and does not report an error. When I added a printf("%d\n", >> res); to the Rconn_printf() definition, I see
2013 Jul 04
1
Installing Java on Centos
Hello, I have recently tried installing Java on Centos 6.4 and have found that the wiki tutorial for this subject is quite outdated (the proposed method doesn't work on the new version as the spec file is outdated and there is no need to rebuild the rpm with nosrc file anymore). I would like to post a tutorial on installing Java on Centos that would be more up-to-date and referring to the
2013 Jul 04
1
[LLVMdev] Kaleidoscope Tutorial is Out of Date
I'm working thought the Kaleidoscope tutorials for LLVM 3.3 and noticed the code listing for chapter 4 is out of date on the web. Take a look at http://llvm.org/releases/3.3/docs/tutorial/LangImpl4.html. The first line includes llvm/DerivedTypes.h, but this does not compile. The correct path is llvm/IR/Derivedtypes.h. There are other differences, and the examples that I pulled along with
2013 Jul 18
105
[Bug 67051] New: No nouveau HDMI sound on NVIDIA GT430
https://bugs.freedesktop.org/show_bug.cgi?id=67051 Priority: medium Bug ID: 67051 Assignee: nouveau at lists.freedesktop.org Summary: No nouveau HDMI sound on NVIDIA GT430 Severity: normal Classification: Unclassified OS: Linux (All) Reporter: alupu01 at gmail.com Hardware: x86 (IA32) Status:
2017 May 29
2
stats::line() does not produce correct Tukey line when n mod 6 is 2 or 3
A usually trustworthy R correspondent posted a pure R implementation on SO at some point in his lost youth: https://stackoverflow.com/questions/3224731/john-tukey-median-median-or-resistant-line-statistical-test-for-r-and-line This one does indeed generate the line of identity for the (1:9, 1:9) case, so I do suspect that we have a genuine scr*wup in line(). Notice, incidentally, that >
2004 Apr 06
1
Non working 800 numbers
Hey guys, I am having a strange problem with certain 800 numbers not working, specifically American Airlines 800-882-8880 800- 843-3000 800- 237-7976 and UPS 800-742-5877 I can't seem to figure out what is causing them not to pick up. Prior to using asterisk on our outbound PRI lines there was no problem. I tried explicitly setting callerid/ani etc on outbound calls, but so far no dice. Has
2013 Jul 04
4
Digium Analog card and Asterisk
Hi I just bought some digium analog cards and I would like to build an IVR system for my customers. However I am googling and googling , I didn't find any blog and instruction for beginners like me. So I come here for help. Any tips or blogs will help. Regards, Hua Jie -------------- next part -------------- An HTML attachment was scrubbed... URL:
2017 May 29
3
stats::line() does not produce correct Tukey line when n mod 6 is 2 or 3
Here is an attached patch. Best, Serguei. Le 29/05/2017 ? 12:21, Serguei Sokol a ?crit : > The problem or actual R implementation relies on an assumption > that median(x[i] | x[i] <= quantile(x, 1/3)) == quantile(x, 1/6) > which reveals not to be true despite very trustful appearance. > > If we continue with the example of x=y=1:9 > then quantile(x, 1/6)=2.5 (here quantile()
2013 Jul 21
1
What does this error mean?
Hello everyone, It took a few reboots after installing the latest kernel (.14) to come back up. After it did, I saw this: WARNING: Kernel Errors Present nForce2_smbus 0000:00:0a.1: Error probing SMB1. Bad video card? my Nvidia has been working fine. No on-screen problems/issues noted. Gilbert ******************************************************************************* Gilbert
2013 Jul 21
1
Question about Red Hat beta
Does CentOS get an early version of a beta release from Red Hat or not? I assume select hardware vendors get early access but I didn't know who else. Thanks, Joe
2013 Jul 21
1
[LLVMdev] error on compiling toy-vm
Hi all, The make command errors out: [toyVM ./tools/toyVM]: Generating frame tables initializer for .build/toyVM-binary.s [toyVM ./tools/toyVM]: Compiling .build/GenFrametables.cc [toyVM ./tools/toyVM]: Linking ../../Release/bin/toyVM clang: error: no such file or directory: '/home/user/vmkit/Release+Asserts/lib/Release/lib/libInlineMMTk.a' make[2]: *** [../../Release/bin/toyVM] Error 1
2013 Jul 04
4
[LLVMdev] llvm (hence Clang) not compiling with Visual Studio 2008
Hello, I have just updated my svn copy of the llvm/clang repositories after quite a long time of inactivity, and found it not compiling on Windows with Visual Studio 2008. The incriminated file is: llvm/lib/MC/MCModule.cpp Where several calls to "std::lower_bound" are made, like: atom_iterator I = std::lower_bound(atom_begin(), atom_end(),
2013 Jul 22
2
Xen kernel fixes
Hi, I have made the for-centos-v5 branch available on git://xenbits.xen.org/people/dvrabel/linux.git This is based on 3.4.54 and includes the following additional fixes (since the for-centos-v4 branch). * x86/xen: during early setup, only 1:1 map the ISA region Fixes a boot failure if tboot is used. * xen/evtchn: avoid a deadlock when unbinding an event channel Fixes a potential deadlock by
2013 Jul 04
0
[LLVMdev] [cfe-dev] llvm (hence Clang) not compiling with Visual Studio 2008
On Thu, Jul 4, 2013 at 12:48 AM, Benoit Perrot <benoit.noe.perrot at gmail.com>wrote: > Hello, > Hi Benoit, > I have just updated my svn copy of the llvm/clang repositories after quite > a long time of inactivity, and found it not compiling on Windows with > Visual Studio 2008. > > The incriminated file is: > > llvm/lib/MC/MCModule.cpp > > Where several
2013 Jul 05
2
[LLVMdev] Hi, people, I propose to move Debug and Object File related headers out of Support
On Jul 4, 2013, at 10:22 PM, 罗勇刚(Yonggang Luo) wrote: > > 在 2013-7-4 下午8:53,"Charles Davis" <cdavis5x at gmail.com>写道: > > > > > > On Jul 4, 2013, at 1:43 AM, 罗勇刚(Yonggang Luo) wrote: > > > > > LLVM is a modularized software system, so I hope it's was modularized, > > > And ELF.h is definitely belongs to Object by
2012 Jan 28
2
For Loop Error
Hi Again, I am writing a 'for loop' to create a matrix of randomly sampled colors. I've written this loop in matlab and it works fine. I then tried to do it in R and apparently there is something wrong with my syntax b/c every time I run the script, the for loop "blows up" at a different point in the loop. As you can see, I ask R to clear my workspace each time, so there
2013 Jul 04
0
[LLVMdev] round() vs. rint()/nearbyint() with fast-math
On Fri, Jun 21, 2013 at 5:11 PM, Erik Schnetter <schnetter at cct.lsu.edu>wrote: > On Fri, Jun 21, 2013 at 7:54 AM, David Tweed <david.tweed at arm.com> wrote: > >> | LLVM does not currently have special lowering handling for round(), and >> I'll propose a patch to add that, but the larger question is this: should >> fast-math change the tie-breaking