Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×
Intel Hardware

Intel Unveils Roadmaps For Core Architecture and Atom Architecture (anandtech.com) 60

Intel on Wednesday surprised a number of people when it shared not one roadmap on CPUs, but two. AnandTech: For the high performance Core architecture, Intel lists three new codenames over the next three years. To be very clear here, these are the codenames for the individual core microarchitecture, not the chip, which is an important departure from how Intel has previously done things. Sunny Cove, built on 10nm, will come to market in 2019 and offer increased single-threaded performance, new instructions, and 'improved scalability'.

Willow Cove looks like it will be a 2020 core design, most likely also on 10nm. Intel lists the highlights here as a cache redesign (which might mean L1/L2 adjustments), new transistor optimizations (manufacturing based), and additional security features, likely referring to further enhancements from new classes of side-channel attacks. Golden Cove rounds out the trio, and is firmly in that 2021 segment in the graph. Process node here is a question mark, but we're likely to see it on 10nm and or 7nm. Golden Cove is where Intel adds another slice of the serious pie onto its plate, with an increase in single threaded performance, a focus on AI performance, and potential networking and AI additions to the core design. Security features also look like they get a boost.

The lower-powered Atom microarchitecture roadmap is on a slower cadence than the Core microarchitecture, which is not surprising given its history. The upcoming microarchitecture for 2019 is called Tremont, which focuses on single threaded performance increases, battery life increases, and network server performance. Based on some of the designs later in this article, we think that this will be a 10nm design. Following Tremont will be Gracemont, which Intel lists as a 2021 product. Beyond this will be a future 'mont' core (and not month as listed in the image).

This discussion has been archived. No new comments can be posted.

Intel Unveils Roadmaps For Core Architecture and Atom Architecture

