CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 13 of 13

Threaded View

  1. #6
    Lindley is offline Elite Member Power Poster
    Join Date
    Oct 2007
    Location
    Seattle, WA
    Posts
    10,895

    Re: Optimizing string concatenation and integer to string conversion

    PMs must be disabled by default, I never touched that setting. Rather silly board setting, but whatever.

    The GPU thing was just one example of how speed can be a design concern early on. Perhaps a more relevant one is big-oh running time of the selected algorithms. And perhaps "design" isn't even the right word.....I'm not talking high-level conceptual stuff. I'm talking about the thought process prior to writing an implementation.

    Oh, and for the record GPUs can handle running multiple programs at once, although there can be major slowdowns if you exceed the available memory (of course) or simply if there are frequent context switches.
    Last edited by Lindley; April 26th, 2008 at 09:09 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured