Stories
Slash Boxes
Comments

News for nerds, stuff that matters

Slashdot Log In

Log In

Create Account  |  Retrieve Password

Intel Chief Evangelist Comments on Linux Scheduler

Posted by Zonk on Fri Sep 28, 2007 07:53 PM
from the little-penguins-everywhere dept.
ByeByeWintel writes "James Reinders is Intel's Chief Evangelist for Intel's Software Development Products. In a recent interview on Devx.com he stated: 'If I could get ONE wish fulfilled would be for OS scheduling to focus on processes, and not threads, for scheduling. And demand that processes manage their scheduling of threads ... There is a lot of opportunity for operating systems to offer these types of control in the 'running of applications' interfaces. I'd like an OS to let me specify the 'world' my application runs in (which processors, how many, etc.) These interfaces are available in Windows at run time (the task manager will let you adjust where a running task can go).'"
+ -
story

Related Stories

This discussion has been archived. No new comments can be posted.
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
 Full
 Abbreviated
 Hidden
More
Loading... please wait.
  • by User 956 (568564) on Friday September 28 2007, @07:58PM (#20790217) Homepage
    If I could get ONE wish fulfilled would be for OS scheduling to focus on processes, and not threads

    Yeah, a lot of us feel the same way about the fancy-dressing guys that work over in the sales office.
    • If I could get ONE wish fulfilled would be for OS scheduling to focus on processes, and not threads

      Yeah, a lot of us feel the same way about the fancy-dressing guys that work over in the sales office.

      If there ever was a case for a "+1 Brilliant" moderation option or a final moderation of (Score:6 Funny), this is it.
    • by JoelKatz (46478) on Saturday September 29 2007, @11:42PM (#20798869)
      Brilliant.

      The idea that the scheduler should focus on processes rather than threads is one of those well-known wrong ideas that comes up all the time. The thinking is that it doesn't make sense to give twice as much processing time to a process just because it uses two threads. The thing is, does it make sense to give a job twice as much processing time just because it uses two processes rather than two threads?

      There is no reason for the scheduler to treat a thread better or worse just because of which process it belongs to. There is simply no rational defense for this position.
  • I don't understand (Score:5, Informative)

    by Junta (36770) on Friday September 28 2007, @08:01PM (#20790235)

    I'd like an OS to let me specify the 'world' my application runs in (which processors, how many, etc.) These interfaces are available in Windows at run time (the task manager will let you adjust where a running task can go).'"
    Isn't this *exactly* what numactl gives you (hint, you don't have to run numa for numactly to allow processes to be bound to specific sets of processors).
    • Re: (Score:3, Interesting)

      Isn't this *exactly* what numactl gives you
      Well yes, exactly. numactl will do this. However his bone of contention appears to be that there is no pointy clicky interface a la Windows TaskManager to do this. So I'm slightly puzzled why he's making out that there is a deficiency in the OS when the fact is that it's purely a lack of features in the window manager...
      • While I don't dispute in any way what you say, I'd like to point out that 'numactl' is not the most obvious terminology for a feature that applies to all platforms, NUMA or not. If it really is so general purpose as to support what the Intel guy is talking about on all platforms, then it should either be renamed, or there should at least be another interface with a more approprate name whose implementation calls into the numactl interface.

        Obviously if what you say about numactl is true, then this Intel guy
        • Re: (Score:3, Insightful)

          Clearly, you expect too much from someone who's job title includes the word "Evangelist".
          • by Rogerborg (306625) on Saturday September 29 2007, @04:34AM (#20792251) Homepage

            Christ, yes. Propagandist is more accurate.

            Back in the Day, Microsoft's European DirectX 'evangelist' paid a visit to our game dev studio to try to sell us on the benefits of Direct X Retarded Mode [microsoft.com]. We had our engine running with D3DRM and Glide (I said, back in the Day), and the Glide framerate was easily twice that of D3DRM. He told us that that was impossible. We said "Look at the screen.". He literally refused to look. He just insisted that we were wrong, that there was no reason that D3DRM should be slower than Glide, and that we must therefore be doing something wrong. Did I mention that he wouldn't look at the screen?

            Needless to say, we didn't even offer him lunch.

    • Re: (Score:3, Insightful)

      I just hope the emphasis remains on a scheduler that "does the right thing" instead of requiring manual specification of these things to get acceptable performance for most situations. (I'm sure there are cases where manually pegging particular processes to particular CPUs is a good thing, but I can't think of any offhand).
  • So do it (Score:5, Insightful)

    by QuantumG (50515) <qg@biodome.org> on Friday September 28 2007, @08:02PM (#20790243) Homepage Journal
    I hear Intel has some engineers who you could get to implement this. If you don't completely botch it, you might even get it into Linus' tree.

    It's Free Software, you can add whatever you want.

    • Re:So do it (Score:5, Informative)

      by Anonymous Coward on Friday September 28 2007, @08:36PM (#20790507)
      Way ahead of you.

      $ sudo apt-get install schedutils
      ...
      Unpacking schedutils (from .../schedutils_1.5.0-1_amd64.deb) ...
      Setting up schedutils (1.5.0-1) ...

      $ man taskset | cat
      Reformatting taskset(1), please wait...
      TASKSET(1) Linux User's Manual TASKSET(1)

      NAME
      taskset - retrieve or set a processes's CPU affinity

      SYNOPSIS
      taskset [options] [mask | list ] [pid | command [arg]...]

      DESCRIPTION
      taskset is used to set or retrieve the CPU affinity of a running pro-
      cess given its PID or to launch a new COMMAND with a given CPU affin-
      ity. CPU affinity is a scheduler property that "bonds" a process to a
      given set of CPUs on the system. The Linux scheduler will honor the
      given CPU affinity and the process will not run on any other CPUs.
      Note that the Linux scheduler also supports natural CPU affinity: the
      scheduler attempts to keep processes on the same CPU as long as practi-
      cal for performance reasons. Therefore, forcing a specific CPU affin-
      ity is useful only in certain applications.

      The CPU affinity is represented as a bitmask, with the lowest order bit
      corresponding to the first logical CPU and the highest order bit corre-
      sponding to the last logical CPU. Not all CPUs may exist on a given
      system but a mask may specify more CPUs than are present. A retrieved
      mask will reflect only the bits that correspond to CPUs physically on
      the system. If an invalid mask is given (i.e., one that corresponds to
      no valid CPUs on the current system) an error is returned. The masks
      are typically given in hexadecimal. For example,

      0x00000001
      is processor #0

      0x00000003
      is processors #0 and #1

      0xFFFFFFFF
      is all processors (#0 through #31)

      When taskset returns, it is guaranteed that the given program has been
      scheduled to a legal CPU.

      OPTIONS
      -p, --pid
      operate on an existing PID and not launch a new task

      -c, --cpu-list
      specifiy a numerical list of processors instead of a bitmask.
      The list may contain multiple items, separated by comma, and
      ranges. For example, 0,5,7,9-11.

      -h, --help
      display usage information and exit

      -V, --version
      output version information and exit

      USAGE
      The default behavior is to run a new command with a given affinity
      mask:
      taskset [mask] -- [command] [arguments]

      You can also retrieve the CPU affinity of an existing task:
      taskset -p [pid]

      Or set it:
      taskset -p [mask] [pid]

      PERMISSIONS

      • Huh? What? Why?

      • Re:So do it (Score:5, Insightful)

        by teknognome (910243) on Friday September 28 2007, @08:31PM (#20790463)
        It's elitist and arrogant when directed at a regular user, but when it's directed at some official person of a company that does contribute to Linux projects, it's a bit different.
          • by xenocide2 (231786) on Friday September 28 2007, @09:55PM (#20790877) Homepage

            Either way is ok, there's nothing wrong with saying "We are all about DIY, if you aren't willing to do it, don't expect other people to), you just have to recognise that is a viewpoint inconsistent with "We believe this is something everyone could and should use."
            There's nothing necessarily incompatible with those viewpoints. The point isn't necessarily "write it yourself," but to take ownership of the need and get it done, perhaps by paying others. You can then go about writing to others and say "You should use this stuff, and we can help make it better for your needs." Its a silly belief that other people are going to fix your problem for free if you sit there wishing loud enough. Open source projects are truly successful not when you take responsibility for listening to what people want, but allowing the public to take ownership in the software that could address their needs.
            • by xenocide2 (231786) on Friday September 28 2007, @09:59PM (#20790889) Homepage
              I should point out that SGI has done exactly this: on behalf of their customers they go about fixing scalability problems in Linux. The results are quite interesting -- eight thousand CPU computers and the like. To give credit to the Evanglist, perhaps he was hoping coworkers and superiors at Intel would recognize the need and step up.
              • Re: (Score:3, Interesting)

                Yes, but if you have to pay someone to make the modifications you want done, and then pay them to maintain those modifications and to port them whenever something they interface with randomly changes, then you've got cost, probably quite substantial cost

                Yes. People, on a large scale, don't work for free. Especially talented ones capable of correctly implementing something like per-cpu scheduling hints. What you can do to minimize the cost is pay people to get it into upstream. Moreover, the source code availability in the first place vastly increases competition. It's much easier to patch linux than to design an operating system people want to run software on that also happens to provide scheduler tweaks you like. In the closed source system you're negot

          • Re: (Score:3, Insightful)

            Meh. I don't speak for anyone else. I speak for myself. I say if you have a need for feature X then add it. If you're not willing to invest the time (or money) to make feature X more than a "gee, I wish" request then you don't really have a *need* for it. As for this "We believe this is something everyone could and should use" crap, for a start, I don't speak for anyone but myself, and I think Free Software is something a lot of people can find a use for, and if you can't, then don't use it. If, howev
              • by QuantumG (50515) <qg@biodome.org> on Saturday September 29 2007, @02:41AM (#20791911) Homepage Journal
                Fair enough. If you try to switch to Linux and discover it doesn't have what you need then go back.

                As for considering people's ideas, yeah, great, developers do that, all the time. The problem is when the developer says "look, it won't work" and the people harp on about how right they are. That's often when the DIY attitude comes out, because nothing says "you were wrong" like running code.

          • by Rakishi (759894) on Saturday September 29 2007, @12:09AM (#20791423)

            Part of having a successful product is listening to what people want and working to implement that. Now maybe you think that the devs shouldn't care, that it should just be whatever it is and there shouldn't be any thought given to making it what people want, unless said person is willing to do that. Fair enough, that's a valid stance. However if you take that stance, then do go evangelising Linux as a replacement for Windows or an everyman's OS. Realise that if that is how things are to be done, it is a sysadmin/geek OS and will never be otherwise.
            So you mean that Microsoft will actually listen to every suggestion someone makes and consider implementing it?

            Either way is ok, there's nothing wrong with saying "We are all about DIY, if you aren't willing to do it, don't expect other people to), you just have to recognise that is a viewpoint inconsistent with "We believe this is something everyone could and should use."
            Why exactly? Every proprietary company pretty much says "we do this for money, if we don't want to implement it go fuck yourself."

            You expect every fucking suggestion to be implemented? If not then what DO you suggest? The developers simply say that they are going to do X, if you want to do Y then you need to do it yourself. You can't implement every bloody possible feature in the damn universe, which is apparently what you want. Instead they implement what they think meets their own goals. They claim that this is enough to work for everyone. It isn't perfect for everyone but NOTHING ever is, if someone wants a feature desperately they either need to implement it themselves or find someone else to do it.
          • Re: (Score:3, Insightful)

            >Sorry, but the "Do it yourself," attitude is just bad.

            It's great. That's what open source is all about.

            >Part of having a successful product is listening to what people want and working to implement that.

            Ah I see where you got confused.

            Linux is not a product. It's already successful.
      • So, you want something (that, btw, already exists in Linux) and you expect someone to come to your rescue and implement it for free.

        Come on... It's not that Linux users are elitist, arrogant bastards. It's that a lot of computer users never quite get that you cannot expect some software to form out of thin air. If you want something you can't do yourself, you may could and wait until someone who can do it also wants to do it. If you really need it, it would be best to pay someone to do it right away.
      • by Per Abrahamsen (1397) on Saturday September 29 2007, @02:50AM (#20791941) Homepage
        > And this, ladies and gentleman, is why all Linux users are perceived as elitist, arrogant bastards.

        You are right. The way free software works is that if you want something done, you either do it yourself, or you pay somebody to do it for you.

        Somehow, this has become at odds with mainstream society. People have come to expect that if you want something done, you whine about it for long enough, and someone else will do it for you.

        It is a society of builders and whiners.

        I know which side I'm on.
            • Re: (Score:3, Informative)

              He's an expert at (amonst other things) providing automatically optimised applicaton parallelisation in general, which as such is not available (I can know, I used to be a reaesrch team leader in a company that was working on it as well, but from a power management angle).

              What he said about OS-level schedulers is that he ideally wants them to behave in a specific way, without even saying that specifically Linux needs to be changed (again: there are hundreds of OS-es out there). He has not said that Linux

  • BAD headline (Score:4, Insightful)

    by rmdir -r * (716956) on Friday September 28 2007, @08:04PM (#20790261)
    Nowhere in the article does he /ever/ mention the Linux scheduler.

    Resume your regularly scheduled Con vs Ingo flamewar.

  • Oh, man (Score:5, Funny)

    by Anonymous Coward on Friday September 28 2007, @08:04PM (#20790263)
    I scheduled an interview with linux a while back. It was all like, "LINE UP", and I was like, "WUT?", and it was like, "What's your priority?", but I was all like, "interupt, bitch", and it was like, "cool, SWAP", and I was all like, "I'm in ur processor, executin' my code".
    • "I'm in ur cache, screwin up ur prefetsh algorythm"
    • Re: (Score:3, Funny)

      by Anonymous Coward
      How long have you been waiting for a story about process scheduling so that you could post that comment?
    • Re: (Score:3, Funny)

      Ahh, straight from the lolCPU pages of "I CAN HAS TIMEZLICE?".
  • I'd like an OS to let me specify the 'world' my application runs in (which processors, how many, etc.)
    Doesn't Solaris do this already?
    • I'd like an OS to let me specify the 'world' my application runs in (which processors, how many, etc.)
      Doesn't Solaris do this already?
      So does Linux, which makes his statement moot, and indicates he is an idiot or an asshat.
    • Re: (Score:3, Informative)

      Doesn't Solaris do this already?

      Yes, and has for at least a decade. As has SGI's IRIX and probably a lot of other operating systems. (Linux would be included in that list based on the comments here.)

        • Re: (Score:3, Informative)

          Sun junked this because it doesn't scale well when you get into hundreds of heavyweight processes and thousands of threads and/or LWPs.

          I think you are mistaken as to the reasoning. This model does scale well to large numbers of threads; much better than the 1:1 model. The problem is, C programmers don't write code that spawns thousands of threads, because C is not suited to concurrency. C programmers tend not to create more than a dozen or so threads, and so the added complexity of N:M is not needed because 1:1 can handle it well. Languages like Erlang (and, to a much lesser degree, Java), which do encourage high orders of parallelism

  • by MightyMartian (840721) on Friday September 28 2007, @08:22PM (#20790397) Journal
    And I'm gonna tell ya... I'm gonna tell all the people here-a, that the Lord has come... Amen! Yes indeed, and the Glorious Pentium IV has arrive-ed! Praise be to Pentium! And lo, the sheep of the field will line down-a with the process, and the thread-a will be managed by the application!

    Oh, don't be fooled by the Devil... No-a! AMD is the sign of the Beast-a! And he shall be cast out of heaven! Raise-a your hands to the heavens and press CTRL-ALT-DELETE!
  • Not only is it obvious that the submitter didn't read the article but by posting it its obvious that the 'editor' didn't either! Jebus! It's about a library template that Intel provides to developers! Linux gets a passing mention on the second page but other than that coincidence the writeup has nothing to do with the real article! And then there are people tagging the article as 'clueless' - I hope they meant the submitter because if they meant the article then ironically they would have been showing their own 'cluelessness'.
    This is the first time I've felt a need to complain about /.'s integrity btw even though I've seen more articles fly-by that shouldn't have over the years.
  • by EMB Numbers (934125) on Friday September 28 2007, @09:25PM (#20790735)
    I think that what Intel's Evangelist wants is already available through standard POSIX pthreads and the POSIX-RT extensions.

    man pset_create, pset_assign, or pset_bind.

    I just checked and it seems that Solaris, HP-UX support this POSIX feature. Maybe it's only Linux that is non-standard: I found ythis quote: http://developers.sun.com/solaris/articles/solaris_linux_app.html [sun.com]

    "Both Linux and the Solaris OS support the notion of binding a process or thread to a processor. Linux allows binding to a set of processors for non-exclusive use of those processors. The Solaris OS allows binding to a set of processors for exclusive use, (that is, CPU fencing), but does not allow binding to a group for non-exclusive use (except via Solaris Zones?). Linux does not have a mechanism for CPU fencing, though implementations can be found on the web (see, for example, the CPUSETS for Linux page on the bullopensource.org site). The Linux system calls that are processor affinity based are sched_setaffinity(2) and sched_getaffinity(2)."
  • by paulbd (118132) on Friday September 28 2007, @09:40PM (#20790805) Homepage

    what is being discussed is called "scheduler activations" within the CS community (or was). its an old idea. i did some work on a real-world (hah) implemention back in the early 1990's when i worked at UWashington. google it. Solaris actually added this design at least 10 years ago (plus or minus 2 years). its a very cool OS design, but can also be hard to get the implementation right; it also requires both kernel and userspace implementations.

    the basic idea is that the kernel doesn't try to decide which threads within a task/process should run. as long as the process is scheduled to have access to a CPU, whenever its about to block (e.g. on disk i/o) or to be granted a processor from another task, the kernel tells the user space scheduler what is going on. scheduling is then done in user space, where maximal knowledge about the applications internal design and thread priorities can be easily accessed.

    there are several papers on this design, ranging from Tom Anderson's "original" through reports on various implementation efforts. it was certainly fun trying to write a user space context switch routine that has to be reentrant itself, not to mention trying to deal with priority inversion issues. i think sun simply worked around the latter problem with some design assumptions/limitations, but i don't know for sure.

    • it was certainly fun trying to write a user space context switch routine that has to be reentrant itself, not to mention trying to deal with priority inversion issues

      I haven't worked in that field in some number of decades, but I'm going to have nightmares because of that phrase. You heartless Bastard, at least warn us that the path to madness lies within your post.

      the AC
      sits here rocking back and forth, afraid to google what Tom Anderson's later works covered, but knowing I'm about to lose my weekend to this

      • Re: (Score:3, Informative)

        If you want to play with a modern OS that does this, take a look at NetBSD. It uses an N:M threading model (scheduler activations), where each process gets one kernel thread per physical CPU, and multiplexes them by scheduling activations from the kernel and doing the multiplexing in userspace.
  • by snowwrestler (896305) on Saturday September 29 2007, @10:00AM (#20793415)
    If I had one wish that I could wish this holiday season, it would be for all the children of the world to join hands and sing together in the spirit of harmony and peace.

    If I had two wishes that I could wish for this holiday season, the first would be for all the children of the world to join hands and sing in the spirit of harmony and peace.. and the second would be for $30 million a month to be given to me, tax-free in a Swiss bank account.

    You know, if I had three wishes that I could make this holiday season, first, of course, would be for all the children to get together and sing . . . the second would be for the $30 million every month to me . . . and the third would be for all encompassing power over every living being thing in the entire universe.

    And if I had four wishes that I could make this holiday season, first would be the crap about the kids . . . second would be for the $30 million . . . the third would be for all the power.. and the fourth would be to set aside one month each year for an extended 31-day orgasm, to be brought about slowly by Rosanna Arquette and that model Paulina somebody, I can't think of her name, of course my lovely wife could come, too. She's behind me 100% on this, I guarantee you.

    Wait a minute, maybe that sex thing should be the first wish! So, if I made that the first wish, because, you know, it could all go boom tomorrow, and then what have you got? No, no . . . the kids singing would be great, that would be nice. No, no, who am I kidding! I mean, they're not gonna be able to get all those kids together! I mean, the logistics of the thing is impossible! It's more trouble than it's worth!

    So, we reorganize: here we go. First, the sex - we go with that; second, the money. No! We go with the power second, then the money, and then the kids. Oh, wait, oh geez! I forgot about revenge against my enemies! Okay . . . revenge against all my enemies, they should die like pigs in Hell! That would be the fourth wish! And of course, my fifth wish would be for all the children of the world to join hands and sing in the spirit of peace and harmony.

    Thank you, everybody.
    • Re:Puh-leeeeze! (Score:4, Insightful)

      by Somegeek (624100) on Friday September 28 2007, @08:09PM (#20790309)
      An 'Evangelist' is this instance is someone who is a promoter, not a follower. So you are wrong on that count as well as the already noted 'site' 'sight' thing. You might want to steer away from criticizing others for a while...
    • Re:Puh-leeeeze! (Score:5, Informative)

      by jcr (53032) <jcr@ma[ ]om ['c.c' in gap]> on Friday September 28 2007, @09:23PM (#20790729) Journal
      First of all, any job with the word 'evangelist' directly implies 'highly paid fanboy.'

      I worked with the Evangelists in Apple Developer Relations, and my direct personal experience tells me that you're full of shit.

      Apple's Technology Evangelists are some of the most talented technical marketing professionals I've ever met, and now that I'm an outside developer, they do a great job for me pulling the levers and turning the gears that I need to get my products out the door, connecting our company with customer prospects, and finding and introducing us to other companies that we can collaborate with. I'd hire any of those guys in a heartbeat for either a development or a marketing position, if I could get them out of Apple.

      -jcr

      • by macshit (157376) <miles@@@gnu...org> on Friday September 28 2007, @09:42PM (#20790821) Homepage
        Apple's Technology Evangelists are some of the most talented technical marketing professionals I've ever met

        Wait a minute, is that a compliment or an insult?!?
      • Re: (Score:3, Interesting)

        I worked with the Evangelists in Apple Developer Relations, and my direct personal experience tells me that you're full of shit.

        No, he's not. The fact that some of those you've met were good does not mean it does not imply 'highly paid fanboy'. Or maybe you were questioning the 'highly paid' part :).

        For balance, the only Apple Evangelist I ever had experience with was a Quickdraw 3D Evangelist. He was a clueless idiot. I asked him how they addressed the performance issue caused by QD3D lighting only working with full RGB, whereas DirectX supported a ramp mode for significant performance increase. He didn't have a fecking cl

    • Oh, until the second page, which I didn't see.
    • Re:Hello?? (Score:4, Insightful)

      by phoenixwade (997892) on Friday September 28 2007, @08:46PM (#20790577) Homepage

      The word Linux doesn't even appear anywhere in that entire article.
      Yeah, it does, almost to the end of the article... on Page - 2. But that is irrelevant. Yet another summary that has little or nothing to do with the article, Which actually focuses on Intels Threaded Building Blocks. I really hate misleading summaries. I know that some have issues with the signal to noise ratio of "news" to marketing or old news, but really, a good summary means you could, at least, skip over the stuff you didn't want to read....