search for: fftw3

Displaying 20 results from an estimated 22 matches for "fftw3".

Did you mean: fftw
2008 May 25
3
FFTW3 for libspeexdsp
Hi, Attached is a patch which enables FFTW3 to be used by libspeexdsp. Using SSE, the FFT code is more than twice as fast, and it's 50% faster even without SSE. To enable the library, you'll need to call configure with '--with-gpl-fftw3'. Based on the benchmarking we did, this also changes the default FFT to smallft for...
2008 May 27
1
FFTW3 for libspeexdsp
Small update. This makes --without-gpl-fftw3 do the expected, and also allow --with-gpl-fftw3=/path/to/fftw3 for alternate installs. It also zeroes the imaginary of the nyquist element; it works without it, but it's recommended to do. -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name...
2009 Sep 27
1
Optional libraries (libtiff, etc) not found
I installed the (binary) biOps package, which can use libtiff and libfftw. Then I used macports to install the libraries (in /opt/local/lib). But I restart R and biOps still does not see the libraries. I've tried adding symbolic links from /opt/local/lib to /usr/local/lib, I've added /opt/local/lib to LIBRARY_PATH, LD_LIBRARY_PATH, and DYLD_LIBRARY_PATH, and it doesn't work. Do you
2008 May 27
3
MKL Patch
And here's a patch for Intel Math Kernel Library. This allows commercial users of Speex to use a high-speed FFT library that isn't GPL'd. (You do need to pay for it though). This is 3 times faster than the default FFT in speex, and also faster than FFTW3 since MKL has native support for the complex packing Speex uses. Since Intel hasn't supplied any pkg-config files, and which libraries to use depend on the platform and compiler, this requires a bit of setup to get working. For me, the correct configure line is: bash autogen.sh && C...
2016 Jan 21
1
Failed to install imager
...failed to run install.packages("imager") in CentOS 6, the R version is 3.2.2 g++ -shared -L/usr/local/r/3.2.2/lib64/R/lib -L/usr/local/lib64 -o imager.so RcppExports.o colourspace.o display.o drawing.o filtering.o interpolation.o morphology.o transformations.o utils.o wrappers.o -lX11 -lfftw3 -L/usr/local/r/3.2.2/lib64/R/lib -lR /usr/bin/ld: cannot find -lfftw3 I checked imager src/Makevars.win: PKG_LIBS += -L$(LIB_FFTW)/lib -lgdi32 -lfftw3-3 $(RCPP_LDFLAGS) And I've already added LIB_FFTW to my fftw library, what I am still missing? Thank you. Kind regards, - jupiter [[alte...
2011 Nov 17
1
building biOps on macports, and configure--vars
All, the MacOSX binary build of the biOps package is broken on cran, so I am trying to compile from source. I am very close; the trick is apparently that this package depends on fftw3, libjpeg and libtiff. My fftw3 is in /usr/local/, but my libjpeg and libtiff are in /opt/local/ since i got them through macports. In general, I'd like to keep as many of my third-party libraries as I can in the macports system, which means that I need to point R CMD INSTALL to /opt/local. Here...
2008 May 27
5
MKL Patch
...>> And here's a patch for Intel Math Kernel Library. This allows commercial >> users of Speex to use a high-speed FFT library that isn't GPL'd. (You do >> need to pay for it though). This is 3 times faster than the default FFT in >> speex, and also faster than FFTW3 since MKL has native support for the >> complex packing Speex uses. >> > > That's definitely cool, but from what I can see on this FAQ I do need to pay > if I'm willing to use it for commercial purposes: > http://www.intel.com/cd/software/products/asmo-na/eng/26...
2009 Dec 30
0
[PATCH] Link libspeexdsp with libfftw3 when needed
When built with --with-fft=gpl-fftw3, libspeexdsp is not linked with libfftw3, while it uses symbols from it. This means every object linked with libspeexdsp should also be linked with libfftw3, but it is not something reflected in the pkgconfig file. Instead, link libspeexdsp with libfftw3 when --with-fft=gpl-fftw3, and remove expli...
2013 Mar 04
1
installing biOps on MacOSX fails
version.string R version 2.15.2 (2012-10-26) I am trying to install biOps on MacOS X 10.8.2 First, I have tiff, fftw-3, jpeg and set paths like cd /usr/include sudo ln -s /usr/local/include/fftw3.h for x in /usr/local/include/j*.h; do sudo ln -s $x; done for x in /usr/local/include/tiff*.h; do sudo ln -s $x; done cd /usr/lib for x in /usr/local/lib/libfftw3.*; do sudo ln -s $x; done for x in /usr/local/lib/libjpeg.*; do sudo ln -s $x; done for x in /usr/local/lib/libtiff.*; do sudo ln -s $x...
2017 May 29
0
[PATCH] Add CMake build script
...Linux tested * Travis CI test added * Generates working Visual Studio 6.0-2017 solutions * Generates working Unix Makefile * Supported options (<option> - <default value>): * `ENABLE_FLOATING_POINT` - on * `ENABLE_FIXED_POINT` - off * `ENABLE_FIXED_POINT_DEBUG` - off * `USE_GPL_FFTW3` - off * `DISABLE_FLOAT_API` - off * `DISABLE_VBR` - off * `ENABLE_VORBIS_PSY` - off * `ENABLE_SSE` - on if supported * `ENABLE_ARM4_ASM` - off * `ENABLE_ARM5E_ASM` - off * `ENABLE_BLACKFIN_ASM` - off * `ENABLE_TI_C55X` - off * `USE_SPEEXDSP` - on if library found * `DISABLE_BIN...
2008 Nov 10
0
rimage don't install on mac OS X 10.5.5 solved
...<51555760-5E0C-4828-B780-2B716AE7C5A6@gmail.com> Content-Type: text/plain; charset=WINDOWS-1252; format=flowed; delsp=yes Thanks for your rapid response. I tried your sugerences and set C_INCLUDE_PATH=/usr/local/include. I also look in /usr/local/include and here it appears fftw.h and also fftw3.f, fftw3.h, fftw_threads.h and rfftw.h rfftw_threads.h but it don't work also. I will try to update to R 2.8.0 Thanks for your sugestions El 31/10/2008, a las 10:10, Prof Brian Ripley escribi?: > On Fri, 31 Oct 2008, Florencio Gonzalez Blazquez wrote: > >> Hello, i'm trying to...
2003 Nov 10
1
"configure" options and R CMD INSTALL
Hi folks: I am trying to install the package "rimage" in R 1.8.0 on an Alpha Linux box. "R CMD INSTALL rimage_0.5-1.tar.gz" fails with the following: ... ... checking for stdint.h... yes checking for unistd.h... yes checking fftw.h usability... yes checking fftw.h presence... yes checking for fftw.h... yes checking jpeglib.h usability... yes checking jpeglib.h presence...
2008 Oct 18
1
octave
...action check ---> Package octave.i386 6:3.0.1-2.el5 set to be updated --> Processing Dependency: libcamd.so.2 for package: octave --> Processing Dependency: libumfpack.so.5 for package: octave --> Processing Dependency: libcolamd.so.2 for package: octave --> Processing Dependency: libfftw3.so.3 for package: octave --> Processing Dependency: libccolamd.so.2 for package: octave --> Processing Dependency: libblas.so.3 for package: octave --> Processing Dependency: libglpk.so.0 for package: octave --> Processing Dependency: libcholmod.so.1 for package: octave --> Processin...
2008 May 28
2
FFT Resampler
...f work-in-progress of a FFT based resampler. At the moment it works in floating point only, and only basic quality inspection has been done. Some benchmarks comparing the filter-based resampler at Q3 with the FFT resampler with overlap = in_len / 2, using 20ms chunks of data. (-O3 -ffast-math, FFTW3, gcc 4.3.0 on x86_64) 16=>48: 59us vs 19us 16=>44.1: 204us vs 34us 16=>8: 13us vs 7us 48=>8: 32us vs 16us This is actually much faster than I expected. With -O3, the overhead of copying, applying window etc is 20%. With all options, the overhead sinks to 10%. I've done listenin...
2006 Sep 11
3
Installation difficulty with "rimage"
Dear R people, I am trying to install rimage using install.packages("rimage") but am receiving the following errors despite having FFTW installed. I would appreciate any help to get this fixed. checking fftw.h usability... no checking fftw.h presence... no checking for fftw.h... no configure: error: Sorry, can't find fftw header ERROR: configuration failed for package
2018 Sep 05
0
Asterisk 15.6.0 Now Available
...80 - res_pjsip_t38: Slow T.38 re-invite rejection if remote leg has T.38 disabled (Reported by Torrey Searle) * ASTERISK-26686 - res_pjsip: Lock inversion in transport management (Reported by Ross Beer) * ASTERISK-27939 - [patch] bridge_softmix_binaural: Enable FFTW3 in Solaris 11. (Reported by Alexander Traud) Improvements made in this release: ----------------------------------- * ASTERISK-28006 - PJSIP: Missing "party=calling"/"party=called" in Remote-Party-ID (Reported by Eric Dantie) * ASTERISK-27995 - pjproje...
2013 Jul 20
7
Failure to Launch (was override -q option)
Attached is the very verbose ssh output. Just to be perverse, this time two nodes lost connectivity. The only thing I see is lines saying that the two connections are lost, although being honest I have no idea what everything else means. For reference, 8 ssh cinnections were being made at the same time for a 8x8mpi task. N.B., since the OS I am using does not have rsh, I am currently using the
2004 May 29
1
prerelease of the Postfish
...e transfer function of the window shape; most noticeably, they tend to cause odd pitch changes in raw vocals) render them unsuitable for professional-quality work. >>>> What does the Postfish require? .) Linux 2.x (ports come later) with OSS or ALSA OSS emulation .) Libraries: FFTW3, pthreads, Gtk2 .) Gcc and gmake .) A sound card or external USB/Firewire A/D/A .) A video card, preferrably one with fast AGP .) Alot of CPU. Really. As much as you can throw at it. Dual Xeon 3GHZ? Yup, you can use all of it. Seriously, this is a very CPU hungry app because of...
2004 May 29
1
prerelease of the Postfish
...e transfer function of the window shape; most noticeably, they tend to cause odd pitch changes in raw vocals) render them unsuitable for professional-quality work. >>>> What does the Postfish require? .) Linux 2.x (ports come later) with OSS or ALSA OSS emulation .) Libraries: FFTW3, pthreads, Gtk2 .) Gcc and gmake .) A sound card or external USB/Firewire A/D/A .) A video card, preferrably one with fast AGP .) Alot of CPU. Really. As much as you can throw at it. Dual Xeon 3GHZ? Yup, you can use all of it. Seriously, this is a very CPU hungry app because of...
2018 Oct 09
0
Asterisk 16.0.0 Now Available
...80 - res_pjsip_t38: Slow T.38 re-invite rejection if remote leg has T.38 disabled (Reported by Torrey Searle) * ASTERISK-26686 - res_pjsip: Lock inversion in transport management (Reported by Ross Beer) * ASTERISK-27939 - [patch] bridge_softmix_binaural: Enable FFTW3 in Solaris 11. (Reported by Alexander Traud) * ASTERISK-27944 - res_pjsip_t38: Crash receiving 1xx responses other than 100 before 200 for T.38 reINVITE (Reported by Joshua Elson) * ASTERISK-27783 - res_pjsip_pubsub: apparent crash on shutdown (Reported by Kevi...