Slashdot Mirror


Intel Launches 8th Gen Core Series CPUs With Integrated AMD Radeon Graphics (hothardware.com)

MojoKid writes: At CES 2018, Intel unveiled more details of its 8th generation Intel Core processors with integrated AMD Radeon RX Vega M graphics. Like cats and dogs living together, the mashup of an Intel processor with an AMD GPU is made possible by an Embedded Multi-Die Interconnect Bridge (EMIB), which provides a high-speed data interconnect between the processor, GPU and 4GB of second-generation High-Bandwidth Memory (HBM2). Intel is delivering 8th generation H-Series Core processors in 65W TDP (laptops) and 100W TDP (desktops) SKUs that will take up 50 percent less PCB real estate, versus traditional discrete configs. Both the mobile and desktop variants of the processors will be available in Core i5 or Core i7 configurations, with 4 cores and 8 threads, up to 8MB of cache and 4GB of HBM2. The 65W mobile processors can boost up to 4.1GHz, while the Radeon RX Vega M GL GPU has base/boost clocks of 931MHz and 1011MHz, respectively. The AMD GPU has 20 compute units and memory bandwidth checks in at 179GB/s. Desktop processors ratchet the maximum boost slightly to 4.2GHz, while the base/boost clocks of the Radeon RX Vega M GH GPU jump to 1063MHz and 1190MHz, respectively. Desktop GPUs are also upgraded with 24 CUs and 204GB/s of memory bandwidth. Intel says that its 8th generation Core i7 with Radeon RX Vega M GL graphics is up to 1.4x faster than a Core i7-8550U with an NVIDIA GeForce GTX 1050 GPU in a notebook system. System announcements from Dell and HP are forthcoming, with availability in the first half of this year. Intel has also launched a new NUC small form factor gaming mini PC based on the technology as well.