Comments Filter:
  • More pci-e lanes?

  • The hell? (Score:5, Funny)

    by XanC ( 644172 ) on Wednesday December 12, 2018 @01:00PM (#57792904)

    A Slashdot article that links to the very previous Slashdot article??

    • by Anonymous Coward

      intel's marketing department is on the hot seat..

      perhaps they're of the belief that the more bullshit you shovel, the more you can cover up a decade of security woes and your more-recent production issues that allowed your only competitor to get a jump on you.

  • That would be pretty impressive if Intel can get commercial chips at 10nm by 2019.
    • Apple / TSMC is already at 7nm in their Bionic 12, does that not count?

      The Apple A12X Bionic is a 64-bit ARM-based system on a chip (SoC) designed by Apple Inc. It first appeared in the 11.0" iPad Pro and the third generation of the 12.9" iPad Pro, which were both announced on October 30, 2018.[88] It has four high-performance cores and four high-efficiency cores. The A12X is manufactured by TSMC using a 7 nm FinFET process, the first to ship in a tablet.

      https://en.wikipedia.org/wiki/Apple_A12X

      • Apple / TSMC is already at 7nm in their Bionic 12, does that not count?

        No, it doesn't. I mean, it does, but it only counts as 10nm. To be fair, their yields are better than Intel's, but their feature sizes are comparable so calling one 7nm and one 10nm is really 100% BS.

        P.S. This comes up in literally every conversation on this topic because other people are making the same mistake you are. Most of them are Apple fans, too.

        • If it's really 10 then they should label it as 10 not 7. That would be misleading to most people. Thanks for the insight.

          I am an Apple and Linux fan and use both RHEL and OSX daily. Apple products work better for me than other OSs, and when I get home I don't have the patience to deal with Windows. YMMV and all that. We need OS options, a monoculture OS is as dangerous for everyone as a monoculture with seeds and for mostly the same reasons.
  • by Suren Enfiajyan ( 4600031 ) on Wednesday December 12, 2018 @01:09PM (#57792956)

    ...security features, likely referring to further enhancements from new classes of side-channel attacks.

    I wonder if Meltdown is fixed.

    • by Allasard ( 565291 ) on Wednesday December 12, 2018 @02:02PM (#57793270)

      ...security features, likely referring to further enhancements from new classes of side-channel attacks.

      I wonder if Meltdown is fixed.

      Should be according to the PCWorld article:

      "Sunny Cove will also be the first CPU cores to include hardware mitigation for Variant 3 and L1TF side-channel attacks that goose data by exploiting how CPUs prefetch data to improve performance."

  • by jellomizer ( 103300 ) on Wednesday December 12, 2018 @01:13PM (#57792974)

    The biggest problem I see that most software is build around single threads. Back in the day I took Parallel processing course as an elective for my undergrad. It was a small class, (As its time conflicted with the graphics class, which was much more popular) however it really opened my mind on the actual power of Parallel processing. However most application that are running just use one thread, and you can see only one CPU doing all the work, so while the process may take a long time, it doesn't get split up.
    I am happy to see more focus on single core speed because unfortunately that is still needed.

    • by AmiMoJo ( 196126 )

      For performance single threaded speed isn't that important for many applications. More threads and PCIe lanes is likely to help more, especially with NVMe and 5/10 gigabit network interfaces.

      Software development: Multi-threaded compilation is pretty common.
      CAD: All the major software is multi-threaded or not CPU bound now.
      Video encoding: Multi-threaded and offloaded to the GPU.
      Gaming: Well optimized games are heavily multi-threaded.
      Servers: Textbook multi-threaded application.
      Browsers: Since Firefox Quantum

    • I think it's a bit of a chicken and egg problem. It's not that those applications can't be written to take advantage of parallelism, it's that there weren't (and maybe still aren't) a lot of developers who took classes on it (because hey, graphics!) so we end up still relying on improvements in single-threaded performance to drive gains. For a long while, it didn't even make sense to hire developers writing commercial software who had any skills with writing multi-threaded software, because consumer PCs all
      • Most applications spend most of their time in standard libraries, or should. (Some silly developers implement sort themselves, repeatedly).

        If popular libraries used parallel programming, applications would get most of the benefit for free. Sorting is a good example because it's expensive, but like many expensive operations it's already implemented in the library.

        A huge percentage of code is now run behind a web server, as a web service / microservice / whatever, or some other type of server. The developer

        • This is precisely the kind of project I am working on. It is a new data management system that performs many operations in parallel. Some databases, for example are multi-threaded but only in the sense that they can run multiple, separate queries in parallel. They can't break up a single query and run parts of it on separate cores for faster processing. If you run a big query on a quad-core CPU it will take the same amount of time as running it on a 10-core CPU (assuming similar clock speeds).

          My system on
    • Most software doesn't need any more CPU power. Nothing would be gained by making it work on multiple threads.
    • The biggest problem I see that most software is build around single threads.

      That's not a big problem, because most single-thread software doesn't consume much CPU. Most software which does need a lot of CPU is parallelizable, and in fact that has already been done. CODECs, compression algorithms, compiles, renders, photoshop filters... all are already multithreaded.

      For the average user, literally the only thing they are doing which would benefit from more single thread performance is gaming. Ultimately gaming still comes down to single threads for single jobs, like rendering. That'

    • The biggest problem I see that most software is build around single threads.

      And we haven't run one piece of software in a long time.

      *Posted from a machine that currently is using 30% CPU in another application on it's own single thread for a virus scan.

  • The real underdog in the CPU race.
  • by Targon ( 17348 ) on Wednesday December 12, 2018 @01:39PM (#57793136)

    So, until Golden Cove shows up, it will be tweaks and adjustments to what is currently out there, which hasn't been much of an improvement in over three years now. The people at AMD will probably be celebrating, because that means they have 2019 and 2020 where Intel won't have a significant design improvement to compete with their Zen2 based products that will be out in the next quarter(exact timeframe should be announced at CES).

    Cache improvements....yea, it will help, but won't be a significant redesign of the CPU design.

    • There is really nothing you can do to digital processors at this point which is going to have a significant impact on performance.
      • RISC-V is going to revolutionize everything.
        • RISC-V is going to revolutionize everything.

          It might, but at best that revolution is probably a decade away.

  • by gweihir ( 88907 ) on Wednesday December 12, 2018 @02:44PM (#57793458)

    No matter. They screwed over their customers the last few years, and hence I will not even remotely consider buying from them now.

    • Agreed.

      Both my newish miniture media server and pretty old desktop use AMD, on purpose, to avoid Intel's lies. And to encourge competition. (It does help they were also not too expensive...)

      Unfortunately my laptop has Intel inside. Mostly because good or in-expensive AMD laptops did not exist in early 2014 when I bought it. Of course it's taken a huge performance hit when I do the Gentoo Emerge update. So my next laptop will almost certainly be AMD. And if not, it must not have Intel hyper-threading wit

Math is like love -- a simple idea but it can get complicated. -- R. Drabek

Working...