Slashdot Mirror


Intel Sued Over Core 2 Duo Patent Infringement

An anonymous reader writes "It looks like Intel is being sued over a patent infringement alleged to be in the Core 2 Duo microprocessor design. 'The Wisconsin Alumni Research Foundation (WARF) is charging Intel Corporation with patent infringement of a University of Wisconsin-Madison invention that significantly improves the efficiency and speed of computer processing. The foundation's complaint identifies the Intel CoreTM 2 Duo microarchitecture as infringing WARF's United States Patent No. 5,781,752, entitled "Table Based Data Speculation Circuit for Parallel Processing Computer." WARF contacted Intel in 2001, and made repeated attempts, including meeting face-to-face with company representatives, to offer legal licensing opportunities for the technology.' The text of the complaint [PDF] is also available via WARF's site."

58 of 216 comments (clear)

  1. Eat any good books lately? by Dachannien · · Score: 4, Funny

    I feel strangely compelled to say: "Captain, I protest! I am not a merry man!"

  2. Huh? by jdigriz · · Score: 5, Funny

    What has the Son of Mog done this time?

    1. Re:Huh? by dgatwood · · Score: 2, Funny

      No, that's Barf, short for Barfolomew. He's a mog. Half man, half dog.

      --

      Check out my sci-fi/humor trilogy at PatriotsBooks.

  3. Not a Troll then? by erroneus · · Score: 5, Insightful

    I have been slashdot conditioned to think that every patent suit is a patent troll trying to collect on obvious ideas from big companies. But from the background on the story, it would seem that this is not the case and that it has been on-going since 2001. That's a very long time to mess around before resorting to a law suit. How long does a patent last?

    1. Re:Not a Troll then? by milsoRgen · · Score: 4, Insightful

      "We are disappointed with Intel's lack of response in resolving this matter, and while we were not anxious to use the courts to enforce our patent rights, we have no other recourse given our duty to protect the intellectual property of our inventors and the university." It also says that the patent was granted in '98, so I think they (WARF) were being pretty fair about things thus far.
      --
      I'm sick of following my dreams. I'm just going to ask where they're goin' and hook up with 'em later.
    2. Re:Not a Troll then? by Otter · · Score: 2, Informative
      It's probably not a good idea to generalize about any subject from stories that get posted here, but while WARF is certainly not a "patent troll" by the proper definition of the term, they are extremely aggressive about broadly enforcing their stem cell patents, and it wouldn't surprise me if this is more of the same.

      Actually, I'm curious why the only two coherent posts at the time of this writing are jumping to the defense of this patent; one of them noting that he hasn't read the link but that nonetheless "it sounds like this patent might actually be a reasonable one". Normally everyone would be jumping in with thoughts like "Isn't a washing machine prior art?"

    3. Re:Not a Troll then? by iamhassi · · Score: 2, Interesting

      "It also says that the patent was granted in '98, so I think they (WARF) were being pretty fair about things thus far."

      And let's not forget it's extremely expensive to file lawsuits. If anything it's in the best interest of the patent holder to come to some agreement rather than go to court. Sure they'll get their court costs back if they win, but who can afford to drop tens of thousands of dollars over the course of a few years?

      Trust me, unless they're incredibly wealthy no one wants to go to court, especially against someone with $$$$. I've filed lawsuits and even when what they did is obviously illegal and I'll easily win in court I still have to decide if it's worth paying thousands of dollars in attorney fees and court costs over the course of a few months just to get several thousand back in the end. They really need to up small claims to $10,000+ because everything seems to be over 3 grand now days.

      --
      my karma will be here long after I'm gone
    4. Re:Not a Troll then? by eabrek · · Score: 3, Informative

      How fair is it to demand money for something you didn't contribute to?

      Disclaimer: I used to work for Intel, and I'm familiar with a lot of the CS/CA people at Madison. I also own Intel stock, and am not looking forward to another $500 million payout to lawyers.

      The memory disambiguation table is a variant on a branch predictor (I'm not going to give the exact Intel algorithm). It's obvious. The only reason no one has done it before is that the benefits didn't outweigh the implementation (and especially, validation) costs. Core 2 is a big enough machine that it's worthwhile.

      The sad thing is that Intel has paid a lot of money into Madison. It's a good source for computer architecture interns and graduating PhD's. Most of the profs aren't happy about having to patent their stuff. I doubt they're any happier about university lawyers attacking their patron.

    5. Re:Not a Troll then? by gnasher719 · · Score: 2, Interesting

      The memory disambiguation table is a variant on a branch predictor (I'm not going to give the exact Intel algorithm). It's obvious. The only reason no one has done it before is that the benefits didn't outweigh the implementation (and especially, validation) costs. Core 2 is a big enough machine that it's worthwhile.

      Here is how I understand what Intel does from the publicly available description: The processor often encounters load instructions, where the memory in question may or may not have been modified by a previous write instruction. (The "may or may not" case happens when a previous store instruction has not finished calculating its address yet. The case that the processor _knows_ the data has been modified is something entirely different). This situation happens quite often, and quite often the store instruction did _not_ modify the data at the load address.

      In this situation, the processor cannot just execute the instruction. It can use out-of-order execution, delaying the load instruction, but out-of-order execution has its hands full with _real_ dependencies and it would help if it didn't have to bother with possible dependencies that don't actually happen. Therefore Intel allows the processor to continue with conditional execution.

      The text of the patent covers a lot about how to recover from wrong speculative execution, but this is no problem at all. All the hardware for that is available already because of branch prediction. With branch prediction, the processor has to keep track of speculatively executed instructions, undo them if necessary, and continue execution at a different program counter (in case of a branch through a jump table where the destination is predicted incorrectly, restart execution at the jump instruction. In case of a conditional branch predicted to be taken incorrectly, continue after the branch instruction. In this case, continue with the load instruction). So half of the patent isn't infringed upon at all.

      The patent also seems to suggest that one should look at the store instructions to make a decision whether to speculatively execute the load or to wait. It doesn't look to me like Intel is doing this. It seems that load instructions that are ready to execute except for store/load hazards are classified as: Safe to execute, known not safe, unknown. "Safe to execute" executes. "Known not safe" doesn't execute. "Not known" can use mostly the same mechanism as branch prediction. I would probably try to actually use the same hardware as for branch prediction. That would trivially allow multi-level approaches (for example, loading a [i] can execute if a previous branch around a statement "if (...) a [i] = x" was executed, and mustn't execute if the branch was not executed. Branch prediction does that kind of thing already, so that would come for free.

      The only thing that has to be changed is the mechanism that marks a prediction as correct or false. Usually that is a compare instruction setting some condition codes, here it is an instruction calculating the address of a store instruction.

      Now I cannot decide if what they have patented is obvious or not. However, the mechanism that I have described here _is_ obvious as shown by the fact that I, a programmer and not a hardware designer, and therefore not an expert in the field, can describe it. If what Intel does is what I have described then what they do is obvious.

      I'll mention a different invention that is just a tiny invention, obvious _after_ you read it and patented (but not obvious _before_ you read it): Branch prediction predicts whether a branch is taken or not. It uses tables, and tables run out of space. When that happens, a branch will use a prediction that was actually intended for a different branch instruction - with not very good results. To improve this, you do a (trivial) static prediction. Then you don't store in your tables whether the branch is taken or not, you store whether it matches the static prediction or not. Quite often (80%

  4. Re:Could this one be legit? by brian0918 · · Score: 4, Insightful

    "For once, might the patent system actually be doing what it's supposed to?"

    Clearly not, if these people had to fight Intel for 7 years and still haven't gotten a cent for licensing.

  5. I don't get it by $RANDOMLUSER · · Score: 2, Insightful

    I read the complaint, and went through the patent. I didn't see any circuit diagrams, just some flowcharts and a lot of descriptions of them. It seems to me there's a vast difference between patenting a flowchart and building a circuit in silicon - but that's just me. I'm gonna chalk this up as a patent troll on an idea - not an invention.

    --
    No folly is more costly than the folly of intolerant idealism. - Winston Churchill
    1. Re:I don't get it by 93+Escort+Wagon · · Score: 4, Funny

      I read the complaint, and went through the patent. I didn't see any circuit diagrams, just some flowcharts and a lot of descriptions of them. It seems to me there's a vast difference between patenting a flowchart and building a circuit in silicon - but that's just me. Well, you see, the lawsuit is against an Intel executive's Powerpoint presentation covering the Core 2 Duo - not the actual chip design.
      --
      #DeleteChrome
    2. Re:I don't get it by bunratty · · Score: 4, Informative

      An idea can be an invention. An invention is an object, process, or technique which displays an element of novelty. This looks like a technique for building faster processors, and thus is an invention. It also looks like it is far from obvious, and took considerable research to invent. Those researchers made money, so why not let them license their technology to other companies so they can make money to do more research?

      --
      What a fool believes, he sees, no wise man has the power to reason away.
    3. Re:I don't get it by KDR_11k · · Score: 2, Insightful

      Maybe it's not a patent of a low-level piece of hardware? Hardware development these days happens a lot in high-level languages, just like other programming so a low-level implementation may not be of any real use, depending on how high-level this optimization is. In other words, it's like demanding a binary (or assembly code) for an algorithm, not gonna be pretty.

      --
      Justice is the sheep getting arrested while an impartial judge declares the vote void.
    4. Re:I don't get it by stevesliva · · Score: 2, Informative

      I didn't see any circuit diagrams, just some flowcharts and a lot of descriptions of them. It seems to me there's a vast difference between patenting a flowchart and building a circuit in silicon
      The invention is the idea, so a flowchart works. The requirement is that you've "reduced the idea to practice." So in this case a logic circuit simulation (not hardware) or more abstract behavioral simulation would be sufficient.

      So basically to patent an idea, you should demonstrate that it will work, not that you can make it yourself. If you thought of it first and wanted to patent a Dyson Sphere, you could, even though no one will be making one any time soon. I'm sure many patents have preceeded prototypes.
      --
      Who do you get to be an expert to tell you something's not obvious? The least insightful person you can find? -J Roberts
    5. Re:I don't get it by kent.dickey · · Score: 4, Informative

      I only briefly read the patent (due to triple damages for knowingly infringing a patent, it's best to not read any patents ever), and although it's not a typical troll, it has the problem of most patents--it's not that special of an idea.

      I worked with the HP PA8000 processor since around 1994. It was an out-of-order CPU, meaning it would execute past cache misses or other long delays to find future instructions which it could do now to save time later. The big win for out-of-order is that it can start cache misses for future work early, acting as a prefetch to bring data into the cache.

      Unfortunately, sometimes bad speculation can cause a loop of instructions to result in future instructions causing misses that won't be needed, or other bad effects like starting a divide, and blocking the divide unit for a long time for a divide that won't be used. Recovering from this bad speculation takes time and so it's a performance loss. These are second-order effects--the out-of-order is a big enough win that it almost always outweighs any drawbacks.

      All current major CPU designs use out-of-order execution, so everyone's aware of these issues now. I remember at the time looking at a bus trace of some code running on the PA8000 and remarking to the CPU designers at HP that they could improve performance by trying to avoid mis-speculating over and over. At that time, it wasn't worth the silicon space to try to fix it. I'm saying this to show it's obvious speculation can cause some performance issues.

      And this is the problem with patents--technology changed so that now it's worth it to spend silicon to fix this problem, to eek out another 1-2% performance. And once it's been decided to fix it, there are some obvious ideas. Like modify the branch prediction hardware to add some state to track that a branch is not being predicted well, to tone down execution after that branch. Or doing whatever it is this patent says to do.

      But since academic research often doesn't concern itself with practicalities as silicon real estate, it doesn't surprise me that some university has looked into this problem before Intel. And patents are a way to show you're doing research. However, ask 10 CPU designers how to fix bad speculation, and I would be surprised if several of them didn't give an idea that would infringe on this patent. So is the patent really novel or non-obvious? (I'm aware of the legal definition of obvious, which almost always makes any patent legally non-obvious).

      However, I don't necessarily have much sympathy for Intel since they use patents to bar competitors from directly interfacing with their chips. If you control a bus specification, you can add an oddball design quirk, patent it, and thereby block competitors from using your bus. I tried to find the patent for "Intel burst order", but couldn't find it in a few minutes of trying.

      Intel is probably a good target to sue for patent infringement because they rely on patents and so are less likely to want to set any precedents weakening their own patents. Generally, they go for cross-licensing, which won't make much sense in this case, though.

    6. Re:I don't get it by kent.dickey · · Score: 2, Insightful

      Assuming this is an honest question, when placed under oath, you are supposed to tell the truth, not just what you know the other lawyers can prove.

      If someone believes otherwise, you probably already know which technology companies you'd feel right at home at.

      A more funny response would be to pick up a phone and over the dialtone shout and ask the NSA for my web browsing history. I didn't just give that answer since I'm annoyed at how many people seem to think lying and cheating are OK.

  6. The way I see it by Butisol · · Score: 2, Funny

    Intel is like, "No I will not make out with you! Did ya hear that? WARF wants to make out with me in the middle of a die shrink. You got Table Based Data Speculation Circuit for Parallel Processing Computer Man up there talking about God knows what and all WARF can talk about is making out with me. I'm here to make Core 2 Duos, everybody, not to make out with you. Go on with the patent."

  7. The Final Frontier by digitalderbs · · Score: 4, Funny

    Whoever says that Klingons can't resolve things in a civilized manner are clearly wrong.

  8. Universities Are Good (Sometimes) by eldavojohn · · Score: 5, Insightful

    Well, I've noticed that when it's an educational institution, then it's not a troll. Filed by a lawyer in Marshall, Texas means troll for sure though. These rules are weird. I guess it all depends on your point of view.

    Although, you should note that a couple decades ago, universities were not well funded so some senators passed a bill that would allow them to keep patents. Why not, they do the research? Today, universities are still building those portfolios. So the joke is kind of on the companies. If they were smart, they should have been dumping millions into universities in the form of donations to keep patents in the corporate sector.

    You can bet that as you start to see what was once cutting edge theory be implemented the universities will have the last laugh and hopefully the most cash. Personally, I wouldn't mind seeing it any other way but I'm still paying off my college loans. It would make me a happy man to see an HD DVD/Blu Ray player cost $100 more while poor people can go to college for virtually free. But I think a lot of people would call me some sort of communist for that and that I'd be stagnating the economy or some such theory that I can't comprehend. Regardless, I'd be willing to buy shares in certain universities if I could. Imagine what those portfolios are going to start to bring in in revenue!

    --
    My work here is dung.
    1. Re:Universities Are Good (Sometimes) by evanbd · · Score: 2, Interesting

      Just because it's not a troll doesn't mean it's a good patent. It may be that the solution is obvious to one "skilled in the art" even though no one seriously considered the problem before. Just because the university thought of it first doesn't mean it's a good patent.

      Of course, I haven't looked at the details of the patent or the case. It may well be a blatant attempt by Intel to rip off a clever idea from the university. My guess is that reality is somewhere in between...

    2. Re:Universities Are Good (Sometimes) by dgatwood · · Score: 2, Insightful

      The way I see it, if you offer to license a technology and then five years later, the company starts using that technology in a new design without licensing it, chances are, the person who holds the patent is not a patent troll. Patent trolls patent something obvious, wait in silence for somebody to do what is covered by their patent, then offer to license and/or sue. If they're offering to license it before the company they're trying to license it to thinks of the idea, unless the idea is fairly trivial, they aren't trolls....

      --

      Check out my sci-fi/humor trilogy at PatriotsBooks.

    3. Re:Universities Are Good (Sometimes) by Penguinisto · · Score: 2, Interesting

      W You can bet that as you start to see what was once cutting edge theory be implemented the universities will have the last laugh and hopefully the most cash. Personally, I wouldn't mind seeing it any other way but I'm still paying off my college loans. It would make me a happy man to see an HD DVD/Blu Ray player cost $100 more while poor people can go to college for virtually free.

      As someone who once was a collegiate instructor and employee, I can say for certain that no self-respecting board-of-regents-member college would even think of lowering tuition, for any reason. Scholarships, sure... as long as the money comes out of somebody else's wallet. Student financial aid? Again, they love it - but on the same premise as Scholarships. Work-Study programs? Okay, but it's the equivalent of getting offshore-priced labor on their part.

      No, my friend... no way in Hell you'd ever see a Uni drop tuition pricing in response to a flush of patent-money. They'd rather spend the dough on a new football stadium, or on perks for the tenured and administration.

      The one and only condition that would see a tuition price drop is in response to a drop in head-count, or in response to any new competition (e.g. University of Phoenix opening a new campus in the same town or city...)

      /P

      --
      Quo usque tandem abutere, Nimbus, patientia nostra?
    4. Re:Universities Are Good (Sometimes) by arcanelogic · · Score: 5, Interesting

      I happen to recognize two of the patent owners: Andreas Moshovos and Gurindar Sohi. Guri in particular is an established member of the Computer Architecture research community. He's worked on many different aspects of speculation in hardware. The claim in the patent infringement is that the work on "Table-based Speculation.." was presented at Intel and attempts were made by the authors to negotiate a license for the technology. It wouldn't surprise me if there's some merit to this claim.

    5. Re:Universities Are Good (Sometimes) by rbmyers · · Score: 3, Interesting

      It would take a whole lot more than reading that patent, and a whole lot more than reading Hennessey and Patterson, to know if Wisconsin had something it could collect on. That is to say, you'd have to know a detailed history of work in the field. That would mean being familiar with dozens of IEEE and ACM journal articles, something a patent examiner in Washington would never have time to do. That is to say, aggressive schemes for instruction parallelism is a huge body of work, and the patentability of the idea as a matter of fact is surely to be in dispute. The fact that Hennessey and Patterson attributes the idea to Wisconsin, Madison is a big piece of evidence, but not necessarily dispositive. Wisconsin has been a big player in this kind of work, and they (obviously) have graduates at Intel. In any case, the authors Hennessey and Patterson would be in a fairly select group of people who could offer authoritative comment. Then there is the question of whether the Intel design actually infringes. Finally, it's worth noting that many patent disputes likes this one are settled by cross-licensing. Without such practices, Intel, IBM, and AMD and who knows who else would probably be in court endlessly. Companies collect patents as a way of fending off lawsuits like this one. That tactic doesn't work, though, with organizations that don't make anything, in which respect, a university is disturbingly similar to a patent troll. That is to say, whether universities are good guys or not, they can have the same kind of disruptive effect as patent trolls, because they have no incentive not to sue, other than the cost of lawyers. The lawyers take the case on contingency fee and the lawyers are the patent trolls. The fact that the patent belongs to a university in the end means very little.

    6. Re:Universities Are Good (Sometimes) by bmajik · · Score: 2, Interesting

      It would make me a happy man to see an HD DVD/Blu Ray player cost $100 more while poor people can go to college for virtually free. But I think a lot of people would call me some sort of communist for that and that I'd be stagnating the economy or some such theory that I can't comprehend.


      Well, yeah, the way this is normally discussed, the conversation usually turns towards someones irrational communist leanings about how "some people" should pay for "everybody else" to go to college. Nevermind that not everyone ought to go to college at all, much less because others were forced at gunpoint to pay for it.

      But that's not what I'm replying to you for..

      Regardless, I'd be willing to buy shares in certain universities if I could. Imagine what those portfolios are going to start to bring in in revenue!


      This is actually brilliant, and is quite the opposite of communism. And infact this may very well be the answer to the problem you're talking about in the first part of your post.

      Universities currently get a fair bit of financing from private donors, from athletics, and from taxes. So much of tuition is subsidized for one reason or another that lots of people go that perhaps ought not to. There's a demand glut, so to speak, and so there is little incentive for a university to do anything other than expand and raise prices.

      A very nice thing about what you suggest is that that investment revenue can be re-invested by the university, for the university, to fund scholarships for promising students. Top flight schools like MIT effectively have this arrangement -- if you get into MIT (because of your qualifications), you WILL be able to afford it, because a variety of interested university backers will see that the money appears.

      Generalizing this a bit, a university with disposable income from the past results of its research may have an incentive to recruit promising new talent and thus subsidize the education of the best and brightest minds.

      And all of this would be done without coercion by the state. Different universities would have entirely different criteria for who they beleive is promising, and how they think their scholarship money ought to be spent.

      This is part of a solution of how people go to college without making society at large pay for just anybody to go for any reason. Investors will choose which universities to invest in, based on selection criteria, past performance, etc, and that will tend to cause universities to spend their money a bit more wisely.

      There are a variety of other privatized education funding models discussed by Friedman, etc, but this one is one I've not thought about before. Thanks for mentioning it.
      --
      My opinions are my own, and do not necessarily represent those of my employer.
    7. Re:Universities Are Good (Sometimes) by Anonymous+Custard · · Score: 2, Insightful

      I have an engineering degree, which apparently entitles me to such things as straight no time-and-a-half overtime and less wage than any unskilled union laborer.

      ...It does get a little daunting when everyone I know who went to college makes less than those who didn't.

      Your college degree in engineering does not mean that you automatically provide valuable engineering services to a company.

      Your engineering degree only entitles you to write "I have an Engineering Degree" on your job applications. After that, it's up to you to land a good job, impress the right people, earn raises and promotions, or create an invention and monetize it, etc.

      If you're truly making less wage than any "unskilled union laborer", then perhaps your business skills are lacking? You might be a genius engineer, but it still takes business smarts to turn that into a profit for you.
    8. Re:Universities Are Good (Sometimes) by halber_mensch · · Score: 2, Insightful

      Your college degree in engineering does not mean that you automatically provide valuable engineering services to a company.

      I wish I had points for you. These days every kid out of high school seems to be shuffling off to college with mom and dad's credit card to get a business management or marketing degree, boozing it up on thursday nights and missing tests on friday mornings, with every expectation that when they finally get through their 4 years of drunken stupor they will emerge into a world that wants to throw money at them for being so highly educated and accustomed to privilege. In reality, however, the degree itself is usually in and of itself simply a free pass to the interview, not an indication of ability.

      --
      perl -e "eval pack(q{H*},join q{},qw{70 72696e74207061636b28717b482a7d2c717b343 637323635363534323533343430617d293b})"
    9. Re:Universities Are Good (Sometimes) by Penguinisto · · Score: 2, Informative

      any decent football programs brings in millions more than they spend. just in case you thought it was wasted money, it usually is not.

      While that condition is true for only (roughly) 36-48 universities and colleges nation-wide, I do not argue that those who have a prominent place in, say, the NCAA (US football org) can rake in megabucks per year. (Everyone else scrapes by as best they can, or they simply do without).

      Meanwhile, we have, as perfect example, these beasties (PDF). Don't ask about the price tags.

      Granted that at least half of these are working hospitals, but the majority of the inbound dough isn't coming out of the Ute football program, nor is the majority coming from private/alumni donations... them thar's your tuition (and tax) monies at work. This is the same UofU that has one hell of a large business and IP incubation program, and a 300+ acre, 37-building complex referred to as Research Park. Note that I'm not picking on the UofU per se, but it is a place that I am highly familiar with, as it is a fellow BoR member as my former employer's of long ago.

      (by the by, the UofU is also incidentally one of the very first nodes on what eventually became the Internet - the other node was at UC Berkeley).

      /P

      --
      Quo usque tandem abutere, Nimbus, patientia nostra?
  9. My guess it that it's legit by dpbsmith · · Score: 5, Informative

    WARF is old and famous, one of the very first attempts to fund university research by patenting and commercializing research.

    It was founded in the 1920s by a professor who invented the process for putting vitamin D in milk.

    I believe they also had the patent for homogenizing milk (do you see a pattern here?)

    And then, of course, there is WARFarin, the trade name for the anti-coagulation agent dicoumadin, which was discovered when a distressed farmer showed up at the University of Wisconsin's ag school with a bucket of blood from a dead heifer (the pattern continues) and wanted to know what had happened.

    1. Re:My guess it that it's legit by Anonymous Coward · · Score: 5, Funny

      Well, you see sir, cows need blood to transport oxygen and neutrients around their body. If you take the blood and put it in this bucket, the cow doesn't get the oxygen to the brain it needs and it dies.

    2. Re:My guess it that it's legit by MightyYar · · Score: 3, Funny

      So you're saying that they will only license this technology in Gateway computers?

      --
      W..w..W - Willy Waterloo washes Warren Wiggins who is washing Waldo Woo.
    3. Re:My guess it that it's legit by Reverend528 · · Score: 2, Funny

      the cow doesn't get the oxygen to the brain
      You've never met a cow, have you?
  10. Re:Is this a publicly funded University? by Anonymous+Custard · · Score: 2, Informative

    Pretty much, and that's why WARF is a non-profit, and any profits they get from patents they license are sent right back to the university for more research.

  11. I happen to work in WARF by Pojodojo · · Score: 5, Informative

    I am a student at the University of Wisconsin, and also happen to work in WARF.(we call the building that the foundation is in WARF as well) The Foundation was set up to protect the discoveries of the university, and has paid for itself many times over, as some of the largest medical patents are held by them. There are also an innumerable amount of Stem Cell patents held by them which in the near future will prove to make a large amount of money. Being a Comp Sci student, I also have heard from some of my professors about issues with companies such as IBM and Intel, whom they have been in contact with, and cannot describe to us lowly students the details of their dealings. However they are definitely not patent trolls. I feel this will make things a little more interesting around the University though, to the point where we can see the true purpose of WARF and how it benefits the University. Bring on a new Comp Sci building!!

    --
    arrrg, (like a pirate)
    1. Re:I happen to work in WARF by guacamole · · Score: 2, Interesting

      Quite honestly, I hope that someday a law will get passed that bans universities from patenting the products of their research. The idea that the universities use mostly public money or private donations for their research and then patent results and sell them to businesses who essentially create mini-monopolies based on those patents is simply outrageous (remember RSA?). We fund the universities so that they would create and share new knowledge for the public good. Patenting the products of university research seems at odds with this goal. I just can't believe that universities these days have gone so low as to insist on patenting their discoveries. If they're thinking of using their discoveries for profit, maybe they also should use the proceeds to fund their research as well without taxpayer money?

    2. Re:I happen to work in WARF by reebmmm · · Score: 3, Insightful

      Quite honestly, I hope that someday a law will get passed that bans universities from patenting the products of their research.
      Except for the fact that current federal law actually makes it a point to force universities to get patent protection or lose those rights to the federal government. It's called Bayh-Dole.

      And contrary to your assertions, the whole point is that by giving the universities the right to acquire title to the invention and then imposing commercialization obligations upon them means more of the inventions actually will get to market. Now its true, it some cases this probably doesn't work, for example, a blockbuster technology that everyone would adopt. But that's not most technology. Indeed, doing something that everyone else can do is not usually very profitable.

      The reason the patent is a good tool for this is actually a result of the market. Most companies want patent protection because it gives them an advantage in the marketplace. So by allowing universities to patent those inventions, they have a tool to license the technology in order to commercialize it--basically giving the licensing company an extra incentive to actually exploit the technology.

      As a significant note, you can read about how infrequently technology was commercialized prior to Bayh-Dole. The numbers are quite staggering. Most "inventions" were never licensed. The federal government retained title to all of its funded inventions, and very little commercialization was done.

    3. Re:I happen to work in WARF by DRJlaw · · Score: 2, Insightful

      In that case, it's unfortunate for you that the U.S. government passed a law that encouraged universities to patent the products of their research.

      Imagine the gall. A university conducts research that results a useful, novel, and hopefully non-obvious technology, and they have the nerve to patent that technology. Then they have the nerve to ask for licensing revenue, and use the revenue to fund the university so that it can educate more students, and conduct more research, and maintain its facilities. Of course, the university should give the research product away for free, because you're perfectly willing to pay higher tuition and higher taxes to make up for this revenue that makes the university marginally more self-supporting. Aren't you?

      If they're thinking of using their discoveries for profit, maybe they also should use the proceeds to fund their research as well without taxpayer money?

      Because the money goes... where? And it's an all-or-nothing proposition, eh? You appear to have neglected to think this all the way through.

  12. Not first time by Anonymous Coward · · Score: 2, Informative

    Intel did the same thing back when they were developing Pentium. Intel reviewed the architecture and design of DEC's Alpha chip which they decided not to license it eventually. Later on, Intel surprised industry with huge performance gain from 486 to Pentium chip. One of the executives of Intel mentioned that they used features from mainframe to improve the performance of Pentium. The comment sounded fishy to DEC and when they looked at Pentium, and they found out that Intel copied some of the design from Alpha chip. DEC sued Intel and they settled outside of court.

  13. Re:Patent troll or not? by Pojodojo · · Score: 2, Insightful

    I don't think that just because UW doesn't have a manufacturing plant set up means they are not able to hold a patent for microprocessors. There are numerous people at the University, some who I have been instructed by (being a student) whom have held numerous industry positions including microprocessor architects, most of whom have become bored of the industry and gone into research. Which is where these patents come from...

    --
    arrrg, (like a pirate)
  14. Now that you mention it... by penix1 · · Score: 2, Insightful

    I am against universities holding patents period. How much of that patent was obtained using public funds? How much should go back to the public when the settlement comes in? How much of their licensing fees they gain from other patents are returned to the public from which it came?

    Universities have seen the patent system as the cash cow it is and haven't thought this through.

    --
    This is a sig. This is only a sig. Had this been an actual sig you would have been informed where to tune for more sigs.
    1. Re:Now that you mention it... by pembo13 · · Score: 3, Interesting

      To be fair, I think universities should be granted patents, if only to look good on walls and recognize commitments. But they should be made publicly available if the university benefits from public funds. Especially in this case, where the idea seems novel, and non obvious.

      --
      "Thanks for all the money you paid to us. We've used it to buy off ISO among other things" -Microsoft
    2. Re:Now that you mention it... by duplicate-nickname · · Score: 4, Insightful

      How much is returned to the public? WARF has put almost $1 billion back into research at the University ($50 million last year) and supported 1500 seperate research projects last year. Not to mention that there are 1000's of people employeed around the state in the private sector at small biotech companies and other firms developing products off of WARF licensed technologies.

      --

      ÕÕ

    3. Re:Now that you mention it... by Mister+Whirly · · Score: 4, Informative

      I work at a university and from what I understand most of the patents/patent research is not done with public money - most research money is private. At least in my department and related departments. Actually about 90% of our department's entire funding is from private research money.

      --
      "But this one goes to 11!"
    4. Re:Now that you mention it... by reebmmm · · Score: 2, Interesting

      First, federal law requires that inventions made with federal funds must either be commercialized by the inventing institution or given up to the government (the gov't can then decide not to take title and title reverts to the inventor). It's called Bayh-Dole. Allowing title to revert to the government or the inventor is not particularly good results. Well funded tech transfer offices are much better at getting technology to licensees than either the federal government or the inventor. Besides, the federal government gets a royalty-free license to use the technology for its own purposes, a nice benefit to the US government.

      Second, in this case, WARF actually contributes significantly to both the University of Wisconsin Madison (a state school) and to the inventors, inventing laboratory and inventing department. You can read about the process here: http://warf.ws/inventors/index.jsp?cid=14&scid=40

      Third, WARF has been at this for a very long time. They're a very sophisticated patenting and licensing entity. They have definitely thought this through. According to their website, they are also not in the business of patenting every idea that every professor discloses to them (they say 60% of disclosures, but who knows).

      Furthermore, they're a great asset to those inventors without the means to pursue licensing and patent protection on their own. Inventors pay nothing up front for what is otherwise a very expensive, time consuming ordeal.

    5. Re:Now that you mention it... by Mister+Whirly · · Score: 2, Insightful

      Or it means the university doesn't want to listen to people bitch about spending public money on things they don't support. Yeah, the university that is self-sufficient on private funds instead of wasting public money is certainly "corrupted". The purpose of the university is education and companies funding research privately is providing just that. Research money is soley used for, wait for it - research. The university is not "dependent" on this money for normal operation. If they don't get private research money, they don't do the research. It's not like they spend the university operating budget on research. If there is no research money, there is no research.
      I think your tinfoil hat is a little tight today...

      --
      "But this one goes to 11!"
    6. Re:Now that you mention it... by vic-traill · · Score: 2, Insightful

      But they should be made publicly available if the university benefits from public funds

      Not trolling, but definitely playing Devil's Advocate here: so what if a university benefits from public funds? Don't many privately held corporations benefit from public funds (from infrastructure - roads - to services, to selling product that is paid for in 'public funds')?

      My point is that the idea of 'benefiting from public funds' is a slippery one, and that segmenting patent applicability by some measure of the use of public funds in developing a patent is a complex issue.

      And I'm not expressing support for the current state of the USPTO here, nor the general state of the patent system in the U.S. at this time - just questioning a particular idea expressed above.

      --
      [17] Leary, T., White, C., Wood, P. R., Bhabha, W. D., and Wirth, N. Lambda calculus considered harmful. In Proceedings
    7. Re:Now that you mention it... by eggnoglatte · · Score: 2, Informative

      Every so often I stumble across a post on slashdot that is so bizarre that I have to wonder what planet the poster is living on. The parent is one of those cases.

      I have a faculty position at a public university, and believe me: you do NOT want to pay the taxes you'd have to pay if all my research activities (and those of my colleagues) were publically funded. So it is either private funds or reduced research activities. Guess which one is better for society?

      There is a role for both public and private funding in university research. Public funding is great for high uncertainty research and everything with a horizon of 10+ years. This type of research is absolutely necessary to push the edge in science and technology, but is expected that only a small percentage of such research will ever be successful of commercially viable. Once you have discovered a basic phenomenon that seems to have promising applications, now is the time to extract the most societal benefit from that work. How do you do that? In some cases (e.g. medical research) the societal benefit is direct. In most science and technology areas, the societal benefit is indirect, through the creation of jobs. That means there has to be a path for taking the basic science and using it in products down the line. Note that at this stage, there is typically still quite a bit of work to be done to make the technology product ready. Who should pay for that work? The government? I think not! So this is the time for industry to step up and invest significant amounts of money (often more than required to do the initial basic research!). Of course they'll only do that if they can be reasonably sure their investments are protected, hence you need patents.

  15. So Intel uses Klingon technology by gatkinso · · Score: 3, Funny

    I always suspected modern computers were well beyond the ability of human invention.

    --
    I am very small, utmostly microscopic.
  16. Re:Is this a publicly funded University? by Anonymous+Custard · · Score: 2, Informative

    The FUN thing about non-profits however is that the people who administer the non-profit ARE entitled to draw a salary for running the thing. After all fair is fair, right? That's why a board of directors controls salaries for the executive employees of the non-profit organization. In principle, they provide oversight and make sure the executives aren't drawing excessive salaries from the organization's revenues. But in practice there's always the chance for corruption or conflict of interest.
  17. Re:Another good example... by reebmmm · · Score: 4, Informative
    You very obviously do not know how tech transfer offices work. In this case, the money from licensing technology assigned to WARF is divided up among 1) the inventors 2) the lab the invention came out of 3) the department and 4) to WARF.

    A quick view of the WARF website has a whole page on the royalty distribution: http://warf.ws/inventors/index.jsp?cid=14&scid=40

    Of significant note:

    The inventors receive 20 percent of the gross royalty revenue generated by a licensed invention. Payments are made to the inventors in the month following the receipt of the royalty payment.

    You could at least get your complaints right.
  18. [ot] comic-store-guy says: by wild_berry · · Score: 5, Funny

    With every due respect this shouldn't be 'funny'. This is a geek site, and we have standards to uphold: *Worf* is the son of *Mogh*.

  19. Re:Another good example... by Iron+Condor · · Score: 2, Insightful

    Patents (copyright, trademarks, etc) are not bad, they give credit where credit is due...

    its most (but not all) of the laws surrounding patents and copyrights, that are bad.

    Patents are bad because their only effect is funneling resources from the fast, high-powered, creative, dynamic people in the world to the retarded lazy dullards who think thy only ever have to do one single clever thing in their entire life and should get paid for it from here on in perpetuity.

    To the creative people amongst us, who create new things, new processes, new ideas, new concepts, new knowledge, new value on a daily basis, Imaginary Property merely gets in the way. It hampers me daily in my attempts to innovate -- and the only benefit is some lazy geezers financing their retirement through milking the one smart thing they did in their lives back in the fifties.

    Contrary to the assertions of folks like you, removing the ability to retire the very first time you've done something smart would actually result is a dramatic net increase in overall productivity, because people would have to continue doing smart things to continue getting paid.

    When someone digs a ditch for me, he gets paid. Once. That's it. If I had to continue paying him in all eternity for the ditch he dug, he'd never contribute anything anywhere ever again[*]. And the same is true for "patent (copyright etc) holders": You do something good, you deserve to get paid for your work. Once. Now. How much depends on the deal you struck. You do emphatically NOT deserve to somehow "retain rights" to the thing you created and somehow expect to get paid for it for years and years in the future.

    If you want to get paid next year, you should have to do some actual work next year. Whether you're digging ditches or developing processor designs. I do it. Many others do it. And it is time we stopped the parasitic maggots who think they're too good for work next year because they already worked once ten years ago.

    --

    [*]And I wouldn't even be allowed to say "screw this, I'm digging my own ditches from now on" because he'd be holding some kind of "intellectual property rights" on the process of digging of ditches.

    --
    We're all born with nothing.
    If you die in debt, you're ahead.
  20. Re:Another good example... by reebmmm · · Score: 4, Insightful

    ...Imaginary Property merely gets in the way. It hampers me daily...

    So you mean that patents are working?

    In all seriousness though, you're hardly "innovating" in any sense of the word if you're doing things that have been described by someone else in a patent filed so long ago that it's issued. That's just about the craziest reasoning I've seen on slashdot.

    But more to your original point, the idea of patents is to prevent "parasitic maggots" that capitalize, copy, and lazily "innovate" using someone else's effort. So, rather than the patent being parasitic, the system that you advocate for actually promotes and fosters laziness all the while minimizing the reward to the originator.

    And, there is no system of patents that guarantees payment in perpetuity. Once you consider the fact that it takes years to get through the patent office, in many fields the lifetime of a patent is relatively short in business terms. **

    Now, I'm not going to defend EVERY patent out there. Hell, I've seen my fair share that are incomprehensible and/or entirely obvious (both in the legal and technical sense). This does not seem to be the case here--at least not yet.

    I'll probably get modded down as a troll and blow what karma I do have since you voice a very popular opinion. But, I'll do it anyway.

    [** Copyright, on the other hand, does come much closer. When you're discussing about protecting anything at the "author's life+" then you're talking about a long time relative to any particular individual.]

  21. Re:Happened to Sony and IBM also by dontthink · · Score: 2, Interesting
    I've submitted a patent with WARF (ultimately declined), so I'm familiar with the institution. I know a number of researchers who hold patents through WARF, and I've really heard nothing but good things. I know you asked me not to do research, but I knew the following when I originally posted from my dealing with them, and just looked up the reference for legitimacy.

    From http://www.warf.org/inventors/index.jsp?cid=7

    Inventors' Share
    The inventors receive 20 percent of the gross royalty revenue generated by a licensed invention.


    After deducting this portion, a certain percentage goes to their operating costs - I'm sure keeping a number of patent lawyers around isn't cheap. The good thing is that 20% is BEFORE those costs. The rest goes into a grant given to the university, distributed as such.

    Laboratory Share of the Annual Grant
    Of the first $100,000 generated by each license agreement, the inventors' laboratories receive a grant equaling 70 percent of the gross royalties. For example, if an agreement generated $50,000 in royalty revenue over its lifetime, the inventors' laboratories would receive 70 percent of $50,000, or $35,000.

    Graduate School Share
    After the laboratory and department shares have been allocated, the remainder of WARF's annual grant is given to the UW-Madison Graduate School. The Graduate School uses this money to support a variety of projects and programs each year, including:

            * The Graduate School Research Competition
            * The Romnes Early Career Awards and the Kellett Mid-Career Awards
            * Named professorships and graduate fellowships
            * Campus building projects


    Whether or not shady accounting occurs in these settlements and grants I have no idea, but I have no reason to believe so. As I said before, everyone I know who holds a patent through WARF has been quite happy with the arrangement.

    At UW, if no federal funding was involved, the intellectual property generated from research is the researcher's (unless there were strings attached to the private funding) - they don't HAVE to deal with WARF at all. I know this for a fact from my dealings with them - my collegues and I chose to work with them because the benefits of going through WARF FAR outweighed the the cons.

    Sure, most settlements are confidential to the public, but not to the patent holder (who would include the inventor/researcher along with WARF).

    From your post:

    Most of the money of goes back to research? You don't know that.

    I appreciate your skepticism, and can understand where you're coming from except for this comment - you have no clue what I do or do not know - don't pretend you do for dramatic effect. I did my research on WARF when my personal interests were on the line, and from what I was able to discern it's a GOOD deal for the researchers/inventors, the University, and the student body.
  22. Re:Another good example... by Iron+Condor · · Score: 2, Insightful

    Imagine there's a task. Call it a XYZ task. And someone who has to perform it a lot says something like "this would be so much easier if there was an XYZ gadget that would kinda work like this and work by that principle -- that wouldn't be hard to produce. Why doesn't anybody make such a thing?" And that person looks it up on the web and indeed, such a gadget cannot be bought anywhere.

    Situation 1: how things should work:

    Person goes and starts manufactuing the XYZ-gadget. It's not like he wants to make a lot of money off it -- heck, it's OK if it merely breaks even. All he wants is an XYZ gadget available to him. But if there's a market, others could now try to make better XYZ gadgets. Modified XYZ gadgets. Designs the original inventor never even thought of. Applications he never even had in mind. Turns out that people in some completely different industry start modifying XYZ gadgets for their own purpose and soon a whole industry of modified XYZ gadgets springs up, with designer colors and actual research performed into the optimum way of making ABC gadgets (which were a clever derivative of the original XYZ gadget and sell much better because they can frobnicate as well as gadgerize). That's innovarion.

    Situation 2: how things really work:

    Turns out the notion of the XYZ gadget is obvious enough to practicioners in the field that there have been a dozen attempts to make and sell them before. But every time someone tries that, JoeDude steps out of the woodwork. JoeDude had one clever idea back in the seventies and so he got a patent. And he'll be happy to sell you the idea for a million bucks. Of course the world market for XYZ-gadgets is only $500,000 so nobody is willing to shell out that kind of money -- and JoeDude has found that he can actually make decent money by suing would-be manufacturers of XYZ-gadgets into nonexistence unless they settle with him for some sizable amount. The gadget never gets produced. XYZ-practicioners keep on having to frobnicate manually one-by-one. That's no innovation.

    In all seriousness though, you're hardly "innovating" in any sense of the word if you're doing things that have been described by someone else in a patent filed so long ago that it's issued.

    Spoken like someone who's never had a single creative idea in his life. Who's never actually developed any new technology, made a new gadget, produced some original data.

    And since you're just armchair-analyzing, you fantasize that the situation described above is some kind of rare edge-case. It isn't. It is the rule. I, personally, have at least one good marketable idea per week. A system, gadget, product for which I, myself, would gladly pay as much money as I think I could produce the product at. So does everybody around me. Because we're creative people who actually contribute usefully to society.

    But in my industry (aerospace) innovation has been patented out of existence. The Boeings and Northrops and Lockheeds of the world are sitting on all the patents for every clever little idea anybody can possibly come up with and they refuse to do anything with them because that would require taking risks, breaking into new markets, developing whole new product categories. The exact kind of risk that a small entrepreneur could take on a small scale -- except that the patent situation has choked any such attempts to death.

    And thus there's no innovation. People continue to do the exact same things with the exact same tools because the slightest deviation from what-was-there-before infringes on someone's patent somewhere. We do things in ways that could be streamlined to a degree that is laughable. Someone working in my group for a month should have collected dozens of ideas for products that have a real market just by listening to what we, ourselves, would be willing to pay money for. Products, innovations, that will never see reality. Because someone out there has a patent.

    Ideas are cheap. Innovation is not in the dreaming up of ideas. It's in the execution. And it is that execution that is hampered by people who imagine they should be paid to the end of their lives for having had one idea somewhere.

    --
    We're all born with nothing.
    If you die in debt, you're ahead.
  23. Re:If a university can hold a patent... by ChrisMaple · · Score: 2, Funny

    ...then I want my taxes (not to mention tuition) back.
    The university would want the education back, but you didn't get what you paid for.
    --
    Contribute to civilization: ari.aynrand.org/donate
  24. Re:Another good example... by eonlabs · · Score: 2, Insightful

    The biggest issue that brought patents into existence is the concept of development cost. Development cost when working with something physical can be exceedingly high. Ever look at what it costs to make one gear. When developing, people are not dealing with batches of hundreds of thousands of wheels and gears. It gets very expensive very quickly. When you're dealing with software, this is less of a problem unless you need a peculiar piece of hardware for the application. In those situations, it's once again a hardware cost.

    The point of a patent is to prevent other people from taking a published work on how to do something useful, recreate it, pay no heed to the original developer, and suck the wind from their sails fast enough to prevent them from recuperating the development costs. Many brilliant men have died unknown only to be recognized years later because they invested everything and reclaimed nothing for it in spite of incredible advancements.

    The problem with patents in the computer industry is that, with development costs so low in software, it is easy to develop in the field. When people need to background check for prior art, the associated body of literature is monstrous and evolving rapidly. It is extremely difficult to guarantee that your work has no prior art. Especially with computers as prolific as they are today, this is an even greater problem. Yes, patents in software hamper and are difficult to check because what might look like a simple patent could be broad enough to apply to hundreds of fields.

    This is completely different from chip development!

    It is not uncommon to, when you see something failing so often for a certain field, think it applies to all aspects and facets of it. The patent system has been around for a long time for a reason. In chip design, the literature does not evolve nearly as rapidly as in software design. In the post, they state that Intel met with the inventor of the technique to discuss using it. This means they were aware of the prior art and used it anyway. For chip development costs, before FPGAs were prolific, it could take months to get an in-hardware solution. Even with FPGAs, developing a processor or the key components for one takes a prohibitively large amount of hardware.

    I think it's important to consider turn-around time in the length of a patent, and they fail to do so.
    I'm pretty sure it's safe to venture a guess that the patents that are hampering you are software based.

    --
    I wouldn't consider the mad hatter mad. Just reality impaired. He sure can make a mean cup of tea.