123 comments

  1. Does it run Crysis? by Anonymous Coward · · Score: 1

    Does it run Crysis?

    1. Re:Does it run Crysis? by Anonymous Coward · · Score: 0

      Beat me to it...doh

    2. Re:Does it run Crysis? by arglebargle_xiv · · Score: 5, Informative

      No idea, but it's definitely vulnerable to Spectre and Meltdown.

    3. Re:Does it run Crysis? by Anonymous Coward · · Score: 0

      > Does it run Crysis?

      Dude...it'll run *everything*! :-D

  2. does it run by Osgeld · · Score: 4, Funny

    Meltdown?

    1. Re:does it run by ArmoredDragon · · Score: 4, Funny

      You bet your ass it does! So how many can I put you down for?

    2. Re:does it run by ELCouz · · Score: 1

      Definitively the comment of the day! :)

    3. Re:does it run by TimSSG · · Score: 1
      Likely included at no extra change.

      Tim S.

      Meltdown?

    4. Re:does it run by Waffle+Iron · · Score: 1

      Only the CLI version.

  3. A great time to buy Intel by Anonymous Coward · · Score: 1

    Count me in!

  4. Lol by Anonymous Coward · · Score: 1

    Did anyone at Intel even think about the probable reaction to this announcement?

  5. Too soon? by AlexanKulbashian · · Score: 3, Insightful

    Seems like Meltdown and Spectre fixes might not be making this build.

    1. Re:Too soon? by 110010001000 · · Score: 0

      You are kidding, right? Intel isn't going to fix Meldown unless they are forced to redesign. Their processors are flawed.

    2. Re:Too soon? by Anonymous Coward · · Score: 0

      They're not going to delay the release date when all the OSes have fixes out already. Plus wit specs like that, they'll sell big time.

    3. Re:Too soon? by Anonymous Coward · · Score: 0

      There's no way they have fixed it in this processor. You should know Intel by now, they milk the same designs for YEARS. Id guess sometime later this year is the soonest we would see respun silicon design if they even bother.

    4. Re:Too soon? by eclectro · · Score: 3, Insightful

      Meltdown is probably an easy fix even for the silicon. Spectre however, as far as I can see, is next to impossible to fix. Maybe somebody can correct me, but they need to get rid of the speculative execution pipeline all together.

      It really seems very facetious of them to try to sell everybody on their new CPUs with this very heavy baggage hanging over their chips.

      --
      Take the cheese to sickbay, the doctor should see it as soon as possible - B'Elanna Torres, "Learning Curve"
    5. Re:Too soon? by Ungrounded+Lightning · · Score: 0

      Maybe somebody can correct me, but they need to get rid of the speculative execution pipeline all together.

      Or break the side-channel information leak of which cache lines were filled by the speculative execution (which is how the attacker finds out the value of the bits or bytes it shouldn't know).

      Or separate the branch predictions per-context (which is how the attacker gets the speculative execution to look at the desired bits or bytes).

      I like that last one. IMHO the behavior (especially the target address) of a branch in one context shouldn't be "hinting" about the behavior of a branch in another context. Yes, it might be a useful hint if the branch is in a commonly used shared library, being used the same way by many clients. But when it's in different code in different execution contexts for different users?

      --
      Bantam Dominique roosters crow a four-note song. Once you've heard it as "Happy BIRTHday" you can't NOT hear it that way
    6. Re:Too soon? by yes-but-no · · Score: 0

      Never clear why CPU allows to walk the cache when the cache is shared. Of course I can see other's data. cache must not be visible to software at all. If any OS needs to see, it has to expect these kind of security issues. Software should not even know that the system has a cache or not. Or it must ensure cache lines are private per app just like how main memory is.
      I believe meltdown/spectre can't work if user can't walk/read the cache directly.

    7. Re:Too soon? by tangent3 · · Score: 0

      You obviously have no idea what you are talking about. CPUs don't allow you to 'walk the cache'. There is no way to 'walk/read the cache directly'. That's not how Meltdown works. The values that Meltdown reads off the (presumed) cached all belong to the process running the Meltdown exploit.

    8. Re:Too soon? by yes-but-no · · Score: 0

      You are not supposed to see xyz; You tell system you like xyz and may want it (ie in speculative execution..not taken branch path) -- note you never asked it to give you xyz so you can't be found guilty. Now the system goes ahead -- being overly friendly n prepares xyz for you [out of order execution/speculative execution]. It doesn't matter where this xyz it stores, in cache/cpu-registers/special location. The system must not allow you to inspect this place. Whether it's walking the cache or reading from where the value may be potentially held (some special register say) breaks security.

    9. Re:Too soon? by Anonymous Coward · · Score: 1

      It's neither.

      It's reading the value from RAM where you are allowed to read it, and measuring how long this takes.

      If the result is returned faster than (slow) RAM can return it, it came from cache.

      Unless you want to slow the cache down, there is no way to prevent this. And if that's your solution, you might just as well get rid of cache in the first place, making computers at least an order of magnitude slower.

      (And while you are at it, you might just realize that RAM is basically a cache for the hard drive, so you might as well get rid of RAM too).

    10. Re:Too soon? by Anonymous Coward · · Score: 0

      All the compute potential of a 64-bit 486 clocked at 4GHz... not the worst thing that could happen, but far from optimal.

    11. Re:Too soon? by Anonymous Coward · · Score: 0

      More like a Pentium clocked at 4GHz with 64-bit extensions, as that was the last Intel CPU that did not have speculative execution.

      Essentially it would be a clock bumped Larrabee core, which is based on the P5 core, has 64-bit instructions and runs at 1GHz, although Intel intended for it to run at higher clocks. Too bad it was cancelled, but maybe Meltdown will lead to a revival? Even a CPU that was based on 2GHz Larrabee cores might be pretty respectable if it had say 100 cores.

    12. Re:Too soon? by datavirtue · · Score: 1

      Working as intended fuck face.

      --
      I object to power without constructive purpose. --Spock
    13. Re:Too soon? by datavirtue · · Score: 0

      Thats what we all need...hastily produced processors. Just bend over and buy new shit.

      --
      I object to power without constructive purpose. --Spock
  6. AMD affected by Meltdown bug after all by Anonymous Coward · · Score: 1

    Who is going to buy these CPUs? Intel knew about the bug for half a year and did not scratch the release? Linus was right then. They do intend to keep selling shit.

    1. Re:AMD affected by Meltdown bug after all by Anonymous Coward · · Score: 0

      > AMD also affected
      Got any source on that?
      Everything I'm finding is still saying it's only ARM and Intel.

    2. Re:AMD affected by Meltdown bug after all by Anonymous Coward · · Score: 0

      Probably referring to the AMD GPU on chip. Tongue in cheek.

    3. Re:AMD affected by Meltdown bug after all by iggymanz · · Score: 1

      hahaha! corporate america will. have you seen the investor headlines regurgitating intel's spew? Intel has patch for spectre, which was the more serious bug! meltdown just takes a little patch!

      no, not kidding

    4. Re:AMD affected by Meltdown bug after all by datavirtue · · Score: 1

      No one wants to deal with the shit to fix this right now...including Intel. It's not just them. No one wants to replace every server, blade, PC they own. So we are going to let Microsoft and the Kernel community deal with it and duck our heads in the sand, in the land of security by belief.

      --
      I object to power without constructive purpose. --Spock
  7. Re:Defective by Anonymous Coward · · Score: 0

    How long are you going to spam this?

  8. Re:Defective by 110010001000 · · Score: 0

    Until the Intel spin doctors stop posting misinformation. Meltdown is an INTEL ONLY ISSUE. These processors are defective and need a redesign.

  9. Re:Defective by omnichad · · Score: 3, Insightful

    So if you buy an Intel CPU you will need to deal with Meltdown.

    By using an up-to-date version of Windows, Mac, or Linux. And if you don't buy an Intel CPU, you still need a very similar fix to mitigate Spectre.

    Like it or not, this is not going to end in a mass recall - it's a fundamental design flaw with speculative execution. Poor security is a bug, but they delivered everything they promised on the box. This is not a simple patch. It's a complete redesign of a huge section of the die - and even if you do get your recall, it's going to be years before a new design can be fabricated and mass-produced. By then, it will be replaced and obsolete.

  10. Name by ISoldat53 · · Score: 2

    I'm glad I don't have to give Intel road maps anymore. This is an 8th gem processor with i5/i7 core in how many chip sets, memory types, gpu types? AMD parts. Why not throw a RISC processor in to be sure.

    1. Re:Name by Anonymous Coward · · Score: 1

      Intel don't like taking RISCs

    2. Re:Name by thegarbz · · Score: 1

      Why not throw a RISC processor in to be sure.

      They did that when they introduced the Pentium Pro.

  11. Miners will buy it. by Anonymous Coward · · Score: 0

    Cryptocurrency miners will buy up all the supply as usual, due to it being AMD.

  12. Performance claims by Hal_Porter · · Score: 0

    Intel says that its 8th generation Core i7 with Radeon RX Vega M GL graphics is up to 1.4x faster than a Core i7-8550U with an NVIDIA GeForce GTX 1050 GPU in a notebook system.

    That's actually a very impressive result. If I was buying a gaming machine, a 1050 is about the minimum. A 1050 TI would be better and it seems like this chip is in 1050 Ti territory.

    --
    echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;
    1. Re:Performance claims by Anonymous Coward · · Score: 0

      I'm still waiting for AMD to refresh their low to mid end graphics offerings, and this could suggest the things to come. There haven't been many passively cooled reasonable cards for a while.

    2. Re:Performance claims by Hal_Porter · · Score: 1

      You can get passively cooled 1030s

      https://www.phoronix.com/scan....

      --
      echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;
    3. Re:Performance claims by Luckyo · · Score: 1

      1030 isn't a "reasonable" card in this context. It's not something that can run modern games at acceptable quality and/or framerates.

    4. Re:Performance claims by Hal_Porter · · Score: 1

      Yeah, I'd go for a 1050 or 1050 Ti as a minimum to be honest.

      --
      echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;
    5. Re:Performance claims by datavirtue · · Score: 1

      Probably more like GTX 1060 territory.

      --
      I object to power without constructive purpose. --Spock
    6. Re:Performance claims by datavirtue · · Score: 1

      1050 is a waste of money when you can get a Ti for a few dollars more.

      --
      I object to power without constructive purpose. --Spock
  13. The enemy of my enemy is my friend by Anonymous Coward · · Score: 0

    ...even if he's also my enemy?

    1. Re:The enemy of my enemy is my friend by Anonymous Coward · · Score: 0

      Yes. Best not to think too hard about it.

  14. AMD's strategy by Pollux · · Score: 0

    I'm confused about AMD's business strategy with this move. They just finally got their foot back in the door with Ryzen being competitive against Intel after a decade of falling behind in performance. Topping this off of Intel not having a competitive solution to AMD's APU with a decent-performing 3D GPU, and AMD finally seemed poised to grow its share in the laptop & desktop market.

    But partnering with Intel to create an Intel APU defeats the purpose of buying an AMD APU.

    I suspect AMD has accepted that they will never ever come close to the market share they had back in the late 90's and early 2000's, and therefore it's better financially to sell large volume's of AMD-GPU-on-Intel-CPUs chips, than small volumes of AMD APU chips.

    1. Re:AMD's strategy by DontBeAMoran · · Score: 2

      My guess is, this looks like something Apple asked for specifically.

      I guess we'll know in a few months, if they finally update the Mac mini and the MacBook Air.

      --
      #DeleteFacebook
    2. Re:AMD's strategy by bill_mcgonigle · · Score: 4, Informative

      But partnering with Intel to create an Intel APU defeats the purpose of buying an AMD APU.

      Not really.

      The AMD parts will be cheaper.

      They'll be easier to overclock.

      The AMD parts may have some advantages on bus interconnects, being from the same vendor (benchmarks will tell...).

      There's a real chance that Global gets to 7nm first.

      Yet ... somebody who really wants an Intel anyway and won't consider an AMD CPU -
        - well, they're getting AMD graphics. That helps in the AMD/nVidia marketshare battle and it looks like Intel may be existing that market as well.

      --
      My God, it's Full of Source!
      OUTSIDE_IP=$(dig +short my.ip @outsideip.net)
    3. Re:AMD's strategy by Anonymous Coward · · Score: 0

      You do realized if amd doesn't do it, nvidia would be more then happy. But i do agree, AMD probably looking more at the cash-flow then caring about the rather limited marketshare growth difference if they didn't do this. Cashflow has always been a big problem for AMD. A big screwup to intel doesn't effect them much because they have the cashflow to weather through things easily but AMD screws up like bulldozer effects them greatly as they rely heavily on current gen sales to stay afloat. More cashflow gives AMD more leeway in the future to compete.

    4. Re:AMD's strategy by MachineShedFred · · Score: 2

      How about "We ship silicon that is in 95% of all PCs"

      Getting a taste of practically everything sometimes adds up to more than all of very little.

      --
      Slashdot still doesnâ(TM)t support Unicode after it was added to the HTML standard in 1997.
    5. Re: AMD's strategy by Anonymous Coward · · Score: 0

      It's a sale where they wouldn't be selling a CPU to start with, while at the same time making money where nV would have or Intel alone would have, isn't it?

    6. Re:AMD's strategy by Anonymous Coward · · Score: 0

      They have been moving to custom solutions ever since they started with the consoles and the Global Foundries emerged. They probably want to offer technologies to market like ARM, and spread the risks instead of betting the company on individual product categories, although the products themselves clearly are important as well. It has a slight "IBM means service" vibe to it.
        As a consumer customer, I still gravitate towards their own APUs for applicable builds due to price and flexibility.

  15. I'm confused by Anonymous Coward · · Score: 0

    Intel justifies the higher prices of its CPUs by claiming 5-30% increase in processing speed over their competitors. Intel says this increase in performance really makes a difference.
    But now a bug in Intel's CPUs require a 5-30% decrease in performance to fix. Intel says this decrease really makes no difference.
    Maybe instead of being a lying sack of shit company, Intel should tell the true, fix the problem, and repair/replace/reimburse people that bought Intel's defective junk.

  16. AND, FOR NO EXTRA CHARGE by Anonymous Coward · · Score: 0

    MELTDOWN and SPECTRE

    1. Re:AND, FOR NO EXTRA CHARGE by ELCouz · · Score: 1

      AMD will get the meltdown taste after all!

  17. Re:Defective by mlyle · · Score: 4, Informative

    > And if you don't buy an Intel CPU, you still need a very similar fix to mitigate Spectre.

    Fixing meltdown requires kernel unmap/KPTI. This comes with a 20-30% tax for many workloads. I know people at hosting firms with shit melting down because they've installed the patch and now they have degenerate end-user workloads.

    Spectre requires a million little fixes that are generally cheap in performance.

  18. 100W TDP for mobile? by Anonymous Coward · · Score: 0

    According to Intel the 100W TDP parts i7-8809G, https://ark.intel.com/products..., and i7-8709G, https://ark.intel.com/products..., are for mobile use.

    Are they now trying to melt there CPU's literally?

    1. Re:100W TDP for mobile? by ELCouz · · Score: 1

      I don't think this will be continuous and throttled down when it's past a certain temp... turbo boost perhaps?

    2. Re:100W TDP for mobile? by Anonymous Coward · · Score: 0

      learn the difference between there / their / they're

    3. Re:100W TDP for mobile? by toddestan · · Score: 1

      It's just fitting with the current trend of stuffing chips into laptops that are completely incapable of running at full speed more than a few seconds without throttling back. So you'll have a thin, quiet, fast laptop until you actually try to use it for something processor intensive, then you'll have a too-hot to sit on your laptop, slow-ass laptop until it can go back to idle.

      Though someone will probably make it into a portable workstation and/or gaming machine that's 2" thick, equipped with some loud-ass fans that can run full speed at 100% indefinitely (plugged in) or approximately 20 minutes (on battery).

  19. Weasel words and spin by Intel by Anonymous Coward · · Score: 0

    https://www.nytimes.com/2018/01/07/technology/intel-chip-security.html

  20. Why stop there? by Anonymous Coward · · Score: 0

    Why not include an integrated AMD CPU while they are at it.

  21. Re:Defective by 110010001000 · · Score: 0

    Wrong. Even KPTI won't "fix" Meltdown. It will only mitigate the issue. Fixing requires replacing the CPU.

  22. Re:Defective by Hal_Porter · · Score: 1

    We need a final solution to the degenerate end-user problem.

    --
    echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;
  23. Obligatory:Intel CPU Backdoor Report (Jan 1 2018) by Anonymous Coward · · Score: 5, Informative

    Change log:
    2018/01/01 - Added 14 Useful Links. Disable Intel ME 11 via undocumented NSA "High Assurance Platform" mode, Blackhat Dec 2017 presentation, Intel ME CVEs (CVSS Scored 9.0-10.0)

    Intel CPU Backdoor Report
    The goal of this report is to make the existence of Intel CPU backdoors a common knowledge and provide information on backdoor removal.

    What we know about Intel CPU backdoors so far:

    TL;DR version

    Your Intel CPU and Chipset is running a backdoor as we speak.

    The backdoor hardware is inside the CPU/Bridge and the backdoor firmware (Intel Management Engine) is in the chipset flash memory.

    30C3 Intel ME live hack:
    [Video] 30C3: Persistent, Stealthy, Remote-controlled Dedicated Hardware Malware
    @21:43, keystrokes leaked from Intel ME above the OS, wireshark failed to detect packets.

    [Quotes] Vortrag:
    "the ME provides a perfect environment for undetectable sensitive data leakage on behalf of the attacker".

    "We can permanently monitor the keyboard buffer on both operating system targets."

    Backdoor removal:
    The backdoor firmware can be removed by following this guide using the me_cleaner script.
    Removal requires a Raspberry Pi (with GPIO pins) and a SOIC clip.

    2017 Dec Update:
    Intel ME on recent CPUs may be disabled by enabling the undocumented NSA HAP mode.

    Decoding Intel backdoors:
    The situation is out of control and the Libreboot/Coreboot community is looking for BIOS/Firmware experts to help with the Intel ME decoding effort.

    If you are skilled in these areas, download Intel ME firmwares from this collection and have a go at them, beware Intel is using a lot of counter measures to prevent their backdoors from being decoded (explained below).

    Useful links (Added 2018 Jan 1):
    Disabling Intel ME 11 via undocumented mode (NSA High Assurance Platform mode)
    Blackhat 2017: How To Hack A Turned Off Computer Or Running Unsigned Code In Intel Management Engine
    EFF: Intel's Management Engine is a security hazard, and users need a way to disable it
    Sakaki's EFI Install Guide/Disabling the Intel Management Engine
    Intel ME bug storm: Hardware vendors race to identify and provide updates for dangerous Intel flaws.
    CVE-2017-5689: An unprivileged network attacker could gain system privileges to provisioned Intel manageability SKUs
    CVE-2017-5705: Multiple buffer overflows in kernel in Intel Manageability Engine Firmware
    CVE-2017-5706: Multiple buffer overflows in kernel in Intel Server Platform Services Firmware

  24. It's a little old school, but... by SuperGus · · Score: 1

    With a Beowulf cluster of these....

  25. Dear intel by Khyber · · Score: 3, Insightful

    Putting AMD hardware next to yours doesn't automatically grant immunity from Meltdown and Spectre. Nice try, though.

    --
    Still waiting on Serviscope_minor to wake up to fucking reality and realize that Jessica Price isn't going to fuck him.
    1. Re:Dear intel by modmans2ndcoming · · Score: 1

      Right....better move over to ARM or something thing non-intel relat.....huh?....what's that? Meltdown affects ARM chips too?!?!

      awe....and I wanted to hate on Intel like a smarty pants....

    2. Re:Dear intel by thegreatbob · · Score: 1

      Well, at least it's not their whole product catalog... https://www.neowin.net/news/ar...

      --
      There is no XUL, only WebExtensions...
    3. Re: Dear intel by Anonymous Coward · · Score: 0

      ARM has released a crap load of documentation related to meltdow. witepapers, press releases and recognition of blame. they have done everything expected of a sane company to do in these situations. even if they are in part affected by the bug, they've done everything in their power to make things better. intel just shifted the blamed, downplayed the implications and are just a bunch of assholes about this. I know you are on intel's payroll, but even you can realize that intel screwed up big time.

    4. Re: Dear intel by Anonymous Coward · · Score: 0

      By your logic you are just on the pay roll of ARM of one of their licensees.

  26. Use me_cleaner with -S option to enable HAP mode by Anonymous Coward · · Score: 0

    Intel ME on recent CPUs may be disabled by enabling the undocumented NSA HAP mode, use me_cleaner with -S option to set the HAP bit, see me_cleaner: HAP AltMeDisable bit.

  27. Feature. by Anonymous Coward · · Score: 0

    When buying this processeur, you know it haves Spectre and Meltdown flaws... so it's now a feature, not a bug. Is Intel are the one who leak this information before the CES ?

  28. Yeah by Anonymous Coward · · Score: 0

    But what is the multiple of Intel + Radeon, compared to Intel + Intel HDxxxx? 30x? 50x? 100x? Snicker... Even Iris Pro was more like Iris The Angry Flower.

    Intel graphics have always been the worst in the industry. What's impressive is that Intel seems to finally want to do something about that.

    1. Re:Yeah by Hal_Porter · · Score: 1

      Intel integrated graphics are aimed at a different market though. People with Intel integrated graphics don't care about gaming performance at all - they just want something that can handle a GUI. On the other hand it comes free with your CPU and it's lower power than a discrete solution.

      --
      echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;
    2. Re:Yeah by Anonymous Coward · · Score: 0

      Iris Pro is decent at running games. You can run Crysis 3 on it with good quality and framerate.

      Hell, it can even handle the Witcher 3 with good quality at 30 FPS.

    3. Re:Yeah by Anonymous Coward · · Score: 0

      "People with Intel integrated graphics don't care about gaming performance at all."

      You sure about that? Every time? Without fail?

      How about single parents on a tight budget? Are they thinking about "gaming performance", or is it just a PC at the right price? How about naïve buyers, told that Intel graphics are "good enough"?

      Here's a relevant anecdote and it has nothing to do with gaming, at all. My employer is a huge organization. I'm an IT person who asks quite a lot of my computer, and it matters to me. Does my employer care? Nope, not at all. I get a bog standard PC, allegedly good enough because "someone", "somewhere", "did some research".

      The net result is that I get a crummy system. I hassle the IT Help Desk and they upgrade slightly, grumbling the whole time. Next I have to resort to cannibalizing parts and, completely on my own initiative, upgrading the rest myself.

      How do I know I have a crummy work PC? It takes 5-10 minutes to boot up, for one thing. My home PC boots in 30 seconds, every time. No, the corporate overhead of GPO's, login scripts and all the rest cannot explain that. Nor is this a short-term thing, it's been this way for 20 years.

      Oh, and I did a GPU metric too. My home GPU was last-gen, 3.5 years ago already. I benchmarked it against my current gen integrated Intel GPU. The discrete GPU clocked between 7x and 70x faster than the Intel POC! For GPU tech that was at least 4 years older...

      My point being, I care about performance, but my "caring" only has weight at home and not at work. I don't get much of a choice at work. And shoddy Intel iGPU implementations often go hand-in-hand with shoddy Atom, Celeron and i3 (or AMD Bulldozer, shudder) CPU choices. Yes, I am quite aware that an AMD CPU implies a non-Intel iGPU. The whole game here is to save money and providing adequate computing resources for the employee is an afterthought at best.

  29. Re:Defective by Anonymous Coward · · Score: 0

    > Spectre requires a million little fixes that are generally cheap in performance.
    And it's still not entirely clear that Spectre is that big a problem, since you need to find an application that has this specific vulnerability, and have so much control over it that you can both train the branch predictor, and inject whatever data you want, and be able to time its execution.
    All the proof of concepts I've seen so far run in a single process.

  30. Now we need AMD RYZEN version by Anonymous Coward · · Score: 0

    AMD RYZEN plus an NVidia, because... why not?

    1. Re:Now we need AMD RYZEN version by OneAhead · · Score: 2

      I came here to say exactly this. Intel/ATI is exactly what I don't want; gimme AMD/Nvidia and I'm in heaven.

  31. Tsk by Anonymous Coward · · Score: 0

    What kind of retards keep building new chips that are already vulnerable to hacks? Goofs and arseholes.

  32. Dear Intel: GPGPU. by Anonymous Coward · · Score: 0

    Maybe they'll use the GPU to counter losses in the CPU?

  33. Re:Replace Intel with Intel by Anonymous Coward · · Score: 1

    Intel CPUs are the more expensive ones. They run at about the same temperature, and Ryzen is every bit as good at multithreading as Intel chips.

    Intel having competition means us consumers win.

  34. Re:Hey Meltdown trolls.... by iggymanz · · Score: 4, Insightful

    eh, I read AMD is only vulnerable to Spectre variant 1

    you have source for your claim anything but Intel and certain ARM are vulnerable to Meltdown?

  35. about time...? by Anonymous Coward · · Score: 0

    idiot here. why dont we have more chips like this already? i always thought that combining the graphics chip with a cpu was a no brainer. anyway, great slashdot story if its mostly numbers and abbreviations. woo hoo tech!!!

    1. Re:about time...? by hcs_$reboot · · Score: 1

      idiot here

      Who said ACs are always trolling?

      --
      Slashdot, fix the reply notifications... You won't get away with it...
  36. Re:Defective by Anonymous Coward · · Score: 0

    Stop talking about Spectre. There is no fix for Meltdown. Meltdown is much more severe. You cannot fix it in software, only mitigate it. You have been fooled, or you are being intentionally misleading.

    This is wrong, you can always unmap all pages a process isn't supposed to have access to. That's not even hard to do, the hard part is doing it in a way that doesn't severely hurt context switching performance. If a page is not mapped, the processor won't read it, and meltdown can only be used to "read" a process's own pages. ... and then there is specter.

    If you think these two attacks contain the ONLY examples of transient instructions that can cause data to be leaked through side channel timing attacks, better practice your surprised face now. Neither AMD, Intel, or any other desktop processors are impervious to this class of attack. Duh.

  37. Since when did NVidia become a bigger threat... by WoTG · · Score: 3, Interesting

    I understand Intel wanting a GPU to pair efficiently with their CPUs for the smallest form factors... but I don't see why AMD and not NVidia. Did NVidia turn them down? Or does Intel really consider NVidia, who doesn't make AMD64 chips, to be a bigger threat than AMD? Or is there something inherent in the GPU platforms that makes AMD possible but not NVidia?

    1. Re:Since when did NVidia become a bigger threat... by Anonymous Coward · · Score: 0

      I can think of two good reasons for Intel doing this:

      1) Intel has to keep AMD around so they are not considered a monopoly. I'd imagine that f they get 5% of the revenue for the chips that are sold with AMD graphics, that keeps them on a very tight leash but any monopoly cases at bay.
      In 2009, Intel had to give AMD over a $billion: https://en.wikipedia.org/wiki/Advanced_Micro_Devices,_Inc._v._Intel_Corp.

      2) Nvidia doesn't want to do it: If Intel are going to produce the chips with the integrated graphics, they are going to need low level plans and a lot of design documentation. Nvidia didn't want to give up the information on newer architectures that they want to keep secret (pascal and volta). These are big for AI, GPU computing, console gaming, and now self driving cars.

  38. NOT launched! ... by Anonymous Coward · · Score: 0

    ... until I see a PRICE.

    Because that is point 1 on why I don't buy Intel.

    The other points are currently the IME and the unfixable hardware security leaks that I'm sure won't be fixed, or it would be the first thing mentioned in TFS.
    (Yes, AMD has a IME equivalent too, as does ARM. So I buy nothing currently. But I would actively get rid of anything Intel on top of that ... if I had any.)

  39. This is Intel murdeing them ... by Anonymous Coward · · Score: 0

    ... with an offer they can't refuse.

    I know Intel. I'd also not expect Hannibal Lecter to not try to eat my brain. I'd sooner see a honest politician than Intel not trying to create more monopoly with any psychopathic method physically possible that will let them get away with it.

  40. You are not a very smart man, are you? by Anonymous Coward · · Score: 0

    Nor one thinking further ahead than your goldfish nose.

    Yeah, you get some peanuts now. And pay with being tied to your biggest enemy, who has shown the will to murder you in cold blood many, *many* times, which he will obviously abuse at the first chance he gets, and every chance after that.

    I bet you're so black-eyed that you still believe in the "the NSA are our friends" anticonspiracy theory.

    1. Re:You are not a very smart man, are you? by Anonymous Coward · · Score: 0

      who has shown the will to murder you in cold blood many, *many* times, which he will obviously abuse at the first chance he gets

      Which would also be shooting themselves in the foot due to the fact that they need your GPU.

      Nor one thinking further ahead than your goldfish nose.

      The irony, LOL.

  41. Promises, promises. by Ihlosi · · Score: 1
    but they delivered everything they promised on the box.

    Yes. It says on the box: "Intel inside".

  42. Cool, but... by SurenEnfiajyan · · Score: 0

    Does this have the security bug the older CPUs have?

  43. Re:Defective by thegarbz · · Score: 1

    This comes with a 20-30% tax for many workloads.

    Except it didn't. All benchmarks point to a 5-10% worst case hit, and an unmeasurable hit in pretty much all desktop / user facing workloads. Despite all the initial reports I've yet to see any benchmark, Windows, Linux, server loads, office applications, gaming, databases, or whatever get into the double digits.

    Here's just some top google results:
    http://www.guru3d.com/articles...
    https://www.techspot.com/artic...

    And here's some Linux ones on KPTI:
    https://www.phoronix.com/scan....

  44. Re:Hey Meltdown trolls.... by thegarbz · · Score: 1, Informative

    No, the example code only affected Intel. The underlying exploit exist in AMD and ARM64 as well.

    The original paper postulated as to why their code wouldn't run on AMD and even went so far as stating it may work on AMD with some optimization or on chips with different execution pipeline sizes.
    https://meltdownattack.com/mel...

  45. Does it come with built-in Spectre and Meltdown? by Anonymous Coward · · Score: 0

    Because otherwise I'm not buying it. J/K, I'm never buying Intel again regardless.

  46. Re:Defective by Anonymous Coward · · Score: 0

    Easy there Intel shill; your employer's PR is bad enough.

  47. And a free backdoor... by Anonymous Coward · · Score: 0

    And a Partridge in an insecure Kernel memory tree!

  48. Re:Hey Meltdown trolls.... by Anonymous Coward · · Score: 0

    Yes, they postulated because they had no clue about the implementation.
    Intel decided to skip the permission check when reading memory, leaving it to the exception handler to clean the resulting mess up. AMD and all except A75 Arm processors check the permissions BEFORE and thus are not vulnerable no matter how much you twiddle and optimize.
    What is it with you people that you take a "might" in a paper of people with no idea about the microarchitecture as a proof that they are affected, when the people who actually KNOW say it's not possible?
    The only thing the paper says btw. is that other processors also execute instruction streams beyond an exception. That is obvious, otherwise out-of-order won't really work. It also is not a problem. The problem is actually giving the thread access to data IT IS NOT ALLOWED TO ACCESS. That is the serious mess-up on Intel's side (and, one Arm CPU).

  49. Interesting, but don't need it by Anonymous Coward · · Score: 0

    Don't think its enough to game on and if your doing occasional video editing it might be OK. I want to know how much more I would pay over a Intel GPU solution which these days isn't that bad for the basics and a bit more. I suspect the best selling point would be battery life, over a separate dedicated solution. This ended up being what AMD did with its APU's. Not so much great gaming rigs, but better power management with a bit more GPU power.

  50. Re:Replace Intel with Intel by Anonymous Coward · · Score: 0

    If you're after gaming performance, it makes sense to go with an AMD CPU and kick the savings towards a better GPU. Dumbass.

  51. Re:Defective by Anonymous Coward · · Score: 0

    Honestly I think the IME debacle is a far bigger issue for anyone planning to buy Intel. A difficult-to-leverage hardware flaw that allows logical boundary traversal is absolutely worrying, but a hidden and secret firmware designed specifically for spying and remote control is fucking terrifying.

  52. Re:Defective by mlyle · · Score: 2

    Then you've not looked very hard. Things that are very syscall intensive, like du across a filesystem, have been shown to pay a 50% tax. Tun/tap stuff in userspace pays a ~35% tax. Or if you want something higher level:

    https://www.postgresql.org/mes...

    Trivial PostgreSQL txns (where you don't end up IO or scanning bound, but instead are measuring system call path) pay a 17% tax. On Skylake. Where the penalty is comparatively less.

  53. Re:Defective by Anonymous Coward · · Score: 0

    The fact that you constantly spam this over and over is only making it look like you are the one spreading misinformation.

  54. Re:Hey Meltdown trolls.... by toddestan · · Score: 1

    So, have fun trying to find something unaffected.

    My 486DX2/66 is unaffected. Apparently so is my Raspberry Pi. So is the Commodore 64, though with that machine you can read whatever memory you want any time you feel like it without any fancy tricks.

  55. Re:Defective by Agripa · · Score: 1

    it's a fundamental design flaw with speculative execution. Poor security is a bug, but they delivered everything they promised on the box. This is not a simple patch. It's a complete redesign of a huge section of the die

    It is a design flaw with Intel's implementation of speculative execution which does speculative loads before checking permissions. The only necessary redesign is to check the permissions before executing the speculative load instead of at instruction retirement.

    The only benefit to what Intel did is to execute speculative code that causes faults more quickly.

  56. Re:Defective by Agripa · · Score: 1

    Stop talking about Spectre. There is no fix for Meltdown. Meltdown is much more severe. You cannot fix it in software, only mitigate it. You have been fooled, or you are being intentionally misleading.

    Meltdown is the one which can be fixed in software. Flush the TLBs and do not share them between privilege levels. Unfortunately doing so incurs a significant performance penalty during privilege changes.

  57. Re:Hey Meltdown trolls.... by Agripa · · Score: 1

    No, the example code only affected Intel. The underlying exploit exist in AMD and ARM64 as well.

    The original paper postulated as to why their code wouldn't run on AMD and even went so far as stating it may work on AMD with some optimization or on chips with different execution pipeline sizes.
    https://meltdownattack.com/mel...

    However, for both ARM and AMD, the toy example as described in Section 3 works reliably, indicating that out-of-order execution generally occurs and instructions past illegal memory accesses are also performed.

    The paper shows a timing variation indicating that speculated instructions caused memory access but *not* that the specific memory was accessed, For instance those may have been page table accesses needed to load a TLB before permissions were checked. Nothing indicates that speculated instructions which relied on a load from the targeted protected memory location were executed.