Slashdot Mirror


NTT Verifies Diamond Semiconductor Operation At 81 GHz

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.

40 of 510 comments (clear)

  1. Gamer Heaven...er Hell by Whitecloud · · Score: 5, Funny

    Should be able to run Doom III.... heh.

    --

    Do you need a website upgrade?

    1. Re:Gamer Heaven...er Hell by Gherald · · Score: 5, Funny

      Perhaps it will. But the article doesn't have any any Quake III Arena FPS benchmarks!

      What's up with that!?

  2. Geeks want to know... by serps · · Score: 5, Funny

    So, will these new chips be free as in speech, or free as in De Beers?

    --
    "Einstein argued that [...] God is not capricious or arbitrary. No such faith comforts the software engineer." ~ Brooks
    1. Re:Geeks want to know... by dakryx · · Score: 5, Interesting

      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!

    2. Re:Geeks want to know... by GoRK · · Score: 5, Informative

      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.

    3. Re:Geeks want to know... by Trinition · · Score: 4, Informative

      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!

    4. Re:Geeks want to know... by danila · · Score: 4, Informative

      Wired 11.09: The New Diamond Age discussed on Slashdot earlier. Actually the link to the eariler /. story was posted above under "foreshadowing".

      --
      Future Wiki -- If you don't think about the future, you cannot have one.
  3. Hmm. by sekzscripting · · Score: 4, Interesting

    Does anyone know how hot these things will get?

    1. Re:Hmm. by wass · · Score: 4, Informative

      well, one of diamond's characteristics is high thermal conductivity, so presumably generated heat could easily be carried away with heat-sinking technologies.

      --

      make world, not war

    2. Re:Hmm. by Zocalo · · Score: 4, Funny
      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. ;)

      --
      UNIX? They're not even circumcised! Savages!
  4. M$ Released new bloatware to slow it down... by Anonymous Coward · · Score: 5, Funny

    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."

  5. Diamonds by Anonymous Coward · · Score: 5, Funny

    "CPUs are Forever" is not conducive to Moore's Law.

  6. Finally! by maxmg · · Score: 5, Funny

    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"

    --
    I asked for a refund - and got my monkey back.
    1. Re:Finally! by ewhac · · Score: 5, Funny

      Or, conversely, now you can reduce a man to tears with the gift of a diamond.

      Schwab

  7. Memory? by Lord+of+the+Fries · · Score: 5, Funny

    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.

    --
    One man's pink plane is another man's blue plane.
    1. Re:Memory? by digitalunity · · Score: 4, Interesting

      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 :)

      --
      You can't legislate goodness. Let each to his own destiny, by will of his freely made choices.
    2. Re:Memory? by aXis100 · · Score: 5, Informative

      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.

    3. Re:Memory? by SteveAyre · · Score: 5, Informative

      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.

    4. Re:Memory? by digitalunity · · Score: 4, Interesting

      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?

      --
      You can't legislate goodness. Let each to his own destiny, by will of his freely made choices.
    5. Re:Memory? by svirre · · Score: 4, Informative

      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.

  8. speed is no longer the point by Anonymous Coward · · Score: 5, Insightful

    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.

    1. Re:speed is no longer the point by seanadams.com · · Score: 4, Insightful

      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.

    2. Re:speed is no longer the point by aXis100 · · Score: 4, Informative

      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.

  9. Re:Diamond to replace vacuum tubes?? by josecanuc · · Score: 4, Informative

    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.

  10. Wow a 3 to 300 ghz signal with high output. by ratfynk · · Score: 4, Interesting

    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.

    --
    OH THE SHAME I fell off the wagon and use sigs again!
  11. Hey honey! by Botchka · · Score: 5, Funny

    Can I borrow your wedding ring for the lan party??

    --
    Money not found! A)bort, R)etry, D)eclare Bankruptcy
  12. Re:overclocking by aXis100 · · Score: 5, Informative

    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.

  13. Re:Diamond to replace vacuum tubes?? by insane · · Score: 5, Informative

    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.

  14. Have you ever tried to sell a diamond? by endersdad · · Score: 5, Informative

    This lengthy article 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!

  15. Re:Diamond to replace vacuum tubes?? by digitalunity · · Score: 4, Informative

    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!

    --
    You can't legislate goodness. Let each to his own destiny, by will of his freely made choices.
  16. Yes. by rebelcool · · Score: 4, Informative
    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.

    --

    -

  17. "Funny" moderation by Boing · · Score: 5, Insightful

    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. :)

  18. Will DeBeers be the new RIAA by Dr.+Bent · · Score: 4, Interesting

    Anyone who's bothered to do the research into it knows that DeBeers is about as evil 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.

  19. Re:Mmmmm... by randyest · · Score: 4, Insightful

    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).

    --
    everything in moderation
  20. Closer than some people think. by niko9 · · Score: 4, Informative

    I was a little surprised nobody mentioned this story 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."

  21. Re:Diamond to replace vacuum tubes?? by evilviper · · Score: 4, Insightful
    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.
    --
    Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
  22. Perspective; a long way to go by bigberk · · Score: 4, Informative

    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...

  23. Tubes may not go away for a long time by qwijibrumm · · Score: 4, Informative

    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.

    --
    I wish there was some there was some way that I could be outside playing basketball, in the rain, and not get wet.
  24. Perfect crystal diamonds are about to get cheap by Animats · · Score: 4, Informative
    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 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 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.

  25. De Beers are scum by quinkin · · Score: 4, Interesting
    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.

    --
    Insert Signature Here