search for: rigg

Displaying 20 results from an estimated 28 matches for "rigg".

Did you mean: ring
2012 Apr 17
10
kernel panic during zfs import [UPDATE]
Hello everybody, just to let you know what happened in the meantime: I was able to open a Service Request at Oracle. The issue is a known bug (Bug 6742788 : assertion panic at: zfs:zap_deref_leaf) The bug has bin fixed (according to Oracle support) since build 164, but there is no fix for Solaris 11 available so far (will be fixed in S11U7?). There is a workaround available that works
2015 Dec 29
2
FLAC__BYTES_PER_WORD==8 test results
Thomas Zander wrote: > If you want to share the patch, I am happy to repeat some testing on > Sandy Bridge and Core2 with clang. The patch changes many files, libFLAC/bitwriter.c and test_libFLAC/bitwriter.c among them. So now I wait for the decision for patches #3 and #4 that I posted yesterday. > The slower decoding speed for 24 bit content on x86_64 seems > surprising, but
2016 Mar 14
2
Broken build on musl libc
...@lvqcl, I tried to test this, but couldn't figure out what CPU architecture > and configure options were required to build the code that changed. > > Any clues? AFAIK this part should always be built on Linux (except on Android) on x86 CPUs. If at all, --disable-sse could prevent it. Riggs
2015 Dec 29
2
How to check for 64-bit CPU?
...o handle this at all? Entangling CPU-arch-dependent #ifdefs with input sample size (see "tuned for N-bit input" a few lines below" seems weird. IMHO finding the rice parameter should be independent of the cpu arch unless there is a spectacular benefit by distinguishing. Best regards Riggs
2011 Oct 25
6
Date formats
Just realized I have a nice problem. using Postgresql... When I save something via Rails to the table it''s saved with a GMT offset (so 12:00 becomes 16:00) But the database is configured to save everything as GMT. Which means -- when I query it via SQL it''s coming back as now + 4 hours instead of just plain now. Where/How do I get this back in sync? -- You received this
2015 Dec 28
6
How to check for 64-bit CPU?
In stream_encoder.c there's the following code: #if defined FLAC__CPU_X86_64 /* and other 64-bit arch, too */ if(mean <= 0x80000000/512) { /* 512: more or less optimal for both 16- and 24-bit input */ #else if(mean <= 0x80000000/8) { /* 32-bit arch: use 32-bit math if possible */ #endif A) How to properly check for 64-bit architectures? I can check for "defined
2002 Aug 04
0
Re:samba digest, Vol 1 #1482 - 16 msgs
...person managing the list at samba-admin@lists.samba.org When replying, please edit your Subject line so it is more specific than "Re: Contents of samba digest..." Today's Topics: 1. Desperately needing help with Samba (FRANAT@aol.com) 2. RE: winbind and gdm on RH7.3 (Harold Riggs) 3. Re: Desperately needing help with Samba (Joel Hammer) 4. Swat & mac os x (Steffan A. Cline) 5. Re: RE: winbind and gdm on RH7.3 (Ken McCord) 6. Japanese Characters between Linux Server to Mac OS X Client (Suraj K. Rai) 7. Re: Uploading Printer Drivers with XP (Philip Burrow)...
2015 Sep 26
1
Supporting 32 bit data
...9;d say the discussion whether music *needs* 32bit >resolution is a different topic :-) I completely agree with this. Flac should support available formats. If 32bit or even 64bit is necessary is a discussion that should not take place here IMHO. Best regards Olav Sunde >Best regards >Riggs >_______________________________________________ >flac-dev mailing list >flac-dev at xiph.org >http://lists.xiph.org/mailman/listinfo/flac-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/flac-dev/attachments/20150926/8...
2015 Dec 29
2
FLAC__BYTES_PER_WORD==8 test results
I wrote a patch that enables FLAC__BYTES_PER_WORD==8 in libFLAC/bitreader.c and libFLAC\bitwriter.c. The tests were done on an Intel Nehalem CPU, and flac was compiled with CGG 4.9.x. Average speed increase for FLAC__BYTES_PER_WORD change from 4 to 8: Decoding speed: ia32 architecture 16-bit .flac: -15% 24-bit .flac: -11% x86-64 architecture 16-bit .flac:
2015 Dec 30
3
How to check for 64-bit CPU?
...om> wrote: > I would suggest: > > #if SIZEOF_VOIDP == 8 I believe this is not portable. At least on my machine ("4.2.1 Compatible FreeBSD Clang 3.4.1 (tags/RELEASE_34/dot1-final 208032)") it's not defined. Probably this one comes closest: #define __SIZEOF_POINTER__ 8 Riggs
2015 Dec 30
2
FLAC__BYTES_PER_WORD==8 test results
...; So, does it make sense to #define FLAC__BYTES_PER_WORD (in bitreader.c) >> as 4 for 32-bit and as 8 for 64-bit targets? > > Your tests so far imply this is a sensible default. > I'd say go ahead. We can always change it if it turns out there is a > better option. > > Riggs What's wrong with something incredible simple, like: #define FLAC__BYTES_PER_WORD (sizeof(int)) ?
2016 Mar 09
2
Broken build on musl libc
Patch is here: https://github.com/openwrt/packages/commit/1263599f96f13f11d719ce336dfb6a639b32de98 . Probably needs to be modified for inclusion into mainline.
2016 Jun 26
2
FLAC__SSE_OS change
Dave Yeo wrote: > Doesn't SSE support imply SSE2+ support? Not for the CPU. Just because a CPU supports SSE, does not mean it is guaranteed to support SSE2+. For OS support, I'm not sure. Didn't later version of SSE add new registers? > I have a '96 install of an OS, it has been upgraded until end of life, > and it handles SSE4+ instructions fine even though the
2016 Jun 26
0
FLAC__SSE_OS change
...bit, and increased the number of the ZMM registers to 32. But if I am not mistaken, we don't have AVX-512 code in libFLAC yet :-) In any case, the disable-SSE matter is still important. People are still using flac on x86 machines without SSE, for instance AMD Geode CPUs seem to live forever. Riggs
2016 Dec 06
2
Do we need a pre-release?
Subject line says it all. Opinions? Erik -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/
2016 Dec 06
0
Do we need a pre-release?
...December 2016 at 10:12, Erik de Castro Lopo <mle+la at mega-nerd.com> wrote: > > Subject line says it all. Opinions? I'd say let's have a release candidate. More often than not, some issues turn up due to the exposure to a larger user base and, hence, test cases. Best regards Riggs
2016 Dec 07
2
Do we need a pre-release?
lvqcl.mail wrote: > "make -f Makefile.lite" also doesn't work out of box. Didn't work for the 1.3.1 release either. Makes me wonder why we even keep it around. Erik -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/
2003 Feb 15
2
scp + .bashrc buglet
Hi OpenSSH folks, Just a quick note: this is my .bashrc: # Executed by non-login interactive shell # # scp go wild when it see this #echo "<*> Executing ~/.bashrc from '$0'. Command line: '$*'" #ps -H e #echo "<*> Finished ~/.bashrc" Line 3 was added and subsequent lines commented out. Now scp works. Looks like a little scp bug for me. CC me,
1998 Apr 12
0
Long file name support for smbclient
smbclient can create GNU tar files with long file names, but cannot restore them. The included patch will rectify this. This patch is against 1.9.18.p4. -Rob -- Rob Riggs Devil's Thumb Entertainment Network Administrator Boulder, CO - (303) 938-1200 rob@DevilsThumb.COM http://www.DevilsThumb.COM/~rob "The notion of errors is ill-defined." - IRIX 'netstat' man page -------------- next part --------...
2019 Jul 19
4
Prelease now available
Erik de Castro Lopo wrote: > Hopefull the final release candidate: > > http://mega-nerd.com/tmp/flac-1.3.3rc3.tar.xz > http://mega-nerd.com/tmp/flac-1.3.3rc3.tar.xz.asc I am assuming everyone was happy with that and that I can release a new version. Cheers, Erik -- ---------------------------------------------------------------------- Erik de Castro Lopo