Results 1 to 4 of 4

Thread: Multi-core Development is One Step Closer to Being Required

  1. #1

    Thread Starter
    ex-Administrator brad jones's Avatar
    Join Date
    Nov 2002
    Location
    Indianapolis
    Posts
    6,614

    Multi-core Development is One Step Closer to Being Required

    In my last blog entry, I mentioned Intel's futuristic 48-core chip. That is a long-term look that might cause you to believe you still have time to wait before considering multicore issues in your applications. If you are not considering multiple cores today, when developing your applications, then you are falling behind. While tapping the power of multi-core applications isn't critical in a dual core world, quad-cores are starting to make inroads into the market place and early next year you'll see the number of six core systems start increasing. Just as the release of quad-core systems pushed dual core to the mainstream. We should be able to expect six core systems to push quad-core mainstream.

    Specifically, according to ChannelWeb, Intel leaked a document that indicated that they will be releasing thirteen different processors on March 16th of 2010. This includes seven quad-core processors and six new six core processors. The six core processors will be running between 2.26GHz and 3.33GHz. The seven 32nm, quad-core processors will operate between 2.13GHz and 3.46GHz.

    Also on the leaked list were three other processors, of which one was dual core.

    Multicore chips are no longer the future. They are here. Are you coding for them?



    More...
    Have you given out your reputation points today? Select the Rate This Post link to give points for good posts!
    -------------------------------------------------------------
    Brad! Jones
    Lots of Software, LLC
    (I wrote: C Programming in One Hour a Day) (Dad Jokes Book) (Follow me on Twitter)

    --------------------------------------------------------------

  2. #2
    PowerPoster dilettante's Avatar
    Join Date
    Feb 2006
    Posts
    24,487

    Re: Multi-core Development is One Step Closer to Being Required

    I still feel that except for certain classes of problems this whole topic is a red herring - a solution in search of a problem.

    Most of the time on a desktop system you don't want one program to soak up every cycle available in the machine. There are a multitude of background housekeeping functions you want to have running without starvation. Many of us are performing a foreground task of some sort while we run application services, multimedia applications, etc. in the background as well.

    When it comes to servers there are better ways to exploit multiple execution units than having application code spread itself across the "farm." Most application services can manage this for you where it is needed, whether we're talking about IIS, SQL Server, general application components managed by COM+, or anything else of this nature.

    Letting Mort use multithreading in a gratuitious manner is probably just asking for trouble in most cases. While some of the stuff in recent versions of .Net helps manage concurrency without the gross errors Joe .Net typically makes multithreading by hand... there is still significant overhead involved in coordinating and synchronizing the threads.

  3. #3
    PowerPoster JuggaloBrotha's Avatar
    Join Date
    Sep 2005
    Location
    Lansing, MI; USA
    Posts
    4,286

    Re: Multi-core Development is One Step Closer to Being Required

    I personally only ever need to spin off 1 thread other than the UI thread, so at most a dual core system has enough cpu cycles to complete the task(s) lightning fast. Also the 1 other thread I launch, usually does File IO operations, so it's up to the speed of the HDD, etc that really matters not raw CPU horsepower.
    Currently using VS 2015 Enterprise on Win10 Enterprise x64.

    CodeBank: All ThreadsColors ComboBoxFading & Gradient FormMoveItemListBox/MoveItemListViewMultilineListBoxMenuButtonToolStripCheckBoxStart with Windows

  4. #4
    PowerPoster Jenner's Avatar
    Join Date
    Jan 2008
    Location
    Mentor, OH
    Posts
    3,712

    Re: Multi-core Development is One Step Closer to Being Required

    I admit, there are places I can use the horsepower to parallelize loops that are creating objects and in the end, adding those objects to a collection; but the only "slow" parts of my programs are when I'm dealing with Crystal Reports and it has to paginate a 250 page report.

    As far as threading goes, I consider myself a blackbelt at this point. I use background threads to grab and fill data and control secondary machine processes.

    If anything can use a multithreaded kick in the pants, it's: DataAdapter.Fill(DataSet).

    Depending on the amount of data you have, this one can be painful.
    Last edited by Jenner; Dec 16th, 2009 at 04:39 PM.
    My CodeBank Submissions: TETRIS using VB.NET2010 and XNA4.0, Strong Encryption Class, Hardware ID Information Class, Generic .NET Data Provider Class, Lambda Function Example, Lat/Long to UTM Conversion Class, Audio Class using BASS.DLL

    Remember to RATE the people who helped you and mark your forum RESOLVED when you're done!

    "Two things are infinite: the universe and human stupidity; and I'm not sure about the universe. "
    - Albert Einstein

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