|
|
|
|   |
|
|
| Last week most active authors |
| No posts for a week |
|
|
|
  |
|
|
|
|   |
| Last active threads |
Greatest keyboard performances.... poisoned rose... eat this
Started Raja · Date: Sep 19, 2008 16:13 ·
46 post(s) |
How to identify incoming email before it's downloaded completely.
Started Jann · Date: Sep 6, 2008 09:46 ·
5 post(s) |
ftcl
Started rudra · Date: Jul 3, 2008 06:00 ·
7 post(s) |
Garbage in dead zone
Started James Van Buskirk · Date: May 25, 2008 21:23 ·
24 post(s) |
advance=no problem
Started rudra · Date: May 12, 2008 06:22 ·
45 post(s) |
Are f.p. manipulation functions only used in initialization?
Started James Van Buskirk · Date: Apr 26, 2008 13:43 ·
42 post(s) |
MPI code error raises a question
Started Gib Bogle · Date: May 7, 2008 13:41 ·
35 post(s) |
A Faster/Better way?
Started Infinity77 · Date: May 5, 2008 09:54 ·
5 post(s) |
Reading complex data with DECIMAL='COMMA'
Started SimonG · Date: May 1, 2008 05:24 ·
7 post(s) |
deepening into fortran 90,95, 2003
Started octaedro · Date: May 2, 2008 08:47 ·
36 post(s) |
|
| Last week hot threads |
| No posts for a week |
|
|
|
|
  |
