Stories
Slash Boxes
Comments

News for nerds, stuff that matters

Slashdot Log In

Log In

Create Account  |  Retrieve Password

NTT Verifies Diamond Semiconductor Operation At 81 GHz

Posted by timothy on Mon Aug 25, 2003 11:50 PM
from the ooh-shiny dept.
Anonymous Coward writes "This story over at eetimes.com reports of a semiconductor made of diamond that is able to run at 81 GHz." Mmmm, foreshadowing.
+ -
story
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 Whitecloud (649593) on Monday August 25 2003, @11:51PM (#6791264) Homepage
    Should be able to run Doom III.... heh.
  • by serps (517783) on Monday August 25 2003, @11:53PM (#6791272) Homepage
    So, will these new chips be free as in speech, or free as in De Beers?
      • by dakryx (646923) <dakryx@gmail.com> on Tuesday August 26 2003, @12:06AM (#6791365)
        I remember a Nova special about manufactured diamonds and how GM finally got the large ones made with no defects. A trip from a Debeers exec and the operation was shutdown and people were released. Back to the industrial diamond business!
        • by GoRK (10018) <johnl@@@blurbco...com> on Tuesday August 26 2003, @02:27AM (#6791845) Homepage Journal
          Negative; the GM operation was shut down because all they could produce cheaply with their hydraulic presses was diamond powder. They actually were to the point where they could make contiguous crystalline structures bigger than dust; however, the cost far exceeded that of the DeBeers extortion and international crime fee diamonds. Though GM abandoned the project for purely financial reasons, I'm sure that DeBeers was happy about it nonetheless.
        • by Trinition (114758) on Tuesday August 26 2003, @05:30AM (#6792308) Homepage
          There was an article in the most recent Pop Sci or Discover (I can't remember which) abotu two companies that have successfully made large-karat diamonds synthetically. One company in Florida, Gemology I think, hastered the hydraulic press and can produce a 3-karat diamond, with few flaws, for $100. Another company out of Boston, I believe, uses a plasma deposition method that produces better-than-nature flawless diamonds... 3k for $15. And this latter process promises to be able to deposit not just chunks (i.e. jewelry), but wafers (i.e. semiconductors!)

          Of course, the preseident of the latter of the two companies was at a diamond conference and was told by a DeBeers fellow that what he was doign was a good way to get a bullet in the head!
  • Hmm. (Score:4, Interesting)

    by sekzscripting (687192) * on Monday August 25 2003, @11:53PM (#6791274) Homepage
    Does anyone know how hot these things will get?
    • Re:Hmm. (Score:5, Informative)

      by wass (72082) on Tuesday August 26 2003, @12:23AM (#6791457)
      well, one of diamond's characteristics is high thermal conductivity, so presumably generated heat could easily be carried away with heat-sinking technologies.
      • Re:Hmm. (Score:5, Funny)

        by Zocalo (252965) on Tuesday August 26 2003, @04:40AM (#6792202) Homepage
        Serious cooling is necessary, of course, but I hear the diamond doesn't vary nearly as much with temperature as Si does, so heat is less of a problem.

        I don't know about that. I'm sure I'd be somewhat wary of having one of these chips in a laptop dissipating 30W/mm a few inches from *my* crotch. ;)

  • by Anonymous Coward on Monday August 25 2003, @11:54PM (#6791278)
    in other news, M$ released Windows 2005 beta to NTT. "With instant messaging, help characters, voice response mouse buttons, and background autopatching, the operating system still takes 10 seconds to load Word." says Jerry Chang of M$ product development. "We feel this is the sweet spot. Give us Moore's Law, and we'll give the same speed you got used to in 1993."
  • Diamonds (Score:5, Funny)

    by Anonymous Coward on Monday August 25 2003, @11:54PM (#6791279)
    "CPUs are Forever" is not conducive to Moore's Law.
  • Finally! (Score:5, Funny)

    by maxmg (555112) on Monday August 25 2003, @11:54PM (#6791282)
    I can give my wife a new processor for her birthday! I can see it now:
    "But it's an 18 carat Intel, darling!" - "WHACK"
  • Memory? (Score:5, Funny)

    by Lord of the Fries (132154) on Monday August 25 2003, @11:56PM (#6791292) Homepage
    So with all the problems we're having these days getting data (memory) near all of these cycles, I can't even imagine what the situation would be with a processor built around these kinds of speeds.

    I'm imagining something like Dante's level 7 cache or something.
    • Re:Memory? (Score:5, Interesting)

      by digitalunity (19107) <digitalunity@yahoo . c om> on Tuesday August 26 2003, @12:06AM (#6791368) Homepage
      Highly unlikely. See, what you don't realize is that this technology will likely be utilised in memory before processors. One of the first verification processes in semiconductor technologies is 'can we make memory with it'. They start off simple and let the circuits get more complex from there. We'll likely see very high speed memory before you see a Pentium 5 or Athlon Diamond XP. This is a great boon for computing. Memory has been a large bottleneck for a long time.

      Imagine 1GB of processor core clock speed memory. That would be friggin amazing for databases :)
        • Re:Memory? (Score:5, Informative)

          by aXis100 (690904) on Tuesday August 26 2003, @12:32AM (#6791501)
          Because you have to run those signals over wires, which do a really crappy job of conducting a high speed signal. On chip cache is certainly fast - just expensive (real estate and fabrication errors)

          At the sort of frequencies we're currently using, circuit tracks look more like inductors and capacitors than bits of wires. They essentially act as antennas, and there is a massive amount of effort spent in trying to avoid those effects.

          • Re:Memory? (Score:5, Informative)

            by SteveAyre (209812) on Tuesday August 26 2003, @01:13AM (#6791649)
            One reason which another poster mentioned is the data transfer over the bus between the CPU and Main Memory, this is usually a few inches which means the signal can take more than 10ns to travel along the bus (which is a significant amount of time in chip design).

            Another reason is that SRAM is used in a CPU for cache - its VERY fast but takes up more silicon per bit and is very expensive per bit.

            Main memory is generally made of DRAM which is slower but also much smaller so you can get a much larger amount of memory onto a chip and much cheaper.

            It's not that the latest technology isn't used in memory, it's just that its very expensive so it's used within the CPU as a cache while main memory will be slower in order to balance space vs cost for the machine to still be both affordable and usable.

            Once the price drops, the cache technology gets put into main memory and a newer faster one replaces it in the cache.

            The other big thing is that most of the advances in CPU speed are not due to the chip tecnology but due to design, especially pipelining.

            CPUs go through a series of stages (eg fetch-read-execute) and the CPU can take advantage of this by running each stage while the next stage is still running.

            This trick can't be taken advantage of in memory as memory does not contain several stages - hence pipelining increased cpu speed by something in the region of 5-10x while not increasing memory speed at all.

            It's mainly new design tricks like this that have made most of the speed advances, which is why processor speed increases at such a larger rate than memory speed.
              • Re:Memory? (Score:5, Informative)

                by svirre (39068) on Tuesday August 26 2003, @09:31AM (#6793542)
                1) SRAM is actually Static RAM. It's very vast but it also requires a LOT more transistors per bit than DRAM - Dynamic RAM. I do believe that SRAM also consumes more energy than DRAM (i'm not absolutly sure). Don't expect SRAM to be use in Main Memory anytime soon (unless people are willing to pay the same for 100M as they pay today for 1G - and i'm being optimistic here)

                The typical SRAM structure is a 6T circuit (That is 6 transistors), while DRAM is 1T. DRAMS does however need to be refreshed with regular intervals as the capacitor that stores the bit is prone to leakage. This means the DRAM can never idle at virtually 0 power consumption.

                SRAMs therefore consume a lot less power than DRAMs when there are significant idle cycles.
          • Re:Memory? (Score:5, Interesting)

            by digitalunity (19107) <digitalunity@yahoo . c om> on Tuesday August 26 2003, @02:39AM (#6791882) Homepage
            That's exactly right. Even with all of the newest improvements in semiconductor technology and the resulting memory density(Remeber those old 512KB clunky SIMMS :) improvements, we are still placing the memory too far away from the processor. It should be closer(physically, logistically, electrically). With the new AMD Opteron, they got it right. Putting the memory controller on the processor is the first step in a long line of improvements that can be made. With a few more fundamental changes in design, memory might actually be able to keep up with processors in the future. One such design change would be getting the main memory bus off the motherboard PCB. With the memory controller on the processor itself, the compatability or portability of the memory modules between Opteron generations is no longer a viable excuse. There is no reason why the memory can't be a stacked silicon module that plugs into the side of the processor. That right there would solve quite a few problems as well as take full advantage of the Opteron's built-in memory controller and provide memory performance unchallenged by either DDR SDRAM or RDRAM technologies.

            I'm betting we'll see 1Ghz memory(not effective via DDR or QDR, I'm talking actual bus frequency) within 1 year from this day.

            Anyone wanna take my money?
  • by Anonymous Coward on Tuesday August 26 2003, @12:04AM (#6791350)
    the next big ceiling in CPU design is electricity consumption. Nobody cares about it in PCs now, but when CPUs start hitting several hundreds watts, businesses and home users will be forced to take it into consideration or else be badly burned each time they open their power bill.
    Making CPUs faster is all very nice, but the deciding point in purchasing an AMD vs Intel CPU in a couple of years may very well be in how much electricity it uses, even more so than how fast it is.
    • by seanadams.com (463190) * on Tuesday August 26 2003, @12:59AM (#6791597) Homepage
      The solution here is simply to have CPUs sleep, i.e. run with reduced speed, or no clock at all after a few uS idle time until the next interrupt. Most chips are quite capable of switching to much lower clock speeds on the fly, but for some reason this technique is only really used in laptops. It only takes a microsecond to change speed, so there is absolutely no user-perceptible impact.

      Also it is MUCH easier that doing a full "suspend" (powering down PCI cards and peripherals) because you don't have to reinitialize all that stuff when you wake up.
      • Actually, if you run any of the NT kernel OS's (NT4, 2k, XP, etc) your computer is already "sleeping". Its been awhile since I've done any assembley, but IIRC the command is called "hlt" (halt), aptly named because it halts all cpu activity until the next hardware interrupt or some timeout value. Thats how it worked in the early 90's, theres probably a more sophisticated instruction now, but the fundamentals should be the same.

        Mobile processors can usually alter their clock on the fly, but this requires tight intergration with the motherboard circuitry which is traditionally responsible for generating the CPU clock (which could probably also be programmed to overclock).

    • by aXis100 (690904) on Tuesday August 26 2003, @01:06AM (#6791619)
      Faster switching speed does have benefits in power reduction.

      One on the main causes of heating in semiconductors is the switching performance. Whilst a transistor is "on", voltage accross it is zero (or near to), current high, power dissipation (equals voltage * current) is low. Whilst a transistor is "off", voltage accross it is high, current is zero, power dissipation low. However, during the transition from on/off, voltage and current levels are both intermediate, hence power dissipation occurs. Faster switching response times means less dissipation during switching.
    • by anthonyrcalgary (622205) on Tuesday August 26 2003, @01:07AM (#6791623)
      It already is a consideration in many settings. Rackmount systems are the first to notice because of the density. As I understand it, any processor over 50 watts is pushing it for 1U applications. I think Sun is going to use mobile Athlon 64's for just that reason.

      With Prescott set to top 100 watts, I think we've hit the limit of what desktop users are willing to tolerate. We're into "can't run it on summer afternoons" territory already. I've been using my laptop at home because of it.
  • by ratfynk (456467) on Tuesday August 26 2003, @12:05AM (#6791360) Journal
    This tech has some serious military applications.
    Killing devices like the star drek phaser is not that far off. The high energy output potential because of the thermal characteristics is scarry! Just imagine if the output of a cell phone could have a signal db and directional capable antenna. Yipes you could get scrambled brains if the antenna was too close. The radar and remote sensor applications for this could kick current US stealth tech out the window as well.
  • Hey honey! (Score:5, Funny)

    by Botchka (589180) on Tuesday August 26 2003, @12:06AM (#6791369)
    Can I borrow your wedding ring for the lan party??
  • by endersdad (181957) on Tuesday August 26 2003, @12:15AM (#6791413)
    This lengthy article [theatlantic.com] gives a fascinating history into how the DeBeers cartel has created artificial scarcity in the diamond market and convinced the western world that a "Diamond is Forever". Before the 19th century, no one ever had to spend 6 weeks salary on an engagement ring!

  • "Funny" moderation (Score:5, Insightful)

    by Boing (111813) on Tuesday August 26 2003, @12:21AM (#6791447)
    Okay, seriously moderators, it's time to stop moderating "diamonds are a geek's best friend" and "maybe now I can give my girlfriend a [heavy-duty graphics chip of the day] for our anniversary" as Funny. Every freakin slashdot article that mentions diamonds in any context has these jokes. That's what the "redundant" tag is for. :)
  • Anyone who's bothered to do the research into it knows that DeBeers is about as evil [amazon.com] as a multinational can get. Somehow I doubt that they are going to play nice with another industry that wants to use thier bread and butter product for making something that doesn't cost $100,000 a gram.

    As I see it, there are one of only two outcomes here:

    #1) Someone finds a way to make cheap diamonds, and DeBeers goes after them (in more ways than just the legal route) to make sure that #2 happens.

    which brings me to

    #2) Nobody finds a way to make cheap diamonds, and DeBeers can triple their prices. Of course, the diamond supply is already kept artifically low to drive up prices, so meeting this new demand won't be a problem at all (it'll just cost you the price of a small car to buy a CPU.)

    I don't like this one bit...nope...not one bit. As if Microsoft's monopoly wasn't bad enough.
    • by gerardrj (207690) * on Tuesday August 26 2003, @12:33AM (#6791503) Journal
      There is already a way to make cheap diamonds. It's done every day. They are called "industrial diamonds" and are grown in labs. The grown diamonds are created for their strength, not their color or clarity. They are used as abrasives, and as tips for precision cutting blades. DeBeers I think couldn't care less about this market.

      There are also other companies that have developed processes to grow gem grade and sized diamonds that are in almost every way indisiguishable from a "natural" diamond. These processess in particular are what led DeBeers to start laser coding their diamonds for authenticity. Growing gem grade diamonds scares the jeebies out of DeBeers, and they will either make it illegal, or find some dubious means to crush any attempts at it.

  • by niko9 (315647) on Tuesday August 26 2003, @12:48AM (#6791556)
    I was a little surprised nobody mentioned this story [slashdot.org] that was posted recently here.

    If this man and his product really pan out, we could see some eally exciting advances in the semiconductor industry. But there could be a billion dollar enterprise that might think otherewise.

    A quote from said artice:

    But De Beers wasn't backing down. Throughout 2000, the cartel accelerated its Gem Defensive Programme, sending out its testing machines - dubbed DiamondSure and DiamondView - to the largest international gem labs. Traditionally, these labs analyzed and certified color, clarity, and size. Now they were being asked to distinguish between man-made and mined. The DiamondSure shines light through a stone and analyzes its refractory characteristics. If the gem comes up suspicious, it must be tested with the DiamondView, which uses ultraviolet light to reveal the crystal's internal structure. "Ideally the trade would like to have a simple instrument that could positively identify a diamond as natural or synthetic," De Beers scientists wrote in 1996, when the company unveiled plans to develop authentication devices. "Unfortunately, our research has led us to conclude that it is not feasible at this time to produce such an ideal instrument, inasmuch as synthetic diamonds are still diamonds physically and chemically."
  • by bigberk (547360) <bigberk@users.pc9.org> on Tuesday August 26 2003, @01:50AM (#6791741)
    Very few people are understanding what the article is saying

    The research teams have been able to fabricate semiconductor gates. In other words, they have probably been able to make a couple lone transistors (on/off electrical amplification switches) on a substrate lying in a lab with very controlled conditions -- long way off from computer processing.

    You can run Doom on this about as easily as you can run Quake with your bedroom lightswitch...
  • Optical Routers (Score:4, Interesting)

    by quinkin (601839) on Tuesday August 26 2003, @01:58AM (#6791766)
    A big problem with optical routers at the moment is that the electronic components can't keep pace with the optical components.

    This is part of the reason why the fibre optic revolution has been more of a slow turn... fast pipes are great, but it helps if you know where to send them.

    81GHz isn't going to solve the problem - but it will help.

    Q.

  • by Animats (122034) on Tuesday August 26 2003, @02:08AM (#6791796) Homepage
    De Beers is going to hate it, but they can't stop it. Compared to the semiconductor industry, the diamond industry is dinky. Total annual worldwide diamond production is only around $7 billion. Intel alone has four times the revenue of the entire diamond industry.

    Apollo Diamond [apollodiamond.com] is now making near perfect crystal diamonds by vapor deposition. Their product has fewer flaws than natural diamonds. Since the diamond jewelry industry has been making a big deal out of "flawless" diamonds for a century, they're stuck - the industrial process is better than the natural one. Semiconductor process technology has been making near perfect crystals of silicon, quartz, sapphire, ruby, etc. for years, after all. This is just the next step.

    Sapphires used to be rare gems. Not anymore. Linde Chemical started making synthetic star sapphires in the 1970s. Then sapphires went into volume production. Then the patents ran out. This [maintechsapphires.com] is where the sapphire industry is now:

    • We can currently supply ingots, blanks, windows and wafers up to 200 mm in diameter, bar stock up to 100 mm square and ribbons up to 80 mm wide. All sapphire products are available in stages ranging from raw through polished for epitaxial growth. With six grades of synthetic sapphire, Maintech is sure to meet needs of the customers. Processors and end users now have an opportunity to take advantage of extraordinary prices from Maintech, Inc. Normal turnaround time is FOUR WEEKS!

    A few years, and bulk diamonds will be on the Home Shopping Channel.

    • by josecanuc (91) on Tuesday August 26 2003, @12:05AM (#6791356) Homepage Journal
      Vacuum tubes are still used as the final amplification stage for TV and radio broadcast transmitters. They're the best thing able to handle the power efficiently, even today. Try building a semiconductor transistor with a gate width measured in centimeters (compared with microns); it's tough.
    • by insane (18348) on Tuesday August 26 2003, @12:07AM (#6791374) Homepage
      Don't be uninformed...oh wait this is slashdot. Vacuum tubes are still used in RF broadcasting, especially digital TV because the are able to reach the power levels necassary to broadcast a 50kW radio signal at low enough distortion to cleanly transmit the digital signals.
    • There are some really great uses for vacuum tubes. Here's a couple:

      1) High quality audio reproduction. Any home audio freak will tell you nothing sounds like a sweet tube amp. There is both anecdotal and scientific evidence for the superiority of tubes versus semiconductors. Why then do we use semconductors as audio amps? Price and size. For a home theater amp, semi's cost anywhere from $100 to $900+, and tubes cost anywhere from $500 to $20,000.

      2) High frequency amplification. Good for rf transmitters. They have many other high frequency uses as well.

      Don't discount the tube!
      • by evilviper (135110) on Tuesday August 26 2003, @01:02AM (#6791612) Journal
        Any home audio freak will tell you nothing sounds like a sweet tube amp.

        Yes, right after they tell you how much better records sound than CDs, and that aliens are stealing their newspaper.

        The fact is, people just like the sound of a tube more, because of it's distortion. It doesn't produce a better, cleaner, or clearer sound, it's just a sound some people like more. That sound, in fact, could be reproduced with a good DSP.

        There is both anecdotal and scientific evidence for the superiority of tubes versus semiconductors.

        Please point me to any "scientific" evidence that tubes are superior.
        • by panurge (573432) on Tuesday August 26 2003, @02:26AM (#6791843)
          You are partly right. The tube myth arose in the days of early silicon transistor amplifiers which had low gain and poor linearity around the crossover point. The result was they did sound worse than tube amps which had excellent gain at low signal, and degraded gradually as power increased.

          Enhancement mode MOS transistors have characteristics very close to those of ideal pentodes, and should therefore give even better results (no transformers.) But that doesn't suit the guys (always guys) with the "golden ears" and the bullshit filter bypass.

          • by jcr (53032) <jcr@ma[ ]om ['c.c' in gap]> on Tuesday August 26 2003, @03:11AM (#6791961) Journal
            I am sick and tired of people claiming tubes sound better,

            Well, since "sounding better" is a subjective judgement, anyone who says so is right. They'd be wrong if they claimed that tube amps were more accurate than transistor amps.

            What tubes have going for them is that they don't clip the way that transistors do when their power limit is exceeded. Transistors clip, tubes go non-linear and approach their power limit asymptotically.

            Of course, anyone who routinely overdrives their amp like that has probably lost the ability to hear much more than the ringing in their ears.

            -jcr
          • by appleLaserWriter (91994) on Tuesday August 26 2003, @03:22AM (#6791991)
            If you want to get pedantic, pick any pair (x,y). unless equals(x,y) is true, different(x,y) is true. Now better(x,y) is a special case of different(x,y), but its meaning is context dependant.

            Sometimes better(x,y) maps to greater(x,y) or less(x,y). So it is entirely possible that for some value of better(), better(tube, silicon) is true. If, for example, I'm a salesdude at a hifi store and you are a customer with stacks of cash. Then *clearly* better(silicon, tube) is true. However, after I sell you the tube amp and I'm spending my commission check on my own amp, better(tube, silicon) is true as long as I'm trying to optimize for a maximal personal bank account.

            If I'm trying to create the best listening device for my music, then... it doesn't matter. All my music is in MP3 format which horribly degrades the original signal. A nicely distorting vintage tube amp and a nice martini are probably the ideal combination to help me forget.
    • by qwijibrumm (559350) on Tuesday August 26 2003, @01:58AM (#6791765)
      There are some very undesireable things about semiconductors. They are low power devices. They don't work well at high frequencies. Couple these faults together and you let out the magic smoke on higher frequency applications (mostly Sat-Comms).

      There are work arounds for the low power problem. In my job, (US Navy Electronics Technician) I've worked on an LF transmitter that could crank out over 150KW. It was all solid-state. The workaround to not cook silicon? It used about a freaking million amplifier circuit cards. I think it might have been more efficetive to just use 4 PA tubes but whatever.

      Now the problem is high frequency and high power together. Consider the semiconductor. Two (slightly) different materials with a depletion region in the center. Well that's basically like a capacitor. Capacitors tend to pass higher frequency signals. If the signal is getting passed, it is not getting amplified. This problem is called inter-electrode capacitance. Tubes suffer from the same downfall. They dont just resemble capacitors, they are capacitors to a degree.

      The tube world has to use some pretty crazy devices to amplify signals at high frequencies. These methods cannot transfer to the solid state world. For more information google for "klystron", and "travelling wave tube".

      But because the issue of inter-electrode capacitance cannot be easily solved with workarounds. The only way to have a high frequency, high power amp, is with a tube. With higher quality semiconductors, this will no longer be true.

    • Re:overclocking (Score:5, Informative)

      by aXis100 (690904) on Tuesday August 26 2003, @12:07AM (#6791373)
      81GHz is the switching speed of the transistor, not the processing speed of a resulting PC. Some of the reasons are:

      * CPU's perform a large number of transistor switches in a single clock cycle.
      * The rise/fall response time must be much smaller than the switching time.
    • Yes. (Score:5, Informative)

      by rebelcool (247749) on Tuesday August 26 2003, @12:20AM (#6791442)
      There are lab created diamonds and have been for awhile, but they're fairly low quality and generally only useful as cutting tools. Wired had an article a couple weeks ago about one company that aims to change that, who have developed a method of creating diamonds out of a sort of plasma rain in a chamber that is almost impurity free.

      DeBeers is shitting a brick over it too, because that means its nearly impossible to tell a diamond from the ground from a lab one, except the lab one is even purer. The good part of this is the tech industry has far more muscle and clout than DeBeers does. DeBeers is truly an evil company sown on the blood of africa and putting them out of business would do the world a favor.

      In fact, the only way for this technology to become realistic is for large scale lab diamond growing like I mentioned above. Its still many years off.

      • De Beers are scum (Score:5, Interesting)

        by quinkin (601839) on Tuesday August 26 2003, @02:10AM (#6791802)
        Anything that fscks with De Beers gets my vote (or votes if it is e-voting...).

        That inhuman pack of gunship flying, mercenary hiring, indigenous population exploiting *ssholes can suck it down and shut up.

        Our obsession over "pretty sparklies" is disgusting, and what we are willing to ignore to ensure a steady flow is reprehensible. How many middle-class housewifes with a rock on a finger know the TRUE cost of that shiny bauble?

        Lets wake up to ourselves and try to develop a modicum of common sense? Why are diamonds expensive? Because they are in demand. Why are they in demand - no it is not the industrial applications? Because they are expensive.

        Q.

    • Re:Mmmmm... (Score:5, Insightful)

      by randyest (589159) on Tuesday August 26 2003, @12:26AM (#6791475) Homepage
      Er, yeah, if you want a massive cellphone booster or something. This is definitely not a general purpose processor (CPU), 0.2um gates in 3mm^2 is insufficient density and area to make any kind of decent CPU (maybe an 8-bit PIC, which even a cluster of is weak by today's standards).
        • Re:Ummmm... (Score:4, Informative)

          by PurpleFloyd (149812) <zeno20@TOKYOattbi.com minus city> on Tuesday August 26 2003, @02:29AM (#6791851) Homepage
          Oh yeah, tube amps sound way better than solid-state.
          I hope you're being sarcastic; the only area where there's even a difference between the output of tubes and transistors is when they're overdriven. That's a concern in recording, where overdriving the preamp can create interesting effects; guitar players know all about this and many prefer tube amps for the pleasing distortion. It is not a concern for playback, where the goal is to reproduce the original recording exactly rather than to overdrive the amp and create different sounds.

          As for tube amps in high-power situations, that's still the norm. The reason tubes fell to discrete transistors was mainly due to the fact that tubes have to be heated to work right. While several tube heaters in a small radio mean serious inefficiency, a 200W tube heater coil in a 200 KW radio transmitter means that all of 0.1% of your broadcast power is used for the tube heater - no big deal. Add to that the fact that large transistors are very expensive and the difficulty of moving heat away from the junctions in something that large, and tubes are still the natural choice for really high-power applications.

        • Apollo Diamond (Score:4, Informative)

          by yerricde (125198) on Tuesday August 26 2003, @09:16AM (#6793345) Homepage Journal

          there is a corporation in Boston which is developing ultra-pure diamonds using a vapor disposition techinque

          You're thinking of Apollo Diamond [apollodiamond.com], which plans to use revenues from selling vapor deposition gemstones to fund research into diamond semiconductors. There's a nice writeup about synthetic diamonds [everything2.com] at E2.

          However, in many markets, synthetic diamonds sold as gemstones have to be labeled as synthetic, giving De Beers an out: "A diamond isn't forever if it was grown in a lab five days ago."