| View previous topic :: View next topic |
| Author |
Message |
slaton
Joined: 11 Oct 2004 Posts: 7
|
Posted: Thu Nov 04, 2004 5:32 pm Post subject: |
|
|
| Sorry -- MPI parallel transforms are still only available in 2.1.5, so that is the version MPI-enabled parallel programs need to use. Do you have any problems with the tests for 2.1.5? Thanks. |
|
| Back to top |
|
 |
slaton
Joined: 11 Oct 2004 Posts: 7
|
Posted: Thu Nov 04, 2004 6:19 pm Post subject: |
|
|
OK...setting the stacksize to unlimited does cause the "make check" tests to complete. Thank you.
However my application that uses FFTW still segfaults when it calls an FFTW routine. Not immediately, but after grinding away for perhaps 45 seconds.
I guess i will have to build with debug flags and get my feet wet with pgdbg. |
|
| Back to top |
|
 |
slaton
Joined: 11 Oct 2004 Posts: 7
|
Posted: Mon Nov 08, 2004 10:05 pm Post subject: Can't build shared FFTW libs |
|
|
OK...what the software vendor supports is the use of the FFTW shared library, not the static library. So as I mentioned previously, I'm currently using pgcc/pgCC/pgf90 to compile FFTW v2.1.5. When I use the --enable-shared autoconf option for FFTW, I see from config.log that this is not working:
| Code: | checking whether the linker (/usr/bin/ld) supports shared libraries
result: yes
checking if libtool supports shared libraries
result: no
checking whether to build shared libraries
result: no |
I tried removing "-mcmodel=medium" and adding -fPIC, with no change in the behavior.
I switched to gcc/g++/pgf90, using just "-m64 -O2" as CFLAGS and CXXFLAGS. Now the shared libraries DO get built. From config.log:
| Code: | checking whether the linker (/usr/bin/ld) supports shared libraries
result: yes
checking if libtool supports shared libraries
result: yes
checking whether to build shared libraries
result: yes |
Is this a known pgcc/pgCC issue with libtool? The only reference I've seen to this referred to not using -fPIC and -mcmodel together, mentioned in another post by mkcolg. |
|
| Back to top |
|
 |
gasitton
Joined: 06 Jan 2005 Posts: 4
|
Posted: Tue Jan 11, 2005 1:49 pm Post subject: FFTW builds with pgcc 5.2 |
|
|
Has anyone been able to build FFTW3 with the --enable-sse option??
This causes the gcc inline assembly instruction asm to be used which
kills pgcc.
gas |
|
| Back to top |
|
 |
|