search for: msee

Displaying 5 results from an estimated 5 matches for "msee".

Did you mean: msec
2009 Jan 12
1
samba printing problems
...erver=[Samba 3.0.28] smb: \> lcd /udd/salbb smb: \> print .login putting file .login as .login (10.4 kb/s) (average 10.4 kb/s) smb: \> queue smb: \> exit I have stopped the smbd completely and restarted it. Any suggestions will be very welcome. Thanks. Peace, Lois -- Lois Bennett, MSEE Senior System Administrator Channing Laboratory Brigham & Women's Hospital A Teaching Affiliate of Harvard Medical School and Harvard School of Public Health
2011 Dec 02
0
Sr. Consulting Engineer (FreeBSD) in South San Francisco area
...ection of complex hardware and software systems. . Proven track record in analyzing competing architectures, designing software architectures to maximize the use of those architectures, and guiding/influencing the technical community in adopting these designs. . Typically requires MSEE/CS combined with 5-7 years of related experience, or BSEE/CS combined with 7-10+ yrs related experience. Desired Skills: . Experience with additional open source operating systems (FreeBSD, etc.) . Familiarity with Intel-based server hardware systems. . Virtualization...
2004 Aug 06
2
libspeex/SSE Intrinsics with GCC 3.3.x
On Fri, Apr 02, 2004 at 12:08:52AM -0500, Jean-Marc Valin wrote: > I'm aware of the problem, but I don't know how to get autoconf to handle > that properly. If someone knows how to make that work with autoconf even > with non-gcc compilers and with default CFLAGS, I'm interested. It's easy enough to test whether gcc will accept -msse and ifdef out the intrinsics code
2000 Nov 16
1
Documentation gripes
...and doc/* included in the distribution offer little help with regard to the underlying principles. I understand that many of you already know a great deal about the inner workings of Ogg Vorbis. I do not nor do I know where to look to get such an understanding. I'm a good C/C++ coder with an MSEE concentration in DSP. I'd like to contribute to Ogg Vorbis, but so far I have not been able to motivate myself to spend hours looking through the code, just to get an overview of the technologies used. I wonder how many more people there are like me who are waiting in the wings; who'd lik...
2004 Aug 06
1
libspeex/SSE Intrinsics with GCC 3.3.x
...en called explicitly when they're invoked.) There are some options here; the -msse check could be conditional on gcc being detected, the way -O3 is. These flags are pretty much never portable, but it probably doesn't hurt to try. The patch as written results in CFLAGS="-g -O2 -O3 -msee" if it succeeds. You can avoid the duplicate optimization levels by saying something like: if test $ac_cv_prog_gcc = yes; then dnl remove any existing gcc -On flag oldcflags=`echo $old_cflags | sed -e 's/-O.//'` OPT_CFLAGS="$OPT_CFLAGS -O3"...