| Latest posts |
Re: Greatest keyboard performances.... poisoned rose... eat this
Group: rec.music.progressive · Group Profile · Search for janne in rec.music.progressive
Author: amy
Date: Sep 19, 2008 19:31
... 92. Moondance - Jeff Labes (Van Morrison) 93. Sign in Stranger - Paul Griffin/Don Grolnick (Steely Dan) 94. Riding the Scree - Tony Banks (Genesis) 95. Son of Your Father - Elton John 96. Needled 24/7 - Janne Wirman (Children of Bodom) 97. Duke's Travels - Tony Banks (Genesis) 98. Frankenstein - Edgar Winter 99. Take Up Thy Stethoscope and Walk - Rick Wright (Pink Floyd) 100. Another Saturday Night - Jean Roussel (Cat ...
Show full article (10.21Kb) |
Greatest keyboard performances.... poisoned rose... eat this
Group: rec.music.progressive · Group Profile · Search for janne in rec.music.progressive
Author: Raja
Date: Sep 19, 2008 16:13
...) 92. Moondance - Jeff Labes (Van Morrison) 93. Sign in Stranger - Paul Griffin/Don Grolnick (Steely Dan) 94. Riding the Scree - Tony Banks (Genesis) 95. Son of Your Father - Elton John 96. Needled 24/7 - Janne Wirman (Children of Bodom) 97. Duke's Travels - Tony Banks (Genesis) 98. Frankenstein - Edgar Winter 99. Take Up Thy Stethoscope and Walk - Rick Wright (Pink Floyd) 100. Another Saturday Night - Jean Roussel (Cat Stevens) ...
Show full article (9.72Kb) |
Re: How to identify incoming email before it's downloaded completely.
Group: microsoft.public.outlook · Group Profile · Search for janne in microsoft.public.outlook
Author: Diane Poremsky [MVP]
Date: Sep 6, 2008 10:12
... and Exchange: EMO-NEWSLETTER-SUBSCRIBE-REQUEST@PEACH.EASE.LSOFT.COM You can access this newsgroup by visiting http://www.microsoft.com/office/community/en-us/default.mspx or point your newsreader to msnews.microsoft.com. "Jann" <Jann@discussions.microsoft.com> wrote in message news:B60FF11B-DD0F-47E5-AD50-5F8694858E7C@microsoft.com... 3 questions: 1. How do I identify incoming email before it's downloaded completely? ...
Show full article (1.40Kb) |
Re: ftcl
Group: comp.lang.fortran · Group Profile · Search for janne in comp.lang.fortran
Author: Janne Blomqvist
Date: Jul 3, 2008 08:49
... Â Â (procedure "findTcl" line 54) Â Â invoked from within "findTcl" Â Â (file "config.tcl" line 446) Oh, apart from this particular problem in the script, that means that your Linux distribution does not have the header file in the expected place. Can you find it manually? He probably just needs to install the package named "tcl-dev", "tcl-devel" or somesuch (depending on distro). -- Janne Blomqvist
Show full article (1.05Kb) |
Re: Garbage in dead zone
Group: comp.lang.fortran · Group Profile · Search for janne in comp.lang.fortran
Author: glen herrmannsfeldt
Date: May 31, 2008 16:12
Janne Blomqvist wrote: On 2008-05-31, James Van Buskirk wrote: "Align 80-bit data so that its base address is a multiple of sixteen." I'm quite sure it's not a question of "32-bit windows people" not being aware of processor optimization manuals. AFAIK the 32-bit x86 windows (and Linux and so forth) ABI dates back to the i386, when 4 byte alignment was enough, and hence 80-bit extended precision fp values were padded ...
Show full article (1.25Kb) |
Re: Garbage in dead zone
Group: comp.lang.fortran · Group Profile · Search for janne in comp.lang.fortran
Author: Janne Blomqvist
Date: May 31, 2008 15:04
... any benefit from bigger alignment. Changing the alignments would require changing the ABI, which would impose a rather high cost on everybody, and in the grand scheme of things relatively few applications would get any significant benefit from it. OTOH the x86_64 ABI:s are relatively new, and the designers of those did the obvious thing and chose alignments that better match the capabilities of modern hardware. -- Janne Blomqvist
Show full article (1.60Kb) |
Re: advance=no problem
Group: comp.lang.fortran · Group Profile · Search for janne in comp.lang.fortran
Author: Janne Blomqvist
Date: May 12, 2008 14:48
On 2008-05-12, glen herrmannsfeldt <gah@ugcs.caltech.edu> wrote: Janne Blomqvist wrote: On 2008-05-12, glen herrmannsfeldt <gah@ugcs.caltech.edu> wrote: The C/unix tradition is that terminal output (either stderr, or ... between access='stream' and access='sequential' is quite irrelevant, and the solution, like you and other posters already pointed out, is to flush the buffer after the write statement. -- Janne Blomqvist
Show full article (4.37Kb) |
Re: advance=no problem
Group: comp.lang.fortran · Group Profile · Search for janne in comp.lang.fortran
Author: glen herrmannsfeldt
Date: May 12, 2008 14:09
Janne Blomqvist wrote: On 2008-05-12, glen herrmannsfeldt <gah@ugcs.caltech.edu> wrote: The C/unix tradition is that terminal output (either stderr, or stdout not redirected to a file) is unbuffered. The output will appear immediately without the need for fflush(). When going to a file or even a pipe it is buffered and normally doesn't appear immediately. From the latest(?) ISO C draft (n1256.pdf), page 267: At ...
Show full article (2.38Kb) |
Re: advance=no problem
Group: comp.lang.fortran · Group Profile · Search for janne in comp.lang.fortran
Author: Janne Blomqvist
Date: May 12, 2008 13:55
.... I am pretty sure the Fortran standard doesn't require unbuffered (in the unix sense) output, but it might be considered a "quality of implementation" issue. Access='stream' is quite close to the C model (though for formatted I/O the distinction between sequential and stream goes into somewhat arcane details), and advance='no' provides a way to suppress the trailing newline after a read/write statement. -- Janne Blomqvist
Show full article (1.68Kb) |
Re: Are f.p. manipulation functions only used in initialization?
Group: comp.lang.fortran · Group Profile · Search for janne in comp.lang.fortran
Author: James Van Buskirk
Date: May 10, 2008 12:34
"Janne Blomqvist" <foo@bar.invalid> wrote in message news:slrng215gu.emj.foo@vipunen.hut.fi... On 2008-05-06, James Van Buskirk <not_valid@comcast.net> wrote: But I think MPFR is already being used and that's why the trailing digits of the decimal expansion are zeros. No, it was evaluated at runtime. That's also the reason why the testcase you gave that needed the result at compile time failed. You'll notice that I ...
Show full article (3.08Kb) |
|
|
|