Changes between Version 4 and Version 5 of FortranApps
- Timestamp:
- Jul 16, 2007, 11:10:11 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FortranApps
v4 v5 13 13 == Windows: Visual Studio == 14 14 15 Note: a working example similar to the following (based on outdated BOINC code) is [ http://boinc.berkeley.edu/TestLibs.zip here]; see also its [http://boinc.berkeley.edu/taufer.txt README].15 Note: a working example similar to the following (based on outdated BOINC code) is [/TestLibs.zip here]; see also its [/taufer.txt README]. 16 16 17 17 Start by creating a new FORTRAN project. Add all the FORTRAN specific files, then add all the files needed for the BOINC library (e.g. boinc_api.C). Make sure that BOINC and the FORTRAN files are compiled using the same type of standard libraries. i.e. if the BOINC is compiled with the debug multithreaded DLL libraries, make sure the FORTRAN files are compiled with the DLL setting. … … 54 54 == Intel FORTRAN compiler == 55 55 56 -ax<codes> generate code specialized for processors specified by <codes> 57 while also generating generic IA-32 code. <codes> includes 58 one or more of the following characters: 56 `-ax<codes>` generate codes specialized for processors specified by <codes>` while also generating generic IA-32 code. `<codes>` includes one or more of the following characters: 59 57 60 KIntel Pentium III and compatible Intel processors58 K:: Intel Pentium III and compatible Intel processors 61 59 62 WIntel Pentium 4 and compatible Intel processors60 W:: Intel Pentium 4 and compatible Intel processors 63 61 64 NIntel Pentium 4 and compatible Intel processors. Enables new62 N:: Intel Pentium 4 and compatible Intel processors. Enables new 65 63 optimizations in addition to Intel processor-specific optimizations 66 64 67 PIntel Core(TM) Duo processors, Intel Core(TM) Solo processors, Intel65 P:: Intel Core(TM) Duo processors, Intel Core(TM) Solo processors, Intel 68 66 Pentium 4 and compatible Intel processors with Streaming SIMD 69 67 Extensions 3 (SSE3) instruction support 70 68 71 BIntel Pentium M and compatible Intel processors69 B:: Intel Pentium M and compatible Intel processors 72 70 73 btw, you should not use the -x options!71 You should not use the -x options!