Search:

Type: Posts; User: rafe

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,418

    This is one area where I prefer c++ over c. SEH...

    This is one area where I prefer c++ over c. SEH is easier to deal with there with their exception throwing.

    In c (I'm a newbie too) I've used 4 methods that I don't really like too much so I'm all...
  2. Replies
    55
    Views
    190,613

    Sticky: No point in arguing any more... Some people drank...

    No point in arguing any more... Some people drank the cool-aid and some people didn't.:p
  3. Replies
    55
    Views
    190,613

    Sticky: 1) choose a good algorithm 2) make the code work...

    1) choose a good algorithm
    2) make the code work while keeping it readable/maintainable
    3) tune it by making it faster or smaller or whatever in the tight spots. One should consider this step all...
  4. Replies
    55
    Views
    190,613

    Sticky: It's a matter of opinion as to which is more...

    It's a matter of opinion as to which is more readable. In the contrived examples given you don't see what can happen when you nest nest nest... ad nauseum. Over nesting also makes things very hard to...
  5. Replies
    55
    Views
    190,613

    Sticky: [flame=on] very old debate. Dijkstra, Hoare, &...

    [flame=on]
    very old debate. Dijkstra, Hoare, & Wirth trot this old nonsense out every few years. And It's spouted by academics who tire of teaching comp sci 101 students the art (yes art!) of...
  6. Replies
    12
    Views
    10,521

    The section in the doc just before the one we...

    The section in the doc just before the one we were using:
    http://gcc.gnu.org/onlinedocs/gcc-3.2/gcc/Explicit-Reg-Vars.html#Explicit%20Reg%20Var

    Maybe we shouln't go down this rabbit hole just yet...
  7. Replies
    12
    Views
    10,521

    Sargnagel, Would you please do me the favor of...

    Sargnagel,

    Would you please do me the favor of letting me know if you get any speedup using these functions? Or how much into register manipulations you had to get to realize the speedup?

    This...
  8. Replies
    12
    Views
    10,521

    Grrr! this was a bear to figure out! Short...

    Grrr! this was a bear to figure out! Short answer: YOU didn't do anything wrong, this is a gcc snafu.

    Apparently GCC doesn't always align vars in main BUT is does align them in other functions....
  9. Replies
    12
    Views
    10,521

    You're welcome. && Just to drive the point home...

    You're welcome. && Just to drive the point home to others not as motivated as you.

    Now I'm going to look at how to get the mmx registers worked the way I want. I'm not allowed to use assembly...
  10. Replies
    12
    Views
    10,521

    Useful info! After some playing around......

    Useful info! After some playing around...
    compiled with "gcc -mmmx myprog.c"



    #include <stdlib.h>

    typedef int di __attribute__ ((mode(DI)));
    union {
    di xx;
  11. Replies
    5
    Views
    1,127

    Well, I'm always looking for a way to be a lazier...

    Well, I'm always looking for a way to be a lazier programer (-; So if you have a particular suggestion I'll give it a whorl.

    BTW: Linux/gcc and the command line is:
    gcc -lm -o calc calc.c &&...
  12. Replies
    5
    Views
    1,127

    Got it. Thanks to both. Yea, it's big struct......

    Got it. Thanks to both. Yea, it's big struct... so much for being lazy.

    FYI "ulimit -s" gives "unlimited". But your explainations seem more on target than this bash nonsense.
  13. Replies
    4
    Views
    5,459

    Goggle gave me this......

    Goggle gave me this...
    http://docs.freebsd.org/mail/archive/2001/freebsd-audit/20011014.freebsd-audit.html

    Not a regular libc function yet.
  14. Replies
    5
    Views
    1,127

    More experiments. Curiouser... I can move this...

    More experiments. Curiouser...

    I can move this inside the routine & it works

    double Mat1[20][20] = { /* Constant values go here */ };
    But not...

    double Mat[512][20][20];

    Which means...
  15. Replies
    5
    Views
    1,127

    Global vs Local gives different results.

    Riddle me this...

    Using gcc I have a setup routine that I'm building up. I'm calculating a 3D array of doubles, an array of matrices if you will. If I put the arrays on the stack the program goes...
  16. Replies
    3
    Views
    1,038

    *sigh* Another very heavy & clumsy api. From...

    *sigh* Another very heavy & clumsy api. From personal experience, it works OK; or more to the point it's slow & clunky but fairly solid. Like a diesel Volvo going up hill on a cold day. On the...
  17. Thread: Ndbm?

    by rafe
    Replies
    1
    Views
    1,363

    Well gdbm is the gnu version. Tho, I guess it's...

    Well gdbm is the gnu version. Tho, I guess it's six in one hand... What do you plan to do with the the db?

    [Warning: Prefix all of this with IIRC]

    The libs have their uses but they're more for...
  18. Replies
    9
    Views
    2,835

    > Well they will be data aligned for sure - >...

    > Well they will be data aligned for sure -
    > meaning you can store a data type with the
    > most restrictive type (usually a double) at
    > the address returned to you.
    Yup, my tests confirm that I...
  19. Replies
    9
    Views
    2,835

    A few more source code tweaks & the user time is...

    A few more source code tweaks & the user time is now at 0m31.610s. I'm only posting this because those same tweaks with the -mcpu vs -march switch were actually *slowing down* the times. This was...
  20. Replies
    9
    Views
    2,835

    Nix that! Whoa! User time dropped from 0m48.910s...

    Nix that! Whoa! User time dropped from 0m48.910s to 0m37.400s.

    Great catch!:D :D :D :D :D
  21. Replies
    9
    Views
    2,835

    No. While reading the man pages on gcc I read: ...

    No. While reading the man pages on gcc I read:
    So, your hypothesis is that -mtune could have a negative effect on speed? I didn't think of that & seeing how the other options can have a negative...
  22. Thread: Assembler in GCC

    by rafe
    Replies
    4
    Views
    2,359

    make that... http://linuxassembly.org/ Also...

    make that... http://linuxassembly.org/

    Also look at the on-line book "Advanced Linux Programming", a PDF download. Chapter 9 covers gcc inline assembly particulars. Not in a lot of depth but enuf...
  23. Replies
    9
    Views
    2,835

    for the morbidly curious only

    I know that program optimization can be fickle. But I'm trying to learn what I can about gcc switches & I figured I'd share my findings. It is odd to see how many of the switches slow things down,...
  24. Replies
    9
    Views
    2,835

    A few extra ticks thanks. Given how heavily this...

    A few extra ticks thanks. Given how heavily this program will be hit in the next few months the difference *IS* significant.

    When I use "-O3 -fomit-frame-pointer" the times cluster near:
    real ...
  25. Replies
    9
    Views
    2,835

    Thanks! I'm currently using gcc 3.2 so it has the...

    Thanks! I'm currently using gcc 3.2 so it has the Athlon switches. I'll experiment & time against my prog.
Results 1 to 25 of 46
Page 1 of 2 1